Frm_YongGuanMontior.Designer.cs 621 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639
  1. namespace WCS_Client.Frm
  2. {
  3. partial class Frm_YongGuanMontior
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_YongGuanMontior));
  29. this.tabControl1 = new System.Windows.Forms.TabControl();
  30. this.tabPage1 = new System.Windows.Forms.TabPage();
  31. this.myTableLayoutPanel1 = new WCS_Client.From.MyTableLayoutPanel();
  32. this.con2282 = new WCS_Client.From.From_Montior.Conveyor_R();
  33. this.con2279 = new WCS_Client.From.From_Montior.Conveyor_R();
  34. this.con2058 = new WCS_Client.From.From_Montior.Conveyor_R();
  35. this.con2053 = new WCS_Client.From.From_Montior.Conveyor_R();
  36. this.con2051 = new WCS_Client.From.From_Montior.Conveyor_R();
  37. this.con2039 = new WCS_Client.From.From_Montior.Conveyor_R();
  38. this.con2034 = new WCS_Client.From.From_Montior.Conveyor_R();
  39. this.con2028 = new WCS_Client.From.From_Montior.Conveyor_R();
  40. this.con2027 = new WCS_Client.From.From_Montior.Conveyor_R();
  41. this.con2022 = new WCS_Client.From.From_Montior.Conveyor_R();
  42. this.con2021 = 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.con2173 = new WCS_Client.From.From_Montior.Conveyor3_A();
  46. this.con2147 = new WCS_Client.From.From_Montior.Conveyor_R();
  47. this.con2146 = new WCS_Client.From.From_Montior.Conveyor_R();
  48. this.con2148 = new WCS_Client.From.From_Montior.Conveyor_R();
  49. this.con2150 = new WCS_Client.From.From_Montior.Conveyor_R();
  50. this.con2161 = new WCS_Client.From.From_Montior.Conveyor_R();
  51. this.con2104 = new WCS_Client.From.From_Montior.Conveyor_R();
  52. this.con2102 = new WCS_Client.From.From_Montior.Conveyor_R();
  53. this.con2101 = new WCS_Client.From.From_Montior.Conveyor_R();
  54. this.con2103 = new WCS_Client.From.From_Montior.Conveyor_R();
  55. this.con2108 = new WCS_Client.From.From_Montior.Conveyor_R();
  56. this.con2107 = new WCS_Client.From.From_Montior.Conveyor_R();
  57. this.con2106 = new WCS_Client.From.From_Montior.Conveyor_R();
  58. this.con2105 = new WCS_Client.From.From_Montior.Conveyor_R();
  59. this.con2060 = new WCS_Client.From.From_Montior.Conveyor_R();
  60. this.con2079 = new WCS_Client.From.From_Montior.Conveyor_R();
  61. this.con2075 = new WCS_Client.From.From_Montior.Conveyor_R();
  62. this.con2080 = new WCS_Client.From.From_Montior.Conveyor_R();
  63. this.con2074 = new WCS_Client.From.From_Montior.Conveyor_R();
  64. this.con2078 = new WCS_Client.From.From_Montior.Conveyor_R();
  65. this.con2077 = new WCS_Client.From.From_Montior.Conveyor_R();
  66. this.con2325 = new WCS_Client.From.From_Montior.Conveyor_R();
  67. this.con2073 = new WCS_Client.From.From_Montior.Conveyor_R();
  68. this.con2071 = new WCS_Client.From.From_Montior.Conveyor_R();
  69. this.con2072 = new WCS_Client.From.From_Montior.Conveyor_R();
  70. this.con2076 = new WCS_Client.From.From_Montior.Conveyor_R();
  71. this.con2355 = new WCS_Client.From.From_Montior.Conveyor_R();
  72. this.con2037 = new WCS_Client.From.From_Montior.Conveyor_R();
  73. this.con2044 = new WCS_Client.From.From_Montior.Conveyor_R();
  74. this.con2046 = new WCS_Client.From.From_Montior.Conveyor_R();
  75. this.con2031 = new WCS_Client.From.From_Montior.Conveyor_R();
  76. this.con2029 = new WCS_Client.From.From_Montior.Conveyor_R();
  77. this.con2036 = new WCS_Client.From.From_Montior.Conveyor_R();
  78. this.con2017 = new WCS_Client.From.From_Montior.Conveyor_R();
  79. this.con2019 = new WCS_Client.From.From_Montior.Conveyor_R();
  80. this.con2024 = new WCS_Client.From.From_Montior.Conveyor_R();
  81. this.con2324 = new WCS_Client.From.From_Montior.Conveyor_R();
  82. this.con2353 = new WCS_Client.From.From_Montior.Conveyor_R();
  83. this.con2016 = new WCS_Client.From.From_Montior.Conveyor_R();
  84. this.locationPos37 = new WCS_Client.From.From_Montior.LocationPos();
  85. this.con2011 = new WCS_Client.From.From_Montior.Conveyor_R();
  86. this.con2302 = new WCS_Client.From.From_Montior.Conveyor_L();
  87. this.label33 = new System.Windows.Forms.Label();
  88. this.tableCellLabel31 = new WCS_Client.From.TableCellLabel();
  89. this.locationPos38 = new WCS_Client.From.From_Montior.LocationPos();
  90. this.locationPos49 = new WCS_Client.From.From_Montior.LocationPos();
  91. this.locationPos53 = new WCS_Client.From.From_Montior.LocationPos();
  92. this.srm15 = new WCS_Client.From.From_Montior.srm();
  93. this.locationPos55 = new WCS_Client.From.From_Montior.LocationPos();
  94. this.con2308 = new WCS_Client.From.From_Montior.Conveyor_R();
  95. this.con2280 = new WCS_Client.From.From_Montior.Conveyor_R();
  96. this.con2035 = new WCS_Client.From.From_Montior.Conveyor_R();
  97. this.srm14 = new WCS_Client.From.From_Montior.srm();
  98. this.locationPos48 = new WCS_Client.From.From_Montior.LocationPos();
  99. this.locationPos36 = new WCS_Client.From.From_Montior.LocationPos();
  100. this.con2042 = new WCS_Client.From.From_Montior.Conveyor_R();
  101. this.con2041 = new WCS_Client.From.From_Montior.Conveyor_R();
  102. this.tableCellLabel30 = new WCS_Client.From.TableCellLabel();
  103. this.locationPos47 = new WCS_Client.From.From_Montior.LocationPos();
  104. this.con2277 = new WCS_Client.From.From_Montior.Conveyor_R();
  105. this.con2049 = new WCS_Client.From.From_Montior.Conveyor_R();
  106. this.con2050 = new WCS_Client.From.From_Montior.Conveyor_R();
  107. this.locationPos45 = new WCS_Client.From.From_Montior.LocationPos();
  108. this.con2281 = new WCS_Client.From.From_Montior.Conveyor_R();
  109. this.srm13 = new WCS_Client.From.From_Montior.srm();
  110. this.locationPos46 = new WCS_Client.From.From_Montior.LocationPos();
  111. this.con2276 = new WCS_Client.From.From_Montior.Conveyor_R();
  112. this.con2056 = new WCS_Client.From.From_Montior.Conveyor_R();
  113. this.locationPos42 = new WCS_Client.From.From_Montior.LocationPos();
  114. this.con2057 = new WCS_Client.From.From_Montior.Conveyor_R();
  115. this.con2275 = new WCS_Client.From.From_Montior.Conveyor_R();
  116. this.tableCellLabel29 = new WCS_Client.From.TableCellLabel();
  117. this.locationPos54 = new WCS_Client.From.From_Montior.LocationPos();
  118. this.con2062 = new WCS_Client.From.From_Montior.Conveyor_R();
  119. this.con2263 = new WCS_Client.From.From_Montior.Conveyor3_A();
  120. this.con2201 = new WCS_Client.From.From_Montior.Conveyor3_A();
  121. this.con2364 = new WCS_Client.From.From_Montior.Conveyor_R();
  122. this.con2362 = new WCS_Client.From.From_Montior.Conveyor_R();
  123. this.con2360 = new WCS_Client.From.From_Montior.Conveyor3_A();
  124. this.con2359 = new WCS_Client.From.From_Montior.Conveyor();
  125. this.con2135 = new WCS_Client.From.From_Montior.Conveyor();
  126. this.con2138 = new WCS_Client.From.From_Montior.Conveyor_L();
  127. this.con2116 = new WCS_Client.From.From_Montior.Conveyor_L();
  128. this.con2117 = new WCS_Client.From.From_Montior.Conveyor_L();
  129. this.con2328 = new WCS_Client.From.From_Montior.Conveyor_L();
  130. this.tableCellLabel2 = new WCS_Client.From.TableCellLabel();
  131. this.con2307 = new WCS_Client.From.From_Montior.Conveyor_R();
  132. this.con2003 = new WCS_Client.From.From_Montior.Conveyor_R();
  133. this.con2312 = new WCS_Client.From.From_Montior.Conveyor3_B();
  134. this.con2313 = new WCS_Client.From.From_Montior.Conveyor3_B();
  135. this.con2314 = new WCS_Client.From.From_Montior.Conveyor3_B();
  136. this.con2315 = new WCS_Client.From.From_Montior.Conveyor3_B();
  137. this.con2316 = new WCS_Client.From.From_Montior.Conveyor3_B();
  138. this.locationPos1 = new WCS_Client.From.From_Montior.LocationPos();
  139. this.locationPos2 = new WCS_Client.From.From_Montior.LocationPos();
  140. this.locationPos3 = new WCS_Client.From.From_Montior.LocationPos();
  141. this.locationPos4 = new WCS_Client.From.From_Montior.LocationPos();
  142. this.tableCellLabel5 = new WCS_Client.From.TableCellLabel();
  143. this.tableCellLabel6 = new WCS_Client.From.TableCellLabel();
  144. this.conveyor_L1 = new WCS_Client.From.From_Montior.Conveyor_L();
  145. this.conveyor_L2 = new WCS_Client.From.From_Montior.Conveyor_L();
  146. this.conveyor3_B1 = new WCS_Client.From.From_Montior.Conveyor3_B();
  147. this.conveyor_L3 = new WCS_Client.From.From_Montior.Conveyor_L();
  148. this.conveyor1 = new WCS_Client.From.From_Montior.Conveyor();
  149. this.conveyor_R1 = new WCS_Client.From.From_Montior.Conveyor_R();
  150. this.conveyor3_A1 = new WCS_Client.From.From_Montior.Conveyor3_A();
  151. this.conveyor_R2 = new WCS_Client.From.From_Montior.Conveyor_R();
  152. this.conveyor4 = new WCS_Client.From.From_Montior.Conveyor();
  153. this.conveyor_L4 = new WCS_Client.From.From_Montior.Conveyor_L();
  154. this.conveyor3_B2 = new WCS_Client.From.From_Montior.Conveyor3_B();
  155. this.conveyor_L5 = new WCS_Client.From.From_Montior.Conveyor_L();
  156. this.conveyor5 = new WCS_Client.From.From_Montior.Conveyor();
  157. this.conveyor3_A2 = new WCS_Client.From.From_Montior.Conveyor3_A();
  158. this.conveyor_R3 = new WCS_Client.From.From_Montior.Conveyor_R();
  159. this.conveyor6 = new WCS_Client.From.From_Montior.Conveyor();
  160. this.conveyor_L6 = new WCS_Client.From.From_Montior.Conveyor_L();
  161. this.conveyor3_B3 = new WCS_Client.From.From_Montior.Conveyor3_B();
  162. this.conveyor_L7 = new WCS_Client.From.From_Montior.Conveyor_L();
  163. this.conveyor7 = new WCS_Client.From.From_Montior.Conveyor();
  164. this.conveyor_R4 = new WCS_Client.From.From_Montior.Conveyor_R();
  165. this.conveyor_R5 = new WCS_Client.From.From_Montior.Conveyor_R();
  166. this.conveyor8 = new WCS_Client.From.From_Montior.Conveyor();
  167. this.conveyor_L8 = new WCS_Client.From.From_Montior.Conveyor_L();
  168. this.conveyor_R6 = new WCS_Client.From.From_Montior.Conveyor_R();
  169. this.conveyor9 = new WCS_Client.From.From_Montior.Conveyor();
  170. this.conveyor3_A3 = new WCS_Client.From.From_Montior.Conveyor3_A();
  171. this.conveyor3_B4 = new WCS_Client.From.From_Montior.Conveyor3_B();
  172. this.conveyor3_A4 = new WCS_Client.From.From_Montior.Conveyor3_A();
  173. this.conveyor10 = new WCS_Client.From.From_Montior.Conveyor();
  174. this.conveyor11 = new WCS_Client.From.From_Montior.Conveyor();
  175. this.conveyor12 = new WCS_Client.From.From_Montior.Conveyor();
  176. this.conveyor13 = new WCS_Client.From.From_Montior.Conveyor();
  177. this.conveyor14 = new WCS_Client.From.From_Montior.Conveyor();
  178. this.conveyor15 = new WCS_Client.From.From_Montior.Conveyor();
  179. this.tableCellLabel21 = new WCS_Client.From.From_Montior.TableCellLabel2();
  180. this.tableCellLabel23 = new WCS_Client.From.From_Montior.TableCellLabel2();
  181. this.tableCellLabel24 = new WCS_Client.From.From_Montior.TableCellLabel2();
  182. this.tableCellLabel25 = new WCS_Client.From.From_Montior.TableCellLabel2();
  183. this.tableCellLabel22 = new WCS_Client.From.From_Montior.TableCellLabel2();
  184. this.tableCellLabel26 = new WCS_Client.From.From_Montior.TableCellLabel2();
  185. this.tableCellLabel27 = new WCS_Client.From.From_Montior.TableCellLabel2();
  186. this.tableCellLabel28 = new WCS_Client.From.From_Montior.TableCellLabel2();
  187. this.conveyor3_B5 = new WCS_Client.From.From_Montior.Conveyor3_B();
  188. this.conveyor3_B6 = new WCS_Client.From.From_Montior.Conveyor3_B();
  189. this.conveyor3_B7 = new WCS_Client.From.From_Montior.Conveyor3_B();
  190. this.conveyor3_B8 = new WCS_Client.From.From_Montior.Conveyor3_B();
  191. this.conveyor3_B9 = new WCS_Client.From.From_Montior.Conveyor3_B();
  192. this.conveyor3_B10 = new WCS_Client.From.From_Montior.Conveyor3_B();
  193. this.conveyor3_B11 = new WCS_Client.From.From_Montior.Conveyor3_B();
  194. this.conveyor3_B12 = new WCS_Client.From.From_Montior.Conveyor3_B();
  195. this.conveyor3_B13 = new WCS_Client.From.From_Montior.Conveyor3_B();
  196. this.conveyor3_B14 = new WCS_Client.From.From_Montior.Conveyor3_B();
  197. this.label1 = new System.Windows.Forms.Label();
  198. this.lable4 = new System.Windows.Forms.Label();
  199. this.conveyor3_B15 = new WCS_Client.From.From_Montior.Conveyor3_B();
  200. this.conveyor3_B16 = new WCS_Client.From.From_Montior.Conveyor3_B();
  201. this.conveyor3_B17 = new WCS_Client.From.From_Montior.Conveyor3_B();
  202. this.conveyor3_B18 = new WCS_Client.From.From_Montior.Conveyor3_B();
  203. this.pnlDDJ1 = new MyConrols.MyPanel();
  204. this.lblInStatus1 = new System.Windows.Forms.Label();
  205. this.lblOutStatus1 = new System.Windows.Forms.Label();
  206. this.lblDDJWarning1 = new System.Windows.Forms.Label();
  207. this.ddjPosTo1 = new System.Windows.Forms.Label();
  208. this.ddjPosFrom1 = new System.Windows.Forms.Label();
  209. this.label84 = new System.Windows.Forms.Label();
  210. this.label85 = new System.Windows.Forms.Label();
  211. this.ddjMode1 = new System.Windows.Forms.Label();
  212. this.ddjOrdId1 = new System.Windows.Forms.Label();
  213. this.label137 = new System.Windows.Forms.Label();
  214. this.ddjOptType1 = new System.Windows.Forms.Label();
  215. this.label139 = new System.Windows.Forms.Label();
  216. this.ddjTotal_KM1 = new System.Windows.Forms.Label();
  217. this.label13 = new System.Windows.Forms.Label();
  218. this.ddjWorkTime1 = new System.Windows.Forms.Label();
  219. this.label10 = new System.Windows.Forms.Label();
  220. this.ddjStatus1 = new System.Windows.Forms.Label();
  221. this.ddjPosCurr1 = new System.Windows.Forms.Label();
  222. this.label5 = new System.Windows.Forms.Label();
  223. this.label3 = new System.Windows.Forms.Label();
  224. this.label2 = new System.Windows.Forms.Label();
  225. this.lblsrm01 = new System.Windows.Forms.Label();
  226. this.G1 = new System.Windows.Forms.PictureBox();
  227. this.R1 = new System.Windows.Forms.PictureBox();
  228. this.pnlDDJ2 = new MyConrols.MyPanel();
  229. this.lblInStatus2 = new System.Windows.Forms.Label();
  230. this.lblOutStatus2 = new System.Windows.Forms.Label();
  231. this.lblDDJWarning2 = new System.Windows.Forms.Label();
  232. this.ddjPosTo2 = new System.Windows.Forms.Label();
  233. this.ddjPosFrom2 = new System.Windows.Forms.Label();
  234. this.label15 = new System.Windows.Forms.Label();
  235. this.label16 = new System.Windows.Forms.Label();
  236. this.ddjMode2 = new System.Windows.Forms.Label();
  237. this.ddjOrdId2 = new System.Windows.Forms.Label();
  238. this.label22 = new System.Windows.Forms.Label();
  239. this.ddjOptType2 = new System.Windows.Forms.Label();
  240. this.label26 = new System.Windows.Forms.Label();
  241. this.ddjTotal_KM2 = new System.Windows.Forms.Label();
  242. this.label29 = new System.Windows.Forms.Label();
  243. this.ddjWorkTime2 = new System.Windows.Forms.Label();
  244. this.label32 = new System.Windows.Forms.Label();
  245. this.ddjStatus2 = new System.Windows.Forms.Label();
  246. this.ddjPosCurr2 = new System.Windows.Forms.Label();
  247. this.label83 = new System.Windows.Forms.Label();
  248. this.label86 = new System.Windows.Forms.Label();
  249. this.label87 = new System.Windows.Forms.Label();
  250. this.lblsrm02 = new System.Windows.Forms.Label();
  251. this.G2 = new System.Windows.Forms.PictureBox();
  252. this.pictureBox6 = new System.Windows.Forms.PictureBox();
  253. this.pnlDDJ3 = new MyConrols.MyPanel();
  254. this.lblInStatus3 = new System.Windows.Forms.Label();
  255. this.lblOutStatus3 = new System.Windows.Forms.Label();
  256. this.lblDDJWarning3 = new System.Windows.Forms.Label();
  257. this.ddjPosTo3 = new System.Windows.Forms.Label();
  258. this.ddjPosFrom3 = new System.Windows.Forms.Label();
  259. this.label43 = new System.Windows.Forms.Label();
  260. this.label51 = new System.Windows.Forms.Label();
  261. this.ddjMode3 = new System.Windows.Forms.Label();
  262. this.ddjOrdId3 = new System.Windows.Forms.Label();
  263. this.label55 = new System.Windows.Forms.Label();
  264. this.ddjOptType3 = new System.Windows.Forms.Label();
  265. this.label57 = new System.Windows.Forms.Label();
  266. this.ddjTotal_KM3 = new System.Windows.Forms.Label();
  267. this.label59 = new System.Windows.Forms.Label();
  268. this.ddjWorkTime3 = new System.Windows.Forms.Label();
  269. this.label61 = new System.Windows.Forms.Label();
  270. this.ddjStatus3 = new System.Windows.Forms.Label();
  271. this.ddjPosCurr3 = new System.Windows.Forms.Label();
  272. this.label64 = new System.Windows.Forms.Label();
  273. this.label65 = new System.Windows.Forms.Label();
  274. this.label66 = new System.Windows.Forms.Label();
  275. this.lblsrm03 = new System.Windows.Forms.Label();
  276. this.G3 = new System.Windows.Forms.PictureBox();
  277. this.pictureBox10 = new System.Windows.Forms.PictureBox();
  278. this.pnlDDJ4 = new MyConrols.MyPanel();
  279. this.lblInStatus4 = new System.Windows.Forms.Label();
  280. this.lblOutStatus4 = new System.Windows.Forms.Label();
  281. this.lblDDJWarning4 = new System.Windows.Forms.Label();
  282. this.ddjPosTo4 = new System.Windows.Forms.Label();
  283. this.ddjPosFrom4 = new System.Windows.Forms.Label();
  284. this.label71 = new System.Windows.Forms.Label();
  285. this.label72 = new System.Windows.Forms.Label();
  286. this.ddjMode4 = new System.Windows.Forms.Label();
  287. this.ddjOrdId4 = new System.Windows.Forms.Label();
  288. this.label75 = new System.Windows.Forms.Label();
  289. this.ddjOptType4 = new System.Windows.Forms.Label();
  290. this.label77 = new System.Windows.Forms.Label();
  291. this.ddjTotal_KM4 = new System.Windows.Forms.Label();
  292. this.label79 = new System.Windows.Forms.Label();
  293. this.ddjWorkTime4 = new System.Windows.Forms.Label();
  294. this.label81 = new System.Windows.Forms.Label();
  295. this.ddjStatus4 = new System.Windows.Forms.Label();
  296. this.ddjPosCurr4 = new System.Windows.Forms.Label();
  297. this.label89 = new System.Windows.Forms.Label();
  298. this.label90 = new System.Windows.Forms.Label();
  299. this.label91 = new System.Windows.Forms.Label();
  300. this.lblsrm04 = new System.Windows.Forms.Label();
  301. this.G4 = new System.Windows.Forms.PictureBox();
  302. this.pictureBox14 = new System.Windows.Forms.PictureBox();
  303. this.myPanel1 = new MyConrols.MyPanel();
  304. this.lblInStatus5 = new System.Windows.Forms.Label();
  305. this.lblOutStatus5 = new System.Windows.Forms.Label();
  306. this.label11 = new System.Windows.Forms.Label();
  307. this.ddjPosTo5 = new System.Windows.Forms.Label();
  308. this.ddjPosFrom5 = new System.Windows.Forms.Label();
  309. this.label17 = new System.Windows.Forms.Label();
  310. this.label18 = new System.Windows.Forms.Label();
  311. this.ddjMode5 = new System.Windows.Forms.Label();
  312. this.ddjOrdId5 = new System.Windows.Forms.Label();
  313. this.label21 = new System.Windows.Forms.Label();
  314. this.ddjOptType5 = new System.Windows.Forms.Label();
  315. this.label24 = new System.Windows.Forms.Label();
  316. this.ddjTotal_KM5 = new System.Windows.Forms.Label();
  317. this.label27 = new System.Windows.Forms.Label();
  318. this.ddjWorkTime5 = new System.Windows.Forms.Label();
  319. this.label30 = new System.Windows.Forms.Label();
  320. this.ddjStatus5 = new System.Windows.Forms.Label();
  321. this.ddjPosCurr5 = new System.Windows.Forms.Label();
  322. this.label36 = new System.Windows.Forms.Label();
  323. this.label37 = new System.Windows.Forms.Label();
  324. this.label38 = new System.Windows.Forms.Label();
  325. this.lblsrm05 = new System.Windows.Forms.Label();
  326. this.G5 = new System.Windows.Forms.PictureBox();
  327. this.pictureBox3 = new System.Windows.Forms.PictureBox();
  328. this.pnlRGV1091 = new MyConrols.MyPanel();
  329. this.label14 = new System.Windows.Forms.Label();
  330. this.label19 = new System.Windows.Forms.Label();
  331. this.label20 = new System.Windows.Forms.Label();
  332. this.rgvOptType3 = new System.Windows.Forms.Label();
  333. this.label74 = new System.Windows.Forms.Label();
  334. this.lblRGVWarning1091 = new System.Windows.Forms.Label();
  335. this.rgvPosCurr3 = new System.Windows.Forms.Label();
  336. this.rgvMode3 = new System.Windows.Forms.Label();
  337. this.rgvOrdId3 = new System.Windows.Forms.Label();
  338. this.label94 = new System.Windows.Forms.Label();
  339. this.rgvPosTo3 = new System.Windows.Forms.Label();
  340. this.label96 = new System.Windows.Forms.Label();
  341. this.rgvPosFrom3 = new System.Windows.Forms.Label();
  342. this.rgvStatus3 = new System.Windows.Forms.Label();
  343. this.label102 = new System.Windows.Forms.Label();
  344. this.lblrgv1091 = new System.Windows.Forms.Label();
  345. this.GV3 = new System.Windows.Forms.PictureBox();
  346. this.pictureBox7 = new System.Windows.Forms.PictureBox();
  347. this.myPanel5 = new MyConrols.MyPanel();
  348. this.label25 = new System.Windows.Forms.Label();
  349. this.label35 = new System.Windows.Forms.Label();
  350. this.label39 = new System.Windows.Forms.Label();
  351. this.rgvOptType4 = new System.Windows.Forms.Label();
  352. this.label173 = new System.Windows.Forms.Label();
  353. this.lblRGVWarning1007 = new System.Windows.Forms.Label();
  354. this.rgvPosCurr4 = new System.Windows.Forms.Label();
  355. this.rgvMode4 = new System.Windows.Forms.Label();
  356. this.rgvOrdId4 = new System.Windows.Forms.Label();
  357. this.label181 = new System.Windows.Forms.Label();
  358. this.rgvPosTo4 = new System.Windows.Forms.Label();
  359. this.label183 = new System.Windows.Forms.Label();
  360. this.rgvPosFrom4 = new System.Windows.Forms.Label();
  361. this.rgvStatus4 = new System.Windows.Forms.Label();
  362. this.label189 = new System.Windows.Forms.Label();
  363. this.lblrgv1007 = new System.Windows.Forms.Label();
  364. this.GV4 = new System.Windows.Forms.PictureBox();
  365. this.pictureBox17 = new System.Windows.Forms.PictureBox();
  366. this.pnlBottom = new MyConrols.MyPanel();
  367. this.myPanel17 = new MyConrols.MyPanel();
  368. this.label314 = new System.Windows.Forms.Label();
  369. this.label315 = new System.Windows.Forms.Label();
  370. this.label316 = new System.Windows.Forms.Label();
  371. this.label317 = new System.Windows.Forms.Label();
  372. this.label318 = new System.Windows.Forms.Label();
  373. this.label319 = new System.Windows.Forms.Label();
  374. this.label320 = new System.Windows.Forms.Label();
  375. this.label321 = new System.Windows.Forms.Label();
  376. this.label322 = new System.Windows.Forms.Label();
  377. this.label323 = new System.Windows.Forms.Label();
  378. this.label324 = new System.Windows.Forms.Label();
  379. this.label325 = new System.Windows.Forms.Label();
  380. this.label326 = new System.Windows.Forms.Label();
  381. this.label327 = new System.Windows.Forms.Label();
  382. this.label328 = new System.Windows.Forms.Label();
  383. this.label329 = new System.Windows.Forms.Label();
  384. this.pictureBox35 = new System.Windows.Forms.PictureBox();
  385. this.pictureBox36 = new System.Windows.Forms.PictureBox();
  386. this.myPanel11 = new MyConrols.MyPanel();
  387. this.label40 = new System.Windows.Forms.Label();
  388. this.label41 = new System.Windows.Forms.Label();
  389. this.label42 = new System.Windows.Forms.Label();
  390. this.label301 = new System.Windows.Forms.Label();
  391. this.label302 = new System.Windows.Forms.Label();
  392. this.label303 = new System.Windows.Forms.Label();
  393. this.label304 = new System.Windows.Forms.Label();
  394. this.label305 = new System.Windows.Forms.Label();
  395. this.label306 = new System.Windows.Forms.Label();
  396. this.label307 = new System.Windows.Forms.Label();
  397. this.label308 = new System.Windows.Forms.Label();
  398. this.label309 = new System.Windows.Forms.Label();
  399. this.label310 = new System.Windows.Forms.Label();
  400. this.label311 = new System.Windows.Forms.Label();
  401. this.label312 = new System.Windows.Forms.Label();
  402. this.label313 = new System.Windows.Forms.Label();
  403. this.pictureBox29 = new System.Windows.Forms.PictureBox();
  404. this.pictureBox34 = new System.Windows.Forms.PictureBox();
  405. this.myPanel16 = new MyConrols.MyPanel();
  406. this.label285 = new System.Windows.Forms.Label();
  407. this.label286 = new System.Windows.Forms.Label();
  408. this.label287 = new System.Windows.Forms.Label();
  409. this.label288 = new System.Windows.Forms.Label();
  410. this.label289 = new System.Windows.Forms.Label();
  411. this.label290 = new System.Windows.Forms.Label();
  412. this.label291 = new System.Windows.Forms.Label();
  413. this.label292 = new System.Windows.Forms.Label();
  414. this.label293 = new System.Windows.Forms.Label();
  415. this.label294 = new System.Windows.Forms.Label();
  416. this.label295 = new System.Windows.Forms.Label();
  417. this.label296 = new System.Windows.Forms.Label();
  418. this.label297 = new System.Windows.Forms.Label();
  419. this.label298 = new System.Windows.Forms.Label();
  420. this.label299 = new System.Windows.Forms.Label();
  421. this.label300 = new System.Windows.Forms.Label();
  422. this.pictureBox32 = new System.Windows.Forms.PictureBox();
  423. this.pictureBox33 = new System.Windows.Forms.PictureBox();
  424. this.myPanel15 = new MyConrols.MyPanel();
  425. this.label269 = new System.Windows.Forms.Label();
  426. this.label270 = new System.Windows.Forms.Label();
  427. this.label271 = new System.Windows.Forms.Label();
  428. this.label272 = new System.Windows.Forms.Label();
  429. this.label273 = new System.Windows.Forms.Label();
  430. this.label274 = new System.Windows.Forms.Label();
  431. this.label275 = new System.Windows.Forms.Label();
  432. this.label276 = new System.Windows.Forms.Label();
  433. this.label277 = new System.Windows.Forms.Label();
  434. this.label278 = new System.Windows.Forms.Label();
  435. this.label279 = new System.Windows.Forms.Label();
  436. this.label280 = new System.Windows.Forms.Label();
  437. this.label281 = new System.Windows.Forms.Label();
  438. this.label282 = new System.Windows.Forms.Label();
  439. this.label283 = new System.Windows.Forms.Label();
  440. this.label284 = new System.Windows.Forms.Label();
  441. this.pictureBox30 = new System.Windows.Forms.PictureBox();
  442. this.pictureBox31 = new System.Windows.Forms.PictureBox();
  443. this.myPanel14 = new MyConrols.MyPanel();
  444. this.label253 = new System.Windows.Forms.Label();
  445. this.label254 = new System.Windows.Forms.Label();
  446. this.label255 = new System.Windows.Forms.Label();
  447. this.label256 = new System.Windows.Forms.Label();
  448. this.label257 = new System.Windows.Forms.Label();
  449. this.label258 = new System.Windows.Forms.Label();
  450. this.label259 = new System.Windows.Forms.Label();
  451. this.label260 = new System.Windows.Forms.Label();
  452. this.label261 = new System.Windows.Forms.Label();
  453. this.label262 = new System.Windows.Forms.Label();
  454. this.label263 = new System.Windows.Forms.Label();
  455. this.label264 = new System.Windows.Forms.Label();
  456. this.label265 = new System.Windows.Forms.Label();
  457. this.label266 = new System.Windows.Forms.Label();
  458. this.label267 = new System.Windows.Forms.Label();
  459. this.label268 = new System.Windows.Forms.Label();
  460. this.pictureBox27 = new System.Windows.Forms.PictureBox();
  461. this.pictureBox28 = new System.Windows.Forms.PictureBox();
  462. this.myPanel13 = new MyConrols.MyPanel();
  463. this.label237 = new System.Windows.Forms.Label();
  464. this.label238 = new System.Windows.Forms.Label();
  465. this.label239 = new System.Windows.Forms.Label();
  466. this.label240 = new System.Windows.Forms.Label();
  467. this.label241 = new System.Windows.Forms.Label();
  468. this.label242 = new System.Windows.Forms.Label();
  469. this.label243 = new System.Windows.Forms.Label();
  470. this.label244 = new System.Windows.Forms.Label();
  471. this.label245 = new System.Windows.Forms.Label();
  472. this.label246 = new System.Windows.Forms.Label();
  473. this.label247 = new System.Windows.Forms.Label();
  474. this.label248 = new System.Windows.Forms.Label();
  475. this.label249 = new System.Windows.Forms.Label();
  476. this.label250 = new System.Windows.Forms.Label();
  477. this.label251 = new System.Windows.Forms.Label();
  478. this.label252 = new System.Windows.Forms.Label();
  479. this.pictureBox25 = new System.Windows.Forms.PictureBox();
  480. this.pictureBox26 = new System.Windows.Forms.PictureBox();
  481. this.myPanel12 = new MyConrols.MyPanel();
  482. this.label221 = new System.Windows.Forms.Label();
  483. this.label222 = new System.Windows.Forms.Label();
  484. this.label223 = new System.Windows.Forms.Label();
  485. this.label224 = new System.Windows.Forms.Label();
  486. this.label225 = new System.Windows.Forms.Label();
  487. this.label226 = new System.Windows.Forms.Label();
  488. this.label227 = new System.Windows.Forms.Label();
  489. this.label228 = new System.Windows.Forms.Label();
  490. this.label229 = new System.Windows.Forms.Label();
  491. this.label230 = new System.Windows.Forms.Label();
  492. this.label231 = new System.Windows.Forms.Label();
  493. this.label232 = new System.Windows.Forms.Label();
  494. this.label233 = new System.Windows.Forms.Label();
  495. this.label234 = new System.Windows.Forms.Label();
  496. this.label235 = new System.Windows.Forms.Label();
  497. this.label236 = new System.Windows.Forms.Label();
  498. this.pictureBox23 = new System.Windows.Forms.PictureBox();
  499. this.pictureBox24 = new System.Windows.Forms.PictureBox();
  500. this.myPanel10 = new MyConrols.MyPanel();
  501. this.label205 = new System.Windows.Forms.Label();
  502. this.label206 = new System.Windows.Forms.Label();
  503. this.label207 = new System.Windows.Forms.Label();
  504. this.label208 = new System.Windows.Forms.Label();
  505. this.label209 = new System.Windows.Forms.Label();
  506. this.label210 = new System.Windows.Forms.Label();
  507. this.label211 = new System.Windows.Forms.Label();
  508. this.label212 = new System.Windows.Forms.Label();
  509. this.label213 = new System.Windows.Forms.Label();
  510. this.label214 = new System.Windows.Forms.Label();
  511. this.label215 = new System.Windows.Forms.Label();
  512. this.label216 = new System.Windows.Forms.Label();
  513. this.label217 = new System.Windows.Forms.Label();
  514. this.label218 = new System.Windows.Forms.Label();
  515. this.label219 = new System.Windows.Forms.Label();
  516. this.label220 = new System.Windows.Forms.Label();
  517. this.pictureBox21 = new System.Windows.Forms.PictureBox();
  518. this.pictureBox22 = new System.Windows.Forms.PictureBox();
  519. this.myPanel9 = new MyConrols.MyPanel();
  520. this.label188 = new System.Windows.Forms.Label();
  521. this.label190 = new System.Windows.Forms.Label();
  522. this.label191 = new System.Windows.Forms.Label();
  523. this.label192 = new System.Windows.Forms.Label();
  524. this.label193 = new System.Windows.Forms.Label();
  525. this.label194 = new System.Windows.Forms.Label();
  526. this.label195 = new System.Windows.Forms.Label();
  527. this.label196 = new System.Windows.Forms.Label();
  528. this.label197 = new System.Windows.Forms.Label();
  529. this.label198 = new System.Windows.Forms.Label();
  530. this.label199 = new System.Windows.Forms.Label();
  531. this.label200 = new System.Windows.Forms.Label();
  532. this.label201 = new System.Windows.Forms.Label();
  533. this.label202 = new System.Windows.Forms.Label();
  534. this.label203 = new System.Windows.Forms.Label();
  535. this.label204 = new System.Windows.Forms.Label();
  536. this.pictureBox19 = new System.Windows.Forms.PictureBox();
  537. this.pictureBox20 = new System.Windows.Forms.PictureBox();
  538. this.myPanel8 = new MyConrols.MyPanel();
  539. this.label169 = new System.Windows.Forms.Label();
  540. this.label170 = new System.Windows.Forms.Label();
  541. this.label171 = new System.Windows.Forms.Label();
  542. this.label172 = new System.Windows.Forms.Label();
  543. this.label174 = new System.Windows.Forms.Label();
  544. this.label175 = new System.Windows.Forms.Label();
  545. this.label176 = new System.Windows.Forms.Label();
  546. this.label177 = new System.Windows.Forms.Label();
  547. this.label178 = new System.Windows.Forms.Label();
  548. this.label179 = new System.Windows.Forms.Label();
  549. this.label180 = new System.Windows.Forms.Label();
  550. this.label182 = new System.Windows.Forms.Label();
  551. this.label184 = new System.Windows.Forms.Label();
  552. this.label185 = new System.Windows.Forms.Label();
  553. this.label186 = new System.Windows.Forms.Label();
  554. this.label187 = new System.Windows.Forms.Label();
  555. this.pictureBox16 = new System.Windows.Forms.PictureBox();
  556. this.pictureBox18 = new System.Windows.Forms.PictureBox();
  557. this.myPanel7 = new MyConrols.MyPanel();
  558. this.lblInStatus8 = new System.Windows.Forms.Label();
  559. this.lblOutStatus8 = new System.Windows.Forms.Label();
  560. this.label149 = new System.Windows.Forms.Label();
  561. this.ddjPosTo8 = new System.Windows.Forms.Label();
  562. this.ddjPosFrom8 = new System.Windows.Forms.Label();
  563. this.label152 = new System.Windows.Forms.Label();
  564. this.label153 = new System.Windows.Forms.Label();
  565. this.ddjMode8 = new System.Windows.Forms.Label();
  566. this.ddjOrdId8 = new System.Windows.Forms.Label();
  567. this.label156 = new System.Windows.Forms.Label();
  568. this.ddjOptType8 = new System.Windows.Forms.Label();
  569. this.label158 = new System.Windows.Forms.Label();
  570. this.ddjTotal_KM8 = new System.Windows.Forms.Label();
  571. this.label160 = new System.Windows.Forms.Label();
  572. this.ddjWorkTime8 = new System.Windows.Forms.Label();
  573. this.label162 = new System.Windows.Forms.Label();
  574. this.ddjStatus8 = new System.Windows.Forms.Label();
  575. this.ddjCurrPos8 = new System.Windows.Forms.Label();
  576. this.label165 = new System.Windows.Forms.Label();
  577. this.label166 = new System.Windows.Forms.Label();
  578. this.label167 = new System.Windows.Forms.Label();
  579. this.lblsrm08 = new System.Windows.Forms.Label();
  580. this.G8 = new System.Windows.Forms.PictureBox();
  581. this.pictureBox15 = new System.Windows.Forms.PictureBox();
  582. this.myPanel6 = new MyConrols.MyPanel();
  583. this.lblInStatus7 = new System.Windows.Forms.Label();
  584. this.lblOutStatus7 = new System.Windows.Forms.Label();
  585. this.label103 = new System.Windows.Forms.Label();
  586. this.ddjPosTo7 = new System.Windows.Forms.Label();
  587. this.ddjPosFrom7 = new System.Windows.Forms.Label();
  588. this.label106 = new System.Windows.Forms.Label();
  589. this.label107 = new System.Windows.Forms.Label();
  590. this.ddjMode7 = new System.Windows.Forms.Label();
  591. this.ddjOrdId7 = new System.Windows.Forms.Label();
  592. this.label110 = new System.Windows.Forms.Label();
  593. this.ddjOptType7 = new System.Windows.Forms.Label();
  594. this.label112 = new System.Windows.Forms.Label();
  595. this.ddjTotal_KM7 = new System.Windows.Forms.Label();
  596. this.label114 = new System.Windows.Forms.Label();
  597. this.ddjWorkTime7 = new System.Windows.Forms.Label();
  598. this.label116 = new System.Windows.Forms.Label();
  599. this.ddjStatus7 = new System.Windows.Forms.Label();
  600. this.ddjCurrPos7 = new System.Windows.Forms.Label();
  601. this.label119 = new System.Windows.Forms.Label();
  602. this.label120 = new System.Windows.Forms.Label();
  603. this.label121 = new System.Windows.Forms.Label();
  604. this.lblsrm07 = new System.Windows.Forms.Label();
  605. this.G7 = new System.Windows.Forms.PictureBox();
  606. this.pictureBox9 = new System.Windows.Forms.PictureBox();
  607. this.myPanel3 = new MyConrols.MyPanel();
  608. this.lblInStatus6 = new System.Windows.Forms.Label();
  609. this.lblOutStatus6 = new System.Windows.Forms.Label();
  610. this.label47 = new System.Windows.Forms.Label();
  611. this.ddjPosTo6 = new System.Windows.Forms.Label();
  612. this.ddjPosFrom6 = new System.Windows.Forms.Label();
  613. this.label52 = new System.Windows.Forms.Label();
  614. this.label54 = new System.Windows.Forms.Label();
  615. this.ddjMode6 = new System.Windows.Forms.Label();
  616. this.ddjOrdId6 = new System.Windows.Forms.Label();
  617. this.label62 = new System.Windows.Forms.Label();
  618. this.ddjOptType6 = new System.Windows.Forms.Label();
  619. this.label68 = new System.Windows.Forms.Label();
  620. this.ddjTotal_KM6 = new System.Windows.Forms.Label();
  621. this.label76 = new System.Windows.Forms.Label();
  622. this.ddjWorkTime6 = new System.Windows.Forms.Label();
  623. this.label82 = new System.Windows.Forms.Label();
  624. this.ddjStatus6 = new System.Windows.Forms.Label();
  625. this.ddjCurrPos6 = new System.Windows.Forms.Label();
  626. this.label95 = new System.Windows.Forms.Label();
  627. this.label97 = new System.Windows.Forms.Label();
  628. this.label98 = new System.Windows.Forms.Label();
  629. this.lblsrm06 = new System.Windows.Forms.Label();
  630. this.G6 = new System.Windows.Forms.PictureBox();
  631. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  632. this.pnlRGV1089 = new MyConrols.MyPanel();
  633. this.label7 = new System.Windows.Forms.Label();
  634. this.label8 = new System.Windows.Forms.Label();
  635. this.label9 = new System.Windows.Forms.Label();
  636. this.rgvOptType2 = new System.Windows.Forms.Label();
  637. this.label31 = new System.Windows.Forms.Label();
  638. this.lblRGVWarning1089 = new System.Windows.Forms.Label();
  639. this.rgvPosCurr2 = new System.Windows.Forms.Label();
  640. this.rgvMode2 = new System.Windows.Forms.Label();
  641. this.rgvOrdId2 = new System.Windows.Forms.Label();
  642. this.label50 = new System.Windows.Forms.Label();
  643. this.rgvPosTo2 = new System.Windows.Forms.Label();
  644. this.label53 = new System.Windows.Forms.Label();
  645. this.rgvPosFrom2 = new System.Windows.Forms.Label();
  646. this.rgvStatus2 = new System.Windows.Forms.Label();
  647. this.label63 = new System.Windows.Forms.Label();
  648. this.lblrgv1089 = new System.Windows.Forms.Label();
  649. this.GV2 = new System.Windows.Forms.PictureBox();
  650. this.pictureBox4 = new System.Windows.Forms.PictureBox();
  651. this.myPanel2 = new MyConrols.MyPanel();
  652. this.myPanel4 = new MyConrols.MyPanel();
  653. this.label124 = new System.Windows.Forms.Label();
  654. this.label125 = new System.Windows.Forms.Label();
  655. this.label126 = new System.Windows.Forms.Label();
  656. this.label127 = new System.Windows.Forms.Label();
  657. this.label128 = new System.Windows.Forms.Label();
  658. this.label129 = new System.Windows.Forms.Label();
  659. this.label130 = new System.Windows.Forms.Label();
  660. this.label131 = new System.Windows.Forms.Label();
  661. this.label132 = new System.Windows.Forms.Label();
  662. this.label133 = new System.Windows.Forms.Label();
  663. this.label134 = new System.Windows.Forms.Label();
  664. this.label135 = new System.Windows.Forms.Label();
  665. this.label136 = new System.Windows.Forms.Label();
  666. this.label138 = new System.Windows.Forms.Label();
  667. this.label140 = new System.Windows.Forms.Label();
  668. this.label141 = new System.Windows.Forms.Label();
  669. this.label142 = new System.Windows.Forms.Label();
  670. this.label143 = new System.Windows.Forms.Label();
  671. this.label144 = new System.Windows.Forms.Label();
  672. this.label145 = new System.Windows.Forms.Label();
  673. this.label146 = new System.Windows.Forms.Label();
  674. this.label147 = new System.Windows.Forms.Label();
  675. this.pictureBox11 = new System.Windows.Forms.PictureBox();
  676. this.pictureBox12 = new System.Windows.Forms.PictureBox();
  677. this.rgvOptType1 = new System.Windows.Forms.Label();
  678. this.label23 = new System.Windows.Forms.Label();
  679. this.lblRGVWarning1444 = new System.Windows.Forms.Label();
  680. this.rgvPosCurr1 = new System.Windows.Forms.Label();
  681. this.label45 = new System.Windows.Forms.Label();
  682. this.rgvMode1 = new System.Windows.Forms.Label();
  683. this.rgvOrdId1 = new System.Windows.Forms.Label();
  684. this.label58 = new System.Windows.Forms.Label();
  685. this.rgvPosTo1 = new System.Windows.Forms.Label();
  686. this.label69 = new System.Windows.Forms.Label();
  687. this.rgvPosFrom1 = new System.Windows.Forms.Label();
  688. this.label73 = new System.Windows.Forms.Label();
  689. this.rgvStatus1 = new System.Windows.Forms.Label();
  690. this.label80 = new System.Windows.Forms.Label();
  691. this.label92 = new System.Windows.Forms.Label();
  692. this.lblrgv1444 = new System.Windows.Forms.Label();
  693. this.GV1 = new System.Windows.Forms.PictureBox();
  694. this.pictureBox5 = new System.Windows.Forms.PictureBox();
  695. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  696. this.tabControl1.SuspendLayout();
  697. this.tabPage1.SuspendLayout();
  698. this.myTableLayoutPanel1.SuspendLayout();
  699. this.pnlDDJ1.SuspendLayout();
  700. ((System.ComponentModel.ISupportInitialize)(this.G1)).BeginInit();
  701. ((System.ComponentModel.ISupportInitialize)(this.R1)).BeginInit();
  702. this.pnlDDJ2.SuspendLayout();
  703. ((System.ComponentModel.ISupportInitialize)(this.G2)).BeginInit();
  704. ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
  705. this.pnlDDJ3.SuspendLayout();
  706. ((System.ComponentModel.ISupportInitialize)(this.G3)).BeginInit();
  707. ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit();
  708. this.pnlDDJ4.SuspendLayout();
  709. ((System.ComponentModel.ISupportInitialize)(this.G4)).BeginInit();
  710. ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).BeginInit();
  711. this.myPanel1.SuspendLayout();
  712. ((System.ComponentModel.ISupportInitialize)(this.G5)).BeginInit();
  713. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
  714. this.pnlRGV1091.SuspendLayout();
  715. ((System.ComponentModel.ISupportInitialize)(this.GV3)).BeginInit();
  716. ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit();
  717. this.myPanel5.SuspendLayout();
  718. ((System.ComponentModel.ISupportInitialize)(this.GV4)).BeginInit();
  719. ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).BeginInit();
  720. this.pnlBottom.SuspendLayout();
  721. this.myPanel17.SuspendLayout();
  722. ((System.ComponentModel.ISupportInitialize)(this.pictureBox35)).BeginInit();
  723. ((System.ComponentModel.ISupportInitialize)(this.pictureBox36)).BeginInit();
  724. this.myPanel11.SuspendLayout();
  725. ((System.ComponentModel.ISupportInitialize)(this.pictureBox29)).BeginInit();
  726. ((System.ComponentModel.ISupportInitialize)(this.pictureBox34)).BeginInit();
  727. this.myPanel16.SuspendLayout();
  728. ((System.ComponentModel.ISupportInitialize)(this.pictureBox32)).BeginInit();
  729. ((System.ComponentModel.ISupportInitialize)(this.pictureBox33)).BeginInit();
  730. this.myPanel15.SuspendLayout();
  731. ((System.ComponentModel.ISupportInitialize)(this.pictureBox30)).BeginInit();
  732. ((System.ComponentModel.ISupportInitialize)(this.pictureBox31)).BeginInit();
  733. this.myPanel14.SuspendLayout();
  734. ((System.ComponentModel.ISupportInitialize)(this.pictureBox27)).BeginInit();
  735. ((System.ComponentModel.ISupportInitialize)(this.pictureBox28)).BeginInit();
  736. this.myPanel13.SuspendLayout();
  737. ((System.ComponentModel.ISupportInitialize)(this.pictureBox25)).BeginInit();
  738. ((System.ComponentModel.ISupportInitialize)(this.pictureBox26)).BeginInit();
  739. this.myPanel12.SuspendLayout();
  740. ((System.ComponentModel.ISupportInitialize)(this.pictureBox23)).BeginInit();
  741. ((System.ComponentModel.ISupportInitialize)(this.pictureBox24)).BeginInit();
  742. this.myPanel10.SuspendLayout();
  743. ((System.ComponentModel.ISupportInitialize)(this.pictureBox21)).BeginInit();
  744. ((System.ComponentModel.ISupportInitialize)(this.pictureBox22)).BeginInit();
  745. this.myPanel9.SuspendLayout();
  746. ((System.ComponentModel.ISupportInitialize)(this.pictureBox19)).BeginInit();
  747. ((System.ComponentModel.ISupportInitialize)(this.pictureBox20)).BeginInit();
  748. this.myPanel8.SuspendLayout();
  749. ((System.ComponentModel.ISupportInitialize)(this.pictureBox16)).BeginInit();
  750. ((System.ComponentModel.ISupportInitialize)(this.pictureBox18)).BeginInit();
  751. this.myPanel7.SuspendLayout();
  752. ((System.ComponentModel.ISupportInitialize)(this.G8)).BeginInit();
  753. ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).BeginInit();
  754. this.myPanel6.SuspendLayout();
  755. ((System.ComponentModel.ISupportInitialize)(this.G7)).BeginInit();
  756. ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit();
  757. this.myPanel3.SuspendLayout();
  758. ((System.ComponentModel.ISupportInitialize)(this.G6)).BeginInit();
  759. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  760. this.pnlRGV1089.SuspendLayout();
  761. ((System.ComponentModel.ISupportInitialize)(this.GV2)).BeginInit();
  762. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
  763. this.myPanel2.SuspendLayout();
  764. this.myPanel4.SuspendLayout();
  765. ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit();
  766. ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit();
  767. ((System.ComponentModel.ISupportInitialize)(this.GV1)).BeginInit();
  768. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
  769. this.tableLayoutPanel1.SuspendLayout();
  770. this.SuspendLayout();
  771. //
  772. // tabControl1
  773. //
  774. this.tabControl1.Controls.Add(this.tabPage1);
  775. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  776. this.tabControl1.ItemSize = new System.Drawing.Size(120, 21);
  777. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  778. this.tabControl1.Margin = new System.Windows.Forms.Padding(0);
  779. this.tabControl1.Name = "tabControl1";
  780. this.tabControl1.SelectedIndex = 0;
  781. this.tabControl1.Size = new System.Drawing.Size(1710, 615);
  782. this.tabControl1.TabIndex = 125;
  783. //
  784. // tabPage1
  785. //
  786. this.tabPage1.AutoScroll = true;
  787. this.tabPage1.BackColor = System.Drawing.Color.White;
  788. this.tabPage1.Controls.Add(this.myTableLayoutPanel1);
  789. this.tabPage1.Location = new System.Drawing.Point(4, 25);
  790. this.tabPage1.Margin = new System.Windows.Forms.Padding(0);
  791. this.tabPage1.Name = "tabPage1";
  792. this.tabPage1.Size = new System.Drawing.Size(1702, 586);
  793. this.tabPage1.TabIndex = 0;
  794. this.tabPage1.Text = "OPP立体库";
  795. //
  796. // myTableLayoutPanel1
  797. //
  798. this.myTableLayoutPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(144)))), ((int)(((byte)(154)))));
  799. this.myTableLayoutPanel1.ColumnCount = 130;
  800. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  801. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  802. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  803. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  804. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  805. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  806. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  807. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  808. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  809. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  810. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  811. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  812. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  813. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  814. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  815. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  816. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  817. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  818. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  819. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  820. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  821. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  822. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  823. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  824. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  825. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  826. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  827. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  828. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  829. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  830. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  831. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  832. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  833. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  834. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  835. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  836. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  837. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  838. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  839. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  840. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  841. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  842. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  843. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  844. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  845. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  846. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  847. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  848. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  849. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  850. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  851. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  852. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8097839F));
  853. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7085608F));
  854. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  855. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  856. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  857. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  858. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  859. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  860. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  861. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  862. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  863. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  864. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  865. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  866. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  867. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  868. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  869. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  870. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  871. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  872. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  873. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  874. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  875. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  876. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  877. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  878. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  879. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  880. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  881. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  882. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  883. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  884. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  885. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  886. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  887. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  888. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  889. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  890. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  891. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  892. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  893. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  894. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  895. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  896. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  897. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  898. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  899. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  900. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  901. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  902. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  903. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  904. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  905. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  906. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  907. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  908. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  909. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7691131F));
  910. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7732973F));
  911. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7732973F));
  912. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7714735F));
  913. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7714735F));
  914. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7714735F));
  915. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7714735F));
  916. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7714735F));
  917. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7714735F));
  918. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7714735F));
  919. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7714735F));
  920. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7714735F));
  921. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7714735F));
  922. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7695203F));
  923. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7695203F));
  924. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7695203F));
  925. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7695203F));
  926. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7695203F));
  927. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7695203F));
  928. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7695203F));
  929. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7695203F));
  930. this.myTableLayoutPanel1.Controls.Add(this.con2282, 15, 18);
  931. this.myTableLayoutPanel1.Controls.Add(this.con2279, 9, 40);
  932. this.myTableLayoutPanel1.Controls.Add(this.con2058, 55, 44);
  933. this.myTableLayoutPanel1.Controls.Add(this.con2053, 51, 44);
  934. this.myTableLayoutPanel1.Controls.Add(this.con2051, 47, 44);
  935. this.myTableLayoutPanel1.Controls.Add(this.con2039, 47, 48);
  936. this.myTableLayoutPanel1.Controls.Add(this.con2034, 28, 42);
  937. this.myTableLayoutPanel1.Controls.Add(this.con2028, 28, 44);
  938. this.myTableLayoutPanel1.Controls.Add(this.con2027, 16, 40);
  939. this.myTableLayoutPanel1.Controls.Add(this.con2022, 24, 44);
  940. this.myTableLayoutPanel1.Controls.Add(this.con2021, 19, 40);
  941. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel1, 6, 14);
  942. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel3, 52, 14);
  943. this.myTableLayoutPanel1.Controls.Add(this.con2173, 10, 54);
  944. this.myTableLayoutPanel1.Controls.Add(this.con2147, 60, 10);
  945. this.myTableLayoutPanel1.Controls.Add(this.con2146, 63, 10);
  946. this.myTableLayoutPanel1.Controls.Add(this.con2148, 55, 10);
  947. this.myTableLayoutPanel1.Controls.Add(this.con2150, 56, 12);
  948. this.myTableLayoutPanel1.Controls.Add(this.con2161, 28, 16);
  949. this.myTableLayoutPanel1.Controls.Add(this.con2104, 59, 42);
  950. this.myTableLayoutPanel1.Controls.Add(this.con2102, 63, 40);
  951. this.myTableLayoutPanel1.Controls.Add(this.con2101, 55, 40);
  952. this.myTableLayoutPanel1.Controls.Add(this.con2103, 58, 40);
  953. this.myTableLayoutPanel1.Controls.Add(this.con2108, 19, 48);
  954. this.myTableLayoutPanel1.Controls.Add(this.con2107, 59, 48);
  955. this.myTableLayoutPanel1.Controls.Add(this.con2106, 59, 46);
  956. this.myTableLayoutPanel1.Controls.Add(this.con2105, 59, 44);
  957. this.myTableLayoutPanel1.Controls.Add(this.con2060, 43, 50);
  958. this.myTableLayoutPanel1.Controls.Add(this.con2079, 34, 48);
  959. this.myTableLayoutPanel1.Controls.Add(this.con2075, 28, 50);
  960. this.myTableLayoutPanel1.Controls.Add(this.con2080, 35, 52);
  961. this.myTableLayoutPanel1.Controls.Add(this.con2074, 28, 46);
  962. this.myTableLayoutPanel1.Controls.Add(this.con2078, 28, 54);
  963. this.myTableLayoutPanel1.Controls.Add(this.con2077, 28, 52);
  964. this.myTableLayoutPanel1.Controls.Add(this.con2325, 35, 54);
  965. this.myTableLayoutPanel1.Controls.Add(this.con2073, 43, 52);
  966. this.myTableLayoutPanel1.Controls.Add(this.con2071, 20, 46);
  967. this.myTableLayoutPanel1.Controls.Add(this.con2072, 43, 54);
  968. this.myTableLayoutPanel1.Controls.Add(this.con2076, 27, 48);
  969. this.myTableLayoutPanel1.Controls.Add(this.con2355, 40, 48);
  970. this.myTableLayoutPanel1.Controls.Add(this.con2037, 43, 46);
  971. this.myTableLayoutPanel1.Controls.Add(this.con2044, 51, 48);
  972. this.myTableLayoutPanel1.Controls.Add(this.con2046, 55, 48);
  973. this.myTableLayoutPanel1.Controls.Add(this.con2031, 39, 44);
  974. this.myTableLayoutPanel1.Controls.Add(this.con2029, 36, 44);
  975. this.myTableLayoutPanel1.Controls.Add(this.con2036, 42, 48);
  976. this.myTableLayoutPanel1.Controls.Add(this.con2017, 19, 44);
  977. this.myTableLayoutPanel1.Controls.Add(this.con2019, 20, 42);
  978. this.myTableLayoutPanel1.Controls.Add(this.con2024, 33, 44);
  979. this.myTableLayoutPanel1.Controls.Add(this.con2324, 35, 50);
  980. this.myTableLayoutPanel1.Controls.Add(this.con2353, 32, 48);
  981. this.myTableLayoutPanel1.Controls.Add(this.con2016, 38, 48);
  982. this.myTableLayoutPanel1.Controls.Add(this.locationPos37, 18, 20);
  983. this.myTableLayoutPanel1.Controls.Add(this.con2011, 18, 18);
  984. this.myTableLayoutPanel1.Controls.Add(this.con2302, 47, 10);
  985. this.myTableLayoutPanel1.Controls.Add(this.label33, 108, 23);
  986. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel31, 17, 20);
  987. this.myTableLayoutPanel1.Controls.Add(this.locationPos38, 22, 20);
  988. this.myTableLayoutPanel1.Controls.Add(this.locationPos49, 14, 20);
  989. this.myTableLayoutPanel1.Controls.Add(this.locationPos53, 10, 20);
  990. this.myTableLayoutPanel1.Controls.Add(this.srm15, 9, 20);
  991. this.myTableLayoutPanel1.Controls.Add(this.locationPos55, 6, 20);
  992. this.myTableLayoutPanel1.Controls.Add(this.con2308, 18, 16);
  993. this.myTableLayoutPanel1.Controls.Add(this.con2280, 24, 48);
  994. this.myTableLayoutPanel1.Controls.Add(this.con2035, 24, 40);
  995. this.myTableLayoutPanel1.Controls.Add(this.srm14, 25, 20);
  996. this.myTableLayoutPanel1.Controls.Add(this.locationPos48, 26, 20);
  997. this.myTableLayoutPanel1.Controls.Add(this.locationPos36, 30, 20);
  998. this.myTableLayoutPanel1.Controls.Add(this.con2042, 32, 40);
  999. this.myTableLayoutPanel1.Controls.Add(this.con2041, 27, 40);
  1000. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel30, 33, 20);
  1001. this.myTableLayoutPanel1.Controls.Add(this.locationPos47, 34, 20);
  1002. this.myTableLayoutPanel1.Controls.Add(this.con2277, 20, 50);
  1003. this.myTableLayoutPanel1.Controls.Add(this.con2049, 42, 44);
  1004. this.myTableLayoutPanel1.Controls.Add(this.con2050, 39, 40);
  1005. this.myTableLayoutPanel1.Controls.Add(this.locationPos45, 37, 20);
  1006. this.myTableLayoutPanel1.Controls.Add(this.con2281, 20, 52);
  1007. this.myTableLayoutPanel1.Controls.Add(this.srm13, 40, 20);
  1008. this.myTableLayoutPanel1.Controls.Add(this.locationPos46, 41, 20);
  1009. this.myTableLayoutPanel1.Controls.Add(this.con2276, 20, 54);
  1010. this.myTableLayoutPanel1.Controls.Add(this.con2056, 41, 40);
  1011. this.myTableLayoutPanel1.Controls.Add(this.locationPos42, 45, 20);
  1012. this.myTableLayoutPanel1.Controls.Add(this.con2057, 47, 40);
  1013. this.myTableLayoutPanel1.Controls.Add(this.con2275, 55, 18);
  1014. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel29, 48, 20);
  1015. this.myTableLayoutPanel1.Controls.Add(this.locationPos54, 49, 20);
  1016. this.myTableLayoutPanel1.Controls.Add(this.con2062, 43, 42);
  1017. this.myTableLayoutPanel1.Controls.Add(this.con2263, 43, 16);
  1018. this.myTableLayoutPanel1.Controls.Add(this.con2201, 10, 52);
  1019. this.myTableLayoutPanel1.Controls.Add(this.con2364, 47, 18);
  1020. this.myTableLayoutPanel1.Controls.Add(this.con2362, 39, 18);
  1021. this.myTableLayoutPanel1.Controls.Add(this.con2360, 59, 16);
  1022. this.myTableLayoutPanel1.Controls.Add(this.con2359, 63, 18);
  1023. this.myTableLayoutPanel1.Controls.Add(this.con2135, 58, 18);
  1024. this.myTableLayoutPanel1.Controls.Add(this.con2138, 41, 18);
  1025. this.myTableLayoutPanel1.Controls.Add(this.con2116, 24, 18);
  1026. this.myTableLayoutPanel1.Controls.Add(this.con2117, 32, 18);
  1027. this.myTableLayoutPanel1.Controls.Add(this.con2328, 27, 18);
  1028. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel2, 36, 14);
  1029. this.myTableLayoutPanel1.Controls.Add(this.con2307, 52, 10);
  1030. this.myTableLayoutPanel1.Controls.Add(this.con2003, 49, 14);
  1031. this.myTableLayoutPanel1.Controls.Add(this.con2312, 10, 50);
  1032. this.myTableLayoutPanel1.Controls.Add(this.con2313, 10, 48);
  1033. this.myTableLayoutPanel1.Controls.Add(this.con2314, 10, 46);
  1034. this.myTableLayoutPanel1.Controls.Add(this.con2315, 10, 44);
  1035. this.myTableLayoutPanel1.Controls.Add(this.con2316, 10, 42);
  1036. this.myTableLayoutPanel1.Controls.Add(this.locationPos1, 53, 20);
  1037. this.myTableLayoutPanel1.Controls.Add(this.locationPos2, 57, 20);
  1038. this.myTableLayoutPanel1.Controls.Add(this.locationPos3, 61, 20);
  1039. this.myTableLayoutPanel1.Controls.Add(this.locationPos4, 65, 20);
  1040. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel5, 56, 20);
  1041. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel6, 64, 20);
  1042. this.myTableLayoutPanel1.Controls.Add(this.conveyor_L1, 73, 40);
  1043. this.myTableLayoutPanel1.Controls.Add(this.conveyor_L2, 70, 40);
  1044. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_B1, 70, 42);
  1045. this.myTableLayoutPanel1.Controls.Add(this.conveyor_L3, 76, 40);
  1046. this.myTableLayoutPanel1.Controls.Add(this.conveyor1, 78, 40);
  1047. this.myTableLayoutPanel1.Controls.Add(this.conveyor_R1, 81, 40);
  1048. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_A1, 78, 42);
  1049. this.myTableLayoutPanel1.Controls.Add(this.conveyor_R2, 84, 40);
  1050. this.myTableLayoutPanel1.Controls.Add(this.conveyor4, 86, 40);
  1051. this.myTableLayoutPanel1.Controls.Add(this.conveyor_L4, 89, 40);
  1052. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_B2, 86, 42);
  1053. this.myTableLayoutPanel1.Controls.Add(this.conveyor_L5, 92, 40);
  1054. this.myTableLayoutPanel1.Controls.Add(this.conveyor5, 94, 40);
  1055. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_A2, 94, 42);
  1056. this.myTableLayoutPanel1.Controls.Add(this.conveyor_R3, 98, 40);
  1057. this.myTableLayoutPanel1.Controls.Add(this.conveyor6, 100, 40);
  1058. this.myTableLayoutPanel1.Controls.Add(this.conveyor_L6, 103, 40);
  1059. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_B3, 100, 42);
  1060. this.myTableLayoutPanel1.Controls.Add(this.conveyor_L7, 106, 40);
  1061. this.myTableLayoutPanel1.Controls.Add(this.conveyor7, 108, 40);
  1062. this.myTableLayoutPanel1.Controls.Add(this.conveyor_R4, 111, 40);
  1063. this.myTableLayoutPanel1.Controls.Add(this.conveyor_R5, 114, 40);
  1064. this.myTableLayoutPanel1.Controls.Add(this.conveyor8, 116, 40);
  1065. this.myTableLayoutPanel1.Controls.Add(this.conveyor_L8, 119, 40);
  1066. this.myTableLayoutPanel1.Controls.Add(this.conveyor_R6, 122, 40);
  1067. this.myTableLayoutPanel1.Controls.Add(this.conveyor9, 124, 40);
  1068. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_A3, 108, 42);
  1069. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_B4, 116, 42);
  1070. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_A4, 124, 42);
  1071. this.myTableLayoutPanel1.Controls.Add(this.conveyor10, 74, 45);
  1072. this.myTableLayoutPanel1.Controls.Add(this.conveyor11, 81, 45);
  1073. this.myTableLayoutPanel1.Controls.Add(this.conveyor12, 88, 45);
  1074. this.myTableLayoutPanel1.Controls.Add(this.conveyor13, 96, 45);
  1075. this.myTableLayoutPanel1.Controls.Add(this.conveyor14, 105, 45);
  1076. this.myTableLayoutPanel1.Controls.Add(this.conveyor15, 119, 45);
  1077. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel21, 70, 45);
  1078. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel23, 84, 45);
  1079. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel24, 91, 45);
  1080. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel25, 99, 45);
  1081. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel22, 77, 45);
  1082. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel26, 108, 45);
  1083. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel27, 113, 45);
  1084. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel28, 122, 45);
  1085. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_B5, 111, 23);
  1086. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_B6, 111, 25);
  1087. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_B7, 111, 27);
  1088. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_B8, 119, 23);
  1089. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_B9, 119, 25);
  1090. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_B10, 119, 27);
  1091. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_B11, 115, 48);
  1092. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_B12, 115, 50);
  1093. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_B13, 115, 52);
  1094. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_B14, 115, 54);
  1095. this.myTableLayoutPanel1.Controls.Add(this.label1, 116, 23);
  1096. this.myTableLayoutPanel1.Controls.Add(this.lable4, 112, 48);
  1097. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_B15, 48, 8);
  1098. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_B16, 48, 6);
  1099. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_B17, 64, 8);
  1100. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_B18, 64, 6);
  1101. this.myTableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1102. this.myTableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  1103. this.myTableLayoutPanel1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  1104. this.myTableLayoutPanel1.Name = "myTableLayoutPanel1";
  1105. this.myTableLayoutPanel1.RowCount = 58;
  1106. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1107. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1108. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1109. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1110. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.532182F));
  1111. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.702423F));
  1112. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.702423F));
  1113. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.702819F));
  1114. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.042908F));
  1115. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1116. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1117. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1118. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1119. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1120. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1121. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1122. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1123. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1124. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1125. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1126. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1127. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1128. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1129. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1130. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1131. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1132. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.518901F));
  1133. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.752578F));
  1134. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1135. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1136. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1137. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1138. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1139. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1140. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1141. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1142. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1143. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1144. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1145. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1146. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1147. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1148. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1149. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1150. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1151. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1152. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1153. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1154. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1155. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1156. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1157. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1158. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1159. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1160. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1161. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1162. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1163. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.726388F));
  1164. this.myTableLayoutPanel1.Size = new System.Drawing.Size(1702, 586);
  1165. this.myTableLayoutPanel1.TabIndex = 2;
  1166. //
  1167. // con2282
  1168. //
  1169. this.con2282.BackColor = System.Drawing.Color.Transparent;
  1170. this.myTableLayoutPanel1.SetColumnSpan(this.con2282, 3);
  1171. this.con2282.Dock = System.Windows.Forms.DockStyle.Fill;
  1172. this.con2282.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1173. this.con2282.Location = new System.Drawing.Point(195, 176);
  1174. this.con2282.Margin = new System.Windows.Forms.Padding(0);
  1175. this.con2282.Name = "con2282";
  1176. this.myTableLayoutPanel1.SetRowSpan(this.con2282, 2);
  1177. this.con2282.Size = new System.Drawing.Size(39, 20);
  1178. this.con2282.TabIndex = 869;
  1179. //
  1180. // con2279
  1181. //
  1182. this.con2279.BackColor = System.Drawing.Color.Transparent;
  1183. this.myTableLayoutPanel1.SetColumnSpan(this.con2279, 5);
  1184. this.con2279.Dock = System.Windows.Forms.DockStyle.Fill;
  1185. this.con2279.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1186. this.con2279.Location = new System.Drawing.Point(117, 394);
  1187. this.con2279.Margin = new System.Windows.Forms.Padding(0);
  1188. this.con2279.Name = "con2279";
  1189. this.myTableLayoutPanel1.SetRowSpan(this.con2279, 2);
  1190. this.con2279.Size = new System.Drawing.Size(65, 20);
  1191. this.con2279.TabIndex = 858;
  1192. //
  1193. // con2058
  1194. //
  1195. this.con2058.BackColor = System.Drawing.Color.Transparent;
  1196. this.myTableLayoutPanel1.SetColumnSpan(this.con2058, 4);
  1197. this.con2058.Dock = System.Windows.Forms.DockStyle.Fill;
  1198. this.con2058.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1199. this.con2058.Location = new System.Drawing.Point(714, 434);
  1200. this.con2058.Margin = new System.Windows.Forms.Padding(0);
  1201. this.con2058.Name = "con2058";
  1202. this.myTableLayoutPanel1.SetRowSpan(this.con2058, 2);
  1203. this.con2058.Size = new System.Drawing.Size(52, 20);
  1204. this.con2058.TabIndex = 854;
  1205. //
  1206. // con2053
  1207. //
  1208. this.con2053.BackColor = System.Drawing.Color.Transparent;
  1209. this.myTableLayoutPanel1.SetColumnSpan(this.con2053, 4);
  1210. this.con2053.Dock = System.Windows.Forms.DockStyle.Fill;
  1211. this.con2053.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1212. this.con2053.Location = new System.Drawing.Point(663, 434);
  1213. this.con2053.Margin = new System.Windows.Forms.Padding(0);
  1214. this.con2053.Name = "con2053";
  1215. this.myTableLayoutPanel1.SetRowSpan(this.con2053, 2);
  1216. this.con2053.Size = new System.Drawing.Size(51, 20);
  1217. this.con2053.TabIndex = 853;
  1218. //
  1219. // con2051
  1220. //
  1221. this.con2051.BackColor = System.Drawing.Color.Transparent;
  1222. this.myTableLayoutPanel1.SetColumnSpan(this.con2051, 4);
  1223. this.con2051.Dock = System.Windows.Forms.DockStyle.Fill;
  1224. this.con2051.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1225. this.con2051.Location = new System.Drawing.Point(611, 434);
  1226. this.con2051.Margin = new System.Windows.Forms.Padding(0);
  1227. this.con2051.Name = "con2051";
  1228. this.myTableLayoutPanel1.SetRowSpan(this.con2051, 2);
  1229. this.con2051.Size = new System.Drawing.Size(52, 20);
  1230. this.con2051.TabIndex = 847;
  1231. //
  1232. // con2039
  1233. //
  1234. this.con2039.BackColor = System.Drawing.Color.Transparent;
  1235. this.myTableLayoutPanel1.SetColumnSpan(this.con2039, 4);
  1236. this.con2039.Dock = System.Windows.Forms.DockStyle.Fill;
  1237. this.con2039.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1238. this.con2039.Location = new System.Drawing.Point(611, 474);
  1239. this.con2039.Margin = new System.Windows.Forms.Padding(0);
  1240. this.con2039.Name = "con2039";
  1241. this.myTableLayoutPanel1.SetRowSpan(this.con2039, 2);
  1242. this.con2039.Size = new System.Drawing.Size(52, 20);
  1243. this.con2039.TabIndex = 840;
  1244. //
  1245. // con2034
  1246. //
  1247. this.con2034.BackColor = System.Drawing.Color.Transparent;
  1248. this.myTableLayoutPanel1.SetColumnSpan(this.con2034, 3);
  1249. this.con2034.Dock = System.Windows.Forms.DockStyle.Fill;
  1250. this.con2034.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1251. this.con2034.Location = new System.Drawing.Point(364, 414);
  1252. this.con2034.Margin = new System.Windows.Forms.Padding(0);
  1253. this.con2034.Name = "con2034";
  1254. this.myTableLayoutPanel1.SetRowSpan(this.con2034, 2);
  1255. this.con2034.Size = new System.Drawing.Size(39, 20);
  1256. this.con2034.TabIndex = 834;
  1257. //
  1258. // con2028
  1259. //
  1260. this.con2028.BackColor = System.Drawing.Color.Transparent;
  1261. this.myTableLayoutPanel1.SetColumnSpan(this.con2028, 5);
  1262. this.con2028.Dock = System.Windows.Forms.DockStyle.Fill;
  1263. this.con2028.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1264. this.con2028.Location = new System.Drawing.Point(364, 434);
  1265. this.con2028.Margin = new System.Windows.Forms.Padding(0);
  1266. this.con2028.Name = "con2028";
  1267. this.myTableLayoutPanel1.SetRowSpan(this.con2028, 2);
  1268. this.con2028.Size = new System.Drawing.Size(65, 20);
  1269. this.con2028.TabIndex = 833;
  1270. //
  1271. // con2027
  1272. //
  1273. this.con2027.BackColor = System.Drawing.Color.Transparent;
  1274. this.myTableLayoutPanel1.SetColumnSpan(this.con2027, 3);
  1275. this.con2027.Dock = System.Windows.Forms.DockStyle.Fill;
  1276. this.con2027.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1277. this.con2027.Location = new System.Drawing.Point(208, 394);
  1278. this.con2027.Margin = new System.Windows.Forms.Padding(0);
  1279. this.con2027.Name = "con2027";
  1280. this.myTableLayoutPanel1.SetRowSpan(this.con2027, 2);
  1281. this.con2027.Size = new System.Drawing.Size(39, 20);
  1282. this.con2027.TabIndex = 829;
  1283. //
  1284. // con2022
  1285. //
  1286. this.con2022.BackColor = System.Drawing.Color.Transparent;
  1287. this.myTableLayoutPanel1.SetColumnSpan(this.con2022, 4);
  1288. this.con2022.Dock = System.Windows.Forms.DockStyle.Fill;
  1289. this.con2022.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1290. this.con2022.Location = new System.Drawing.Point(312, 434);
  1291. this.con2022.Margin = new System.Windows.Forms.Padding(0);
  1292. this.con2022.Name = "con2022";
  1293. this.myTableLayoutPanel1.SetRowSpan(this.con2022, 2);
  1294. this.con2022.Size = new System.Drawing.Size(52, 20);
  1295. this.con2022.TabIndex = 828;
  1296. //
  1297. // con2021
  1298. //
  1299. this.con2021.BackColor = System.Drawing.Color.Transparent;
  1300. this.myTableLayoutPanel1.SetColumnSpan(this.con2021, 4);
  1301. this.con2021.Dock = System.Windows.Forms.DockStyle.Fill;
  1302. this.con2021.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1303. this.con2021.Location = new System.Drawing.Point(247, 394);
  1304. this.con2021.Margin = new System.Windows.Forms.Padding(0);
  1305. this.con2021.Name = "con2021";
  1306. this.myTableLayoutPanel1.SetRowSpan(this.con2021, 2);
  1307. this.con2021.Size = new System.Drawing.Size(52, 20);
  1308. this.con2021.TabIndex = 827;
  1309. //
  1310. // tableCellLabel1
  1311. //
  1312. this.tableCellLabel1.BackColor = System.Drawing.Color.Transparent;
  1313. this.tableCellLabel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel1.BackgroundImage")));
  1314. this.tableCellLabel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1315. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel1, 30);
  1316. this.tableCellLabel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1317. this.tableCellLabel1.Location = new System.Drawing.Point(78, 136);
  1318. this.tableCellLabel1.Margin = new System.Windows.Forms.Padding(0);
  1319. this.tableCellLabel1.Name = "tableCellLabel1";
  1320. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel1, 2);
  1321. this.tableCellLabel1.Size = new System.Drawing.Size(390, 20);
  1322. this.tableCellLabel1.TabIndex = 791;
  1323. //
  1324. // tableCellLabel3
  1325. //
  1326. this.tableCellLabel3.BackColor = System.Drawing.Color.Transparent;
  1327. this.tableCellLabel3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel3.BackgroundImage")));
  1328. this.tableCellLabel3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1329. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel3, 16);
  1330. this.tableCellLabel3.Dock = System.Windows.Forms.DockStyle.Fill;
  1331. this.tableCellLabel3.Location = new System.Drawing.Point(676, 136);
  1332. this.tableCellLabel3.Margin = new System.Windows.Forms.Padding(0);
  1333. this.tableCellLabel3.Name = "tableCellLabel3";
  1334. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel3, 2);
  1335. this.tableCellLabel3.Size = new System.Drawing.Size(207, 20);
  1336. this.tableCellLabel3.TabIndex = 780;
  1337. //
  1338. // con2173
  1339. //
  1340. this.myTableLayoutPanel1.SetColumnSpan(this.con2173, 3);
  1341. this.con2173.Dock = System.Windows.Forms.DockStyle.Fill;
  1342. this.con2173.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1343. this.con2173.Location = new System.Drawing.Point(130, 534);
  1344. this.con2173.Margin = new System.Windows.Forms.Padding(0);
  1345. this.con2173.Name = "con2173";
  1346. this.myTableLayoutPanel1.SetRowSpan(this.con2173, 2);
  1347. this.con2173.Size = new System.Drawing.Size(39, 20);
  1348. this.con2173.TabIndex = 775;
  1349. //
  1350. // con2147
  1351. //
  1352. this.con2147.BackColor = System.Drawing.Color.Transparent;
  1353. this.myTableLayoutPanel1.SetColumnSpan(this.con2147, 3);
  1354. this.con2147.Dock = System.Windows.Forms.DockStyle.Fill;
  1355. this.con2147.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1356. this.con2147.Location = new System.Drawing.Point(779, 96);
  1357. this.con2147.Margin = new System.Windows.Forms.Padding(0);
  1358. this.con2147.Name = "con2147";
  1359. this.myTableLayoutPanel1.SetRowSpan(this.con2147, 2);
  1360. this.con2147.Size = new System.Drawing.Size(39, 20);
  1361. this.con2147.TabIndex = 768;
  1362. //
  1363. // con2146
  1364. //
  1365. this.con2146.BackColor = System.Drawing.Color.Transparent;
  1366. this.myTableLayoutPanel1.SetColumnSpan(this.con2146, 5);
  1367. this.con2146.Dock = System.Windows.Forms.DockStyle.Fill;
  1368. this.con2146.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1369. this.con2146.Location = new System.Drawing.Point(818, 96);
  1370. this.con2146.Margin = new System.Windows.Forms.Padding(0);
  1371. this.con2146.Name = "con2146";
  1372. this.myTableLayoutPanel1.SetRowSpan(this.con2146, 2);
  1373. this.con2146.Size = new System.Drawing.Size(65, 20);
  1374. this.con2146.TabIndex = 769;
  1375. //
  1376. // con2148
  1377. //
  1378. this.con2148.BackColor = System.Drawing.Color.Transparent;
  1379. this.myTableLayoutPanel1.SetColumnSpan(this.con2148, 5);
  1380. this.con2148.Dock = System.Windows.Forms.DockStyle.Fill;
  1381. this.con2148.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1382. this.con2148.Location = new System.Drawing.Point(714, 96);
  1383. this.con2148.Margin = new System.Windows.Forms.Padding(0);
  1384. this.con2148.Name = "con2148";
  1385. this.myTableLayoutPanel1.SetRowSpan(this.con2148, 2);
  1386. this.con2148.Size = new System.Drawing.Size(65, 20);
  1387. this.con2148.TabIndex = 770;
  1388. //
  1389. // con2150
  1390. //
  1391. this.con2150.BackColor = System.Drawing.Color.Transparent;
  1392. this.myTableLayoutPanel1.SetColumnSpan(this.con2150, 3);
  1393. this.con2150.Dock = System.Windows.Forms.DockStyle.Fill;
  1394. this.con2150.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1395. this.con2150.Location = new System.Drawing.Point(727, 116);
  1396. this.con2150.Margin = new System.Windows.Forms.Padding(0);
  1397. this.con2150.Name = "con2150";
  1398. this.myTableLayoutPanel1.SetRowSpan(this.con2150, 2);
  1399. this.con2150.Size = new System.Drawing.Size(39, 20);
  1400. this.con2150.TabIndex = 767;
  1401. //
  1402. // con2161
  1403. //
  1404. this.con2161.BackColor = System.Drawing.Color.Transparent;
  1405. this.myTableLayoutPanel1.SetColumnSpan(this.con2161, 3);
  1406. this.con2161.Dock = System.Windows.Forms.DockStyle.Fill;
  1407. this.con2161.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1408. this.con2161.Location = new System.Drawing.Point(364, 156);
  1409. this.con2161.Margin = new System.Windows.Forms.Padding(0);
  1410. this.con2161.Name = "con2161";
  1411. this.myTableLayoutPanel1.SetRowSpan(this.con2161, 2);
  1412. this.con2161.Size = new System.Drawing.Size(39, 20);
  1413. this.con2161.TabIndex = 764;
  1414. //
  1415. // con2104
  1416. //
  1417. this.con2104.BackColor = System.Drawing.Color.Transparent;
  1418. this.myTableLayoutPanel1.SetColumnSpan(this.con2104, 3);
  1419. this.con2104.Dock = System.Windows.Forms.DockStyle.Fill;
  1420. this.con2104.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1421. this.con2104.Location = new System.Drawing.Point(766, 414);
  1422. this.con2104.Margin = new System.Windows.Forms.Padding(0);
  1423. this.con2104.Name = "con2104";
  1424. this.myTableLayoutPanel1.SetRowSpan(this.con2104, 2);
  1425. this.con2104.Size = new System.Drawing.Size(39, 20);
  1426. this.con2104.TabIndex = 716;
  1427. //
  1428. // con2102
  1429. //
  1430. this.con2102.BackColor = System.Drawing.Color.Transparent;
  1431. this.myTableLayoutPanel1.SetColumnSpan(this.con2102, 3);
  1432. this.con2102.Dock = System.Windows.Forms.DockStyle.Fill;
  1433. this.con2102.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1434. this.con2102.Location = new System.Drawing.Point(818, 394);
  1435. this.con2102.Margin = new System.Windows.Forms.Padding(0);
  1436. this.con2102.Name = "con2102";
  1437. this.myTableLayoutPanel1.SetRowSpan(this.con2102, 2);
  1438. this.con2102.Size = new System.Drawing.Size(39, 20);
  1439. this.con2102.TabIndex = 715;
  1440. //
  1441. // con2101
  1442. //
  1443. this.con2101.BackColor = System.Drawing.Color.Transparent;
  1444. this.myTableLayoutPanel1.SetColumnSpan(this.con2101, 3);
  1445. this.con2101.Dock = System.Windows.Forms.DockStyle.Fill;
  1446. this.con2101.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1447. this.con2101.Location = new System.Drawing.Point(714, 394);
  1448. this.con2101.Margin = new System.Windows.Forms.Padding(0);
  1449. this.con2101.Name = "con2101";
  1450. this.myTableLayoutPanel1.SetRowSpan(this.con2101, 2);
  1451. this.con2101.Size = new System.Drawing.Size(39, 20);
  1452. this.con2101.TabIndex = 714;
  1453. //
  1454. // con2103
  1455. //
  1456. this.con2103.BackColor = System.Drawing.Color.Transparent;
  1457. this.myTableLayoutPanel1.SetColumnSpan(this.con2103, 5);
  1458. this.con2103.Dock = System.Windows.Forms.DockStyle.Fill;
  1459. this.con2103.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1460. this.con2103.Location = new System.Drawing.Point(753, 394);
  1461. this.con2103.Margin = new System.Windows.Forms.Padding(0);
  1462. this.con2103.Name = "con2103";
  1463. this.myTableLayoutPanel1.SetRowSpan(this.con2103, 2);
  1464. this.con2103.Size = new System.Drawing.Size(65, 20);
  1465. this.con2103.TabIndex = 712;
  1466. //
  1467. // con2108
  1468. //
  1469. this.con2108.BackColor = System.Drawing.Color.Transparent;
  1470. this.myTableLayoutPanel1.SetColumnSpan(this.con2108, 5);
  1471. this.con2108.Dock = System.Windows.Forms.DockStyle.Fill;
  1472. this.con2108.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1473. this.con2108.Location = new System.Drawing.Point(247, 474);
  1474. this.con2108.Margin = new System.Windows.Forms.Padding(0);
  1475. this.con2108.Name = "con2108";
  1476. this.myTableLayoutPanel1.SetRowSpan(this.con2108, 2);
  1477. this.con2108.Size = new System.Drawing.Size(65, 20);
  1478. this.con2108.TabIndex = 713;
  1479. //
  1480. // con2107
  1481. //
  1482. this.con2107.BackColor = System.Drawing.Color.Transparent;
  1483. this.myTableLayoutPanel1.SetColumnSpan(this.con2107, 5);
  1484. this.con2107.Dock = System.Windows.Forms.DockStyle.Fill;
  1485. this.con2107.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1486. this.con2107.Location = new System.Drawing.Point(766, 474);
  1487. this.con2107.Margin = new System.Windows.Forms.Padding(0);
  1488. this.con2107.Name = "con2107";
  1489. this.myTableLayoutPanel1.SetRowSpan(this.con2107, 2);
  1490. this.con2107.Size = new System.Drawing.Size(65, 20);
  1491. this.con2107.TabIndex = 710;
  1492. //
  1493. // con2106
  1494. //
  1495. this.con2106.BackColor = System.Drawing.Color.Transparent;
  1496. this.myTableLayoutPanel1.SetColumnSpan(this.con2106, 3);
  1497. this.con2106.Dock = System.Windows.Forms.DockStyle.Fill;
  1498. this.con2106.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1499. this.con2106.Location = new System.Drawing.Point(766, 454);
  1500. this.con2106.Margin = new System.Windows.Forms.Padding(0);
  1501. this.con2106.Name = "con2106";
  1502. this.myTableLayoutPanel1.SetRowSpan(this.con2106, 2);
  1503. this.con2106.Size = new System.Drawing.Size(39, 20);
  1504. this.con2106.TabIndex = 711;
  1505. //
  1506. // con2105
  1507. //
  1508. this.con2105.BackColor = System.Drawing.Color.Transparent;
  1509. this.myTableLayoutPanel1.SetColumnSpan(this.con2105, 5);
  1510. this.con2105.Dock = System.Windows.Forms.DockStyle.Fill;
  1511. this.con2105.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1512. this.con2105.Location = new System.Drawing.Point(766, 434);
  1513. this.con2105.Margin = new System.Windows.Forms.Padding(0);
  1514. this.con2105.Name = "con2105";
  1515. this.myTableLayoutPanel1.SetRowSpan(this.con2105, 2);
  1516. this.con2105.Size = new System.Drawing.Size(65, 20);
  1517. this.con2105.TabIndex = 709;
  1518. //
  1519. // con2060
  1520. //
  1521. this.con2060.BackColor = System.Drawing.Color.Transparent;
  1522. this.myTableLayoutPanel1.SetColumnSpan(this.con2060, 3);
  1523. this.con2060.Dock = System.Windows.Forms.DockStyle.Fill;
  1524. this.con2060.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1525. this.con2060.Location = new System.Drawing.Point(559, 494);
  1526. this.con2060.Margin = new System.Windows.Forms.Padding(0);
  1527. this.con2060.Name = "con2060";
  1528. this.myTableLayoutPanel1.SetRowSpan(this.con2060, 2);
  1529. this.con2060.Size = new System.Drawing.Size(39, 20);
  1530. this.con2060.TabIndex = 708;
  1531. //
  1532. // con2079
  1533. //
  1534. this.con2079.BackColor = System.Drawing.Color.Transparent;
  1535. this.myTableLayoutPanel1.SetColumnSpan(this.con2079, 4);
  1536. this.con2079.Dock = System.Windows.Forms.DockStyle.Fill;
  1537. this.con2079.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1538. this.con2079.Location = new System.Drawing.Point(442, 474);
  1539. this.con2079.Margin = new System.Windows.Forms.Padding(0);
  1540. this.con2079.Name = "con2079";
  1541. this.myTableLayoutPanel1.SetRowSpan(this.con2079, 2);
  1542. this.con2079.Size = new System.Drawing.Size(52, 20);
  1543. this.con2079.TabIndex = 705;
  1544. //
  1545. // con2075
  1546. //
  1547. this.con2075.BackColor = System.Drawing.Color.Transparent;
  1548. this.myTableLayoutPanel1.SetColumnSpan(this.con2075, 3);
  1549. this.con2075.Dock = System.Windows.Forms.DockStyle.Fill;
  1550. this.con2075.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1551. this.con2075.Location = new System.Drawing.Point(364, 494);
  1552. this.con2075.Margin = new System.Windows.Forms.Padding(0);
  1553. this.con2075.Name = "con2075";
  1554. this.myTableLayoutPanel1.SetRowSpan(this.con2075, 2);
  1555. this.con2075.Size = new System.Drawing.Size(39, 20);
  1556. this.con2075.TabIndex = 706;
  1557. //
  1558. // con2080
  1559. //
  1560. this.con2080.BackColor = System.Drawing.Color.Transparent;
  1561. this.myTableLayoutPanel1.SetColumnSpan(this.con2080, 3);
  1562. this.con2080.Dock = System.Windows.Forms.DockStyle.Fill;
  1563. this.con2080.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1564. this.con2080.Location = new System.Drawing.Point(455, 514);
  1565. this.con2080.Margin = new System.Windows.Forms.Padding(0);
  1566. this.con2080.Name = "con2080";
  1567. this.myTableLayoutPanel1.SetRowSpan(this.con2080, 2);
  1568. this.con2080.Size = new System.Drawing.Size(39, 20);
  1569. this.con2080.TabIndex = 707;
  1570. //
  1571. // con2074
  1572. //
  1573. this.con2074.BackColor = System.Drawing.Color.Transparent;
  1574. this.myTableLayoutPanel1.SetColumnSpan(this.con2074, 3);
  1575. this.con2074.Dock = System.Windows.Forms.DockStyle.Fill;
  1576. this.con2074.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1577. this.con2074.Location = new System.Drawing.Point(364, 454);
  1578. this.con2074.Margin = new System.Windows.Forms.Padding(0);
  1579. this.con2074.Name = "con2074";
  1580. this.myTableLayoutPanel1.SetRowSpan(this.con2074, 2);
  1581. this.con2074.Size = new System.Drawing.Size(39, 20);
  1582. this.con2074.TabIndex = 702;
  1583. //
  1584. // con2078
  1585. //
  1586. this.con2078.BackColor = System.Drawing.Color.Transparent;
  1587. this.myTableLayoutPanel1.SetColumnSpan(this.con2078, 3);
  1588. this.con2078.Dock = System.Windows.Forms.DockStyle.Fill;
  1589. this.con2078.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1590. this.con2078.Location = new System.Drawing.Point(364, 534);
  1591. this.con2078.Margin = new System.Windows.Forms.Padding(0);
  1592. this.con2078.Name = "con2078";
  1593. this.myTableLayoutPanel1.SetRowSpan(this.con2078, 2);
  1594. this.con2078.Size = new System.Drawing.Size(39, 20);
  1595. this.con2078.TabIndex = 703;
  1596. //
  1597. // con2077
  1598. //
  1599. this.con2077.BackColor = System.Drawing.Color.Transparent;
  1600. this.myTableLayoutPanel1.SetColumnSpan(this.con2077, 3);
  1601. this.con2077.Dock = System.Windows.Forms.DockStyle.Fill;
  1602. this.con2077.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1603. this.con2077.Location = new System.Drawing.Point(364, 514);
  1604. this.con2077.Margin = new System.Windows.Forms.Padding(0);
  1605. this.con2077.Name = "con2077";
  1606. this.myTableLayoutPanel1.SetRowSpan(this.con2077, 2);
  1607. this.con2077.Size = new System.Drawing.Size(39, 20);
  1608. this.con2077.TabIndex = 704;
  1609. //
  1610. // con2325
  1611. //
  1612. this.con2325.BackColor = System.Drawing.Color.Transparent;
  1613. this.myTableLayoutPanel1.SetColumnSpan(this.con2325, 3);
  1614. this.con2325.Dock = System.Windows.Forms.DockStyle.Fill;
  1615. this.con2325.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1616. this.con2325.Location = new System.Drawing.Point(455, 534);
  1617. this.con2325.Margin = new System.Windows.Forms.Padding(0);
  1618. this.con2325.Name = "con2325";
  1619. this.myTableLayoutPanel1.SetRowSpan(this.con2325, 2);
  1620. this.con2325.Size = new System.Drawing.Size(39, 20);
  1621. this.con2325.TabIndex = 699;
  1622. //
  1623. // con2073
  1624. //
  1625. this.con2073.BackColor = System.Drawing.Color.Transparent;
  1626. this.myTableLayoutPanel1.SetColumnSpan(this.con2073, 3);
  1627. this.con2073.Dock = System.Windows.Forms.DockStyle.Fill;
  1628. this.con2073.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1629. this.con2073.Location = new System.Drawing.Point(559, 514);
  1630. this.con2073.Margin = new System.Windows.Forms.Padding(0);
  1631. this.con2073.Name = "con2073";
  1632. this.myTableLayoutPanel1.SetRowSpan(this.con2073, 2);
  1633. this.con2073.Size = new System.Drawing.Size(39, 20);
  1634. this.con2073.TabIndex = 700;
  1635. //
  1636. // con2071
  1637. //
  1638. this.con2071.BackColor = System.Drawing.Color.Transparent;
  1639. this.myTableLayoutPanel1.SetColumnSpan(this.con2071, 3);
  1640. this.con2071.Dock = System.Windows.Forms.DockStyle.Fill;
  1641. this.con2071.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1642. this.con2071.Location = new System.Drawing.Point(260, 454);
  1643. this.con2071.Margin = new System.Windows.Forms.Padding(0);
  1644. this.con2071.Name = "con2071";
  1645. this.myTableLayoutPanel1.SetRowSpan(this.con2071, 2);
  1646. this.con2071.Size = new System.Drawing.Size(39, 20);
  1647. this.con2071.TabIndex = 701;
  1648. //
  1649. // con2072
  1650. //
  1651. this.con2072.BackColor = System.Drawing.Color.Transparent;
  1652. this.myTableLayoutPanel1.SetColumnSpan(this.con2072, 3);
  1653. this.con2072.Dock = System.Windows.Forms.DockStyle.Fill;
  1654. this.con2072.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1655. this.con2072.Location = new System.Drawing.Point(559, 534);
  1656. this.con2072.Margin = new System.Windows.Forms.Padding(0);
  1657. this.con2072.Name = "con2072";
  1658. this.myTableLayoutPanel1.SetRowSpan(this.con2072, 2);
  1659. this.con2072.Size = new System.Drawing.Size(39, 20);
  1660. this.con2072.TabIndex = 696;
  1661. //
  1662. // con2076
  1663. //
  1664. this.con2076.BackColor = System.Drawing.Color.Transparent;
  1665. this.myTableLayoutPanel1.SetColumnSpan(this.con2076, 5);
  1666. this.con2076.Dock = System.Windows.Forms.DockStyle.Fill;
  1667. this.con2076.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1668. this.con2076.Location = new System.Drawing.Point(351, 474);
  1669. this.con2076.Margin = new System.Windows.Forms.Padding(0);
  1670. this.con2076.Name = "con2076";
  1671. this.myTableLayoutPanel1.SetRowSpan(this.con2076, 2);
  1672. this.con2076.Size = new System.Drawing.Size(65, 20);
  1673. this.con2076.TabIndex = 697;
  1674. //
  1675. // con2355
  1676. //
  1677. this.con2355.BackColor = System.Drawing.Color.Transparent;
  1678. this.myTableLayoutPanel1.SetColumnSpan(this.con2355, 2);
  1679. this.con2355.Dock = System.Windows.Forms.DockStyle.Fill;
  1680. this.con2355.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1681. this.con2355.Location = new System.Drawing.Point(520, 474);
  1682. this.con2355.Margin = new System.Windows.Forms.Padding(0);
  1683. this.con2355.Name = "con2355";
  1684. this.myTableLayoutPanel1.SetRowSpan(this.con2355, 2);
  1685. this.con2355.Size = new System.Drawing.Size(26, 20);
  1686. this.con2355.TabIndex = 698;
  1687. //
  1688. // con2037
  1689. //
  1690. this.con2037.BackColor = System.Drawing.Color.Transparent;
  1691. this.myTableLayoutPanel1.SetColumnSpan(this.con2037, 3);
  1692. this.con2037.Dock = System.Windows.Forms.DockStyle.Fill;
  1693. this.con2037.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1694. this.con2037.Location = new System.Drawing.Point(559, 454);
  1695. this.con2037.Margin = new System.Windows.Forms.Padding(0);
  1696. this.con2037.Name = "con2037";
  1697. this.myTableLayoutPanel1.SetRowSpan(this.con2037, 2);
  1698. this.con2037.Size = new System.Drawing.Size(39, 20);
  1699. this.con2037.TabIndex = 693;
  1700. //
  1701. // con2044
  1702. //
  1703. this.con2044.BackColor = System.Drawing.Color.Transparent;
  1704. this.myTableLayoutPanel1.SetColumnSpan(this.con2044, 4);
  1705. this.con2044.Dock = System.Windows.Forms.DockStyle.Fill;
  1706. this.con2044.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1707. this.con2044.Location = new System.Drawing.Point(663, 474);
  1708. this.con2044.Margin = new System.Windows.Forms.Padding(0);
  1709. this.con2044.Name = "con2044";
  1710. this.myTableLayoutPanel1.SetRowSpan(this.con2044, 2);
  1711. this.con2044.Size = new System.Drawing.Size(51, 20);
  1712. this.con2044.TabIndex = 694;
  1713. //
  1714. // con2046
  1715. //
  1716. this.con2046.BackColor = System.Drawing.Color.Transparent;
  1717. this.myTableLayoutPanel1.SetColumnSpan(this.con2046, 4);
  1718. this.con2046.Dock = System.Windows.Forms.DockStyle.Fill;
  1719. this.con2046.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1720. this.con2046.Location = new System.Drawing.Point(714, 474);
  1721. this.con2046.Margin = new System.Windows.Forms.Padding(0);
  1722. this.con2046.Name = "con2046";
  1723. this.myTableLayoutPanel1.SetRowSpan(this.con2046, 2);
  1724. this.con2046.Size = new System.Drawing.Size(52, 20);
  1725. this.con2046.TabIndex = 695;
  1726. //
  1727. // con2031
  1728. //
  1729. this.con2031.BackColor = System.Drawing.Color.Transparent;
  1730. this.myTableLayoutPanel1.SetColumnSpan(this.con2031, 3);
  1731. this.con2031.Dock = System.Windows.Forms.DockStyle.Fill;
  1732. this.con2031.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1733. this.con2031.Location = new System.Drawing.Point(507, 434);
  1734. this.con2031.Margin = new System.Windows.Forms.Padding(0);
  1735. this.con2031.Name = "con2031";
  1736. this.myTableLayoutPanel1.SetRowSpan(this.con2031, 2);
  1737. this.con2031.Size = new System.Drawing.Size(39, 20);
  1738. this.con2031.TabIndex = 690;
  1739. //
  1740. // con2029
  1741. //
  1742. this.con2029.BackColor = System.Drawing.Color.Transparent;
  1743. this.myTableLayoutPanel1.SetColumnSpan(this.con2029, 3);
  1744. this.con2029.Dock = System.Windows.Forms.DockStyle.Fill;
  1745. this.con2029.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1746. this.con2029.Location = new System.Drawing.Point(468, 434);
  1747. this.con2029.Margin = new System.Windows.Forms.Padding(0);
  1748. this.con2029.Name = "con2029";
  1749. this.myTableLayoutPanel1.SetRowSpan(this.con2029, 2);
  1750. this.con2029.Size = new System.Drawing.Size(39, 20);
  1751. this.con2029.TabIndex = 691;
  1752. //
  1753. // con2036
  1754. //
  1755. this.con2036.BackColor = System.Drawing.Color.Transparent;
  1756. this.myTableLayoutPanel1.SetColumnSpan(this.con2036, 5);
  1757. this.con2036.Dock = System.Windows.Forms.DockStyle.Fill;
  1758. this.con2036.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1759. this.con2036.Location = new System.Drawing.Point(546, 474);
  1760. this.con2036.Margin = new System.Windows.Forms.Padding(0);
  1761. this.con2036.Name = "con2036";
  1762. this.myTableLayoutPanel1.SetRowSpan(this.con2036, 2);
  1763. this.con2036.Size = new System.Drawing.Size(65, 20);
  1764. this.con2036.TabIndex = 692;
  1765. //
  1766. // con2017
  1767. //
  1768. this.con2017.BackColor = System.Drawing.Color.Transparent;
  1769. this.myTableLayoutPanel1.SetColumnSpan(this.con2017, 5);
  1770. this.con2017.Dock = System.Windows.Forms.DockStyle.Fill;
  1771. this.con2017.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1772. this.con2017.Location = new System.Drawing.Point(247, 434);
  1773. this.con2017.Margin = new System.Windows.Forms.Padding(0);
  1774. this.con2017.Name = "con2017";
  1775. this.myTableLayoutPanel1.SetRowSpan(this.con2017, 2);
  1776. this.con2017.Size = new System.Drawing.Size(65, 20);
  1777. this.con2017.TabIndex = 687;
  1778. //
  1779. // con2019
  1780. //
  1781. this.con2019.BackColor = System.Drawing.Color.Transparent;
  1782. this.myTableLayoutPanel1.SetColumnSpan(this.con2019, 3);
  1783. this.con2019.Dock = System.Windows.Forms.DockStyle.Fill;
  1784. this.con2019.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1785. this.con2019.Location = new System.Drawing.Point(260, 414);
  1786. this.con2019.Margin = new System.Windows.Forms.Padding(0);
  1787. this.con2019.Name = "con2019";
  1788. this.myTableLayoutPanel1.SetRowSpan(this.con2019, 2);
  1789. this.con2019.Size = new System.Drawing.Size(39, 20);
  1790. this.con2019.TabIndex = 688;
  1791. //
  1792. // con2024
  1793. //
  1794. this.con2024.BackColor = System.Drawing.Color.Transparent;
  1795. this.myTableLayoutPanel1.SetColumnSpan(this.con2024, 3);
  1796. this.con2024.Dock = System.Windows.Forms.DockStyle.Fill;
  1797. this.con2024.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1798. this.con2024.Location = new System.Drawing.Point(429, 434);
  1799. this.con2024.Margin = new System.Windows.Forms.Padding(0);
  1800. this.con2024.Name = "con2024";
  1801. this.myTableLayoutPanel1.SetRowSpan(this.con2024, 2);
  1802. this.con2024.Size = new System.Drawing.Size(39, 20);
  1803. this.con2024.TabIndex = 689;
  1804. //
  1805. // con2324
  1806. //
  1807. this.con2324.BackColor = System.Drawing.Color.Transparent;
  1808. this.myTableLayoutPanel1.SetColumnSpan(this.con2324, 3);
  1809. this.con2324.Dock = System.Windows.Forms.DockStyle.Fill;
  1810. this.con2324.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1811. this.con2324.Location = new System.Drawing.Point(455, 494);
  1812. this.con2324.Margin = new System.Windows.Forms.Padding(0);
  1813. this.con2324.Name = "con2324";
  1814. this.myTableLayoutPanel1.SetRowSpan(this.con2324, 2);
  1815. this.con2324.Size = new System.Drawing.Size(39, 20);
  1816. this.con2324.TabIndex = 684;
  1817. //
  1818. // con2353
  1819. //
  1820. this.con2353.BackColor = System.Drawing.Color.Transparent;
  1821. this.myTableLayoutPanel1.SetColumnSpan(this.con2353, 2);
  1822. this.con2353.Dock = System.Windows.Forms.DockStyle.Fill;
  1823. this.con2353.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1824. this.con2353.Location = new System.Drawing.Point(416, 474);
  1825. this.con2353.Margin = new System.Windows.Forms.Padding(0);
  1826. this.con2353.Name = "con2353";
  1827. this.myTableLayoutPanel1.SetRowSpan(this.con2353, 2);
  1828. this.con2353.Size = new System.Drawing.Size(26, 20);
  1829. this.con2353.TabIndex = 685;
  1830. //
  1831. // con2016
  1832. //
  1833. this.con2016.BackColor = System.Drawing.Color.Transparent;
  1834. this.myTableLayoutPanel1.SetColumnSpan(this.con2016, 2);
  1835. this.con2016.Dock = System.Windows.Forms.DockStyle.Fill;
  1836. this.con2016.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1837. this.con2016.Location = new System.Drawing.Point(494, 474);
  1838. this.con2016.Margin = new System.Windows.Forms.Padding(0);
  1839. this.con2016.Name = "con2016";
  1840. this.myTableLayoutPanel1.SetRowSpan(this.con2016, 2);
  1841. this.con2016.Size = new System.Drawing.Size(26, 20);
  1842. this.con2016.TabIndex = 686;
  1843. //
  1844. // locationPos37
  1845. //
  1846. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos37, 3);
  1847. this.locationPos37.Dock = System.Windows.Forms.DockStyle.Fill;
  1848. this.locationPos37.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1849. this.locationPos37.Location = new System.Drawing.Point(234, 196);
  1850. this.locationPos37.Margin = new System.Windows.Forms.Padding(0);
  1851. this.locationPos37.Name = "locationPos37";
  1852. this.myTableLayoutPanel1.SetRowSpan(this.locationPos37, 20);
  1853. this.locationPos37.Size = new System.Drawing.Size(39, 198);
  1854. this.locationPos37.TabIndex = 678;
  1855. //
  1856. // con2011
  1857. //
  1858. this.con2011.BackColor = System.Drawing.Color.Transparent;
  1859. this.myTableLayoutPanel1.SetColumnSpan(this.con2011, 5);
  1860. this.con2011.Dock = System.Windows.Forms.DockStyle.Fill;
  1861. this.con2011.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1862. this.con2011.Location = new System.Drawing.Point(234, 176);
  1863. this.con2011.Margin = new System.Windows.Forms.Padding(0);
  1864. this.con2011.Name = "con2011";
  1865. this.myTableLayoutPanel1.SetRowSpan(this.con2011, 2);
  1866. this.con2011.Size = new System.Drawing.Size(65, 20);
  1867. this.con2011.TabIndex = 652;
  1868. //
  1869. // con2302
  1870. //
  1871. this.con2302.BackColor = System.Drawing.Color.Transparent;
  1872. this.myTableLayoutPanel1.SetColumnSpan(this.con2302, 5);
  1873. this.con2302.Dock = System.Windows.Forms.DockStyle.Fill;
  1874. this.con2302.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1875. this.con2302.Location = new System.Drawing.Point(611, 96);
  1876. this.con2302.Margin = new System.Windows.Forms.Padding(0);
  1877. this.con2302.Name = "con2302";
  1878. this.myTableLayoutPanel1.SetRowSpan(this.con2302, 2);
  1879. this.con2302.Size = new System.Drawing.Size(65, 20);
  1880. this.con2302.TabIndex = 635;
  1881. //
  1882. // label33
  1883. //
  1884. this.label33.AutoSize = true;
  1885. this.label33.BackColor = System.Drawing.Color.Lime;
  1886. this.myTableLayoutPanel1.SetColumnSpan(this.label33, 3);
  1887. this.label33.Dock = System.Windows.Forms.DockStyle.Fill;
  1888. this.label33.Location = new System.Drawing.Point(1407, 226);
  1889. this.label33.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1890. this.label33.Name = "label33";
  1891. this.myTableLayoutPanel1.SetRowSpan(this.label33, 2);
  1892. this.label33.Size = new System.Drawing.Size(31, 20);
  1893. this.label33.TabIndex = 633;
  1894. this.label33.Text = "入";
  1895. this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1896. //
  1897. // tableCellLabel31
  1898. //
  1899. this.tableCellLabel31.BackColor = System.Drawing.Color.Transparent;
  1900. this.tableCellLabel31.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel31.BackgroundImage")));
  1901. this.tableCellLabel31.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1902. this.tableCellLabel31.Dock = System.Windows.Forms.DockStyle.Fill;
  1903. this.tableCellLabel31.Location = new System.Drawing.Point(221, 196);
  1904. this.tableCellLabel31.Margin = new System.Windows.Forms.Padding(0);
  1905. this.tableCellLabel31.Name = "tableCellLabel31";
  1906. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel31, 20);
  1907. this.tableCellLabel31.Size = new System.Drawing.Size(13, 198);
  1908. this.tableCellLabel31.TabIndex = 436;
  1909. //
  1910. // locationPos38
  1911. //
  1912. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos38, 3);
  1913. this.locationPos38.Dock = System.Windows.Forms.DockStyle.Fill;
  1914. this.locationPos38.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1915. this.locationPos38.Location = new System.Drawing.Point(286, 196);
  1916. this.locationPos38.Margin = new System.Windows.Forms.Padding(0);
  1917. this.locationPos38.Name = "locationPos38";
  1918. this.myTableLayoutPanel1.SetRowSpan(this.locationPos38, 20);
  1919. this.locationPos38.Size = new System.Drawing.Size(39, 198);
  1920. this.locationPos38.TabIndex = 18;
  1921. //
  1922. // locationPos49
  1923. //
  1924. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos49, 3);
  1925. this.locationPos49.Dock = System.Windows.Forms.DockStyle.Fill;
  1926. this.locationPos49.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1927. this.locationPos49.Location = new System.Drawing.Point(182, 196);
  1928. this.locationPos49.Margin = new System.Windows.Forms.Padding(0);
  1929. this.locationPos49.Name = "locationPos49";
  1930. this.myTableLayoutPanel1.SetRowSpan(this.locationPos49, 20);
  1931. this.locationPos49.Size = new System.Drawing.Size(39, 198);
  1932. this.locationPos49.TabIndex = 474;
  1933. //
  1934. // locationPos53
  1935. //
  1936. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos53, 3);
  1937. this.locationPos53.Dock = System.Windows.Forms.DockStyle.Fill;
  1938. this.locationPos53.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1939. this.locationPos53.Location = new System.Drawing.Point(130, 196);
  1940. this.locationPos53.Margin = new System.Windows.Forms.Padding(0);
  1941. this.locationPos53.Name = "locationPos53";
  1942. this.myTableLayoutPanel1.SetRowSpan(this.locationPos53, 20);
  1943. this.locationPos53.Size = new System.Drawing.Size(39, 198);
  1944. this.locationPos53.TabIndex = 476;
  1945. //
  1946. // srm15
  1947. //
  1948. this.srm15.BackColor = System.Drawing.Color.Transparent;
  1949. this.srm15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm15.BackgroundImage")));
  1950. this.srm15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1951. this.srm15.Dock = System.Windows.Forms.DockStyle.Fill;
  1952. this.srm15.Location = new System.Drawing.Point(117, 196);
  1953. this.srm15.Margin = new System.Windows.Forms.Padding(0);
  1954. this.srm15.Name = "srm15";
  1955. this.myTableLayoutPanel1.SetRowSpan(this.srm15, 20);
  1956. this.srm15.Size = new System.Drawing.Size(13, 198);
  1957. this.srm15.TabIndex = 478;
  1958. //
  1959. // locationPos55
  1960. //
  1961. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos55, 3);
  1962. this.locationPos55.Dock = System.Windows.Forms.DockStyle.Fill;
  1963. this.locationPos55.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1964. this.locationPos55.Location = new System.Drawing.Point(78, 196);
  1965. this.locationPos55.Margin = new System.Windows.Forms.Padding(0);
  1966. this.locationPos55.Name = "locationPos55";
  1967. this.myTableLayoutPanel1.SetRowSpan(this.locationPos55, 20);
  1968. this.locationPos55.Size = new System.Drawing.Size(39, 198);
  1969. this.locationPos55.TabIndex = 479;
  1970. //
  1971. // con2308
  1972. //
  1973. this.con2308.BackColor = System.Drawing.Color.Transparent;
  1974. this.myTableLayoutPanel1.SetColumnSpan(this.con2308, 5);
  1975. this.con2308.Dock = System.Windows.Forms.DockStyle.Fill;
  1976. this.con2308.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1977. this.con2308.Location = new System.Drawing.Point(234, 156);
  1978. this.con2308.Margin = new System.Windows.Forms.Padding(0);
  1979. this.con2308.Name = "con2308";
  1980. this.myTableLayoutPanel1.SetRowSpan(this.con2308, 2);
  1981. this.con2308.Size = new System.Drawing.Size(65, 20);
  1982. this.con2308.TabIndex = 630;
  1983. //
  1984. // con2280
  1985. //
  1986. this.con2280.BackColor = System.Drawing.Color.Transparent;
  1987. this.myTableLayoutPanel1.SetColumnSpan(this.con2280, 3);
  1988. this.con2280.Dock = System.Windows.Forms.DockStyle.Fill;
  1989. this.con2280.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1990. this.con2280.Location = new System.Drawing.Point(312, 474);
  1991. this.con2280.Margin = new System.Windows.Forms.Padding(0);
  1992. this.con2280.Name = "con2280";
  1993. this.myTableLayoutPanel1.SetRowSpan(this.con2280, 2);
  1994. this.con2280.Size = new System.Drawing.Size(39, 20);
  1995. this.con2280.TabIndex = 857;
  1996. //
  1997. // con2035
  1998. //
  1999. this.con2035.BackColor = System.Drawing.Color.Transparent;
  2000. this.myTableLayoutPanel1.SetColumnSpan(this.con2035, 3);
  2001. this.con2035.Dock = System.Windows.Forms.DockStyle.Fill;
  2002. this.con2035.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2003. this.con2035.Location = new System.Drawing.Point(312, 394);
  2004. this.con2035.Margin = new System.Windows.Forms.Padding(0);
  2005. this.con2035.Name = "con2035";
  2006. this.myTableLayoutPanel1.SetRowSpan(this.con2035, 2);
  2007. this.con2035.Size = new System.Drawing.Size(39, 20);
  2008. this.con2035.TabIndex = 838;
  2009. this.con2035.Load += new System.EventHandler(this.con2035_Load);
  2010. //
  2011. // srm14
  2012. //
  2013. this.srm14.BackColor = System.Drawing.Color.Transparent;
  2014. this.srm14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm14.BackgroundImage")));
  2015. this.srm14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2016. this.srm14.Dock = System.Windows.Forms.DockStyle.Fill;
  2017. this.srm14.Location = new System.Drawing.Point(325, 196);
  2018. this.srm14.Margin = new System.Windows.Forms.Padding(0);
  2019. this.srm14.Name = "srm14";
  2020. this.myTableLayoutPanel1.SetRowSpan(this.srm14, 20);
  2021. this.srm14.Size = new System.Drawing.Size(13, 198);
  2022. this.srm14.TabIndex = 475;
  2023. //
  2024. // locationPos48
  2025. //
  2026. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos48, 3);
  2027. this.locationPos48.Dock = System.Windows.Forms.DockStyle.Fill;
  2028. this.locationPos48.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2029. this.locationPos48.Location = new System.Drawing.Point(338, 196);
  2030. this.locationPos48.Margin = new System.Windows.Forms.Padding(0);
  2031. this.locationPos48.Name = "locationPos48";
  2032. this.myTableLayoutPanel1.SetRowSpan(this.locationPos48, 20);
  2033. this.locationPos48.Size = new System.Drawing.Size(39, 198);
  2034. this.locationPos48.TabIndex = 473;
  2035. //
  2036. // locationPos36
  2037. //
  2038. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos36, 3);
  2039. this.locationPos36.Dock = System.Windows.Forms.DockStyle.Fill;
  2040. this.locationPos36.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2041. this.locationPos36.Location = new System.Drawing.Point(390, 196);
  2042. this.locationPos36.Margin = new System.Windows.Forms.Padding(0);
  2043. this.locationPos36.Name = "locationPos36";
  2044. this.myTableLayoutPanel1.SetRowSpan(this.locationPos36, 20);
  2045. this.locationPos36.Size = new System.Drawing.Size(39, 198);
  2046. this.locationPos36.TabIndex = 679;
  2047. //
  2048. // con2042
  2049. //
  2050. this.con2042.BackColor = System.Drawing.Color.Transparent;
  2051. this.myTableLayoutPanel1.SetColumnSpan(this.con2042, 3);
  2052. this.con2042.Dock = System.Windows.Forms.DockStyle.Fill;
  2053. this.con2042.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2054. this.con2042.Location = new System.Drawing.Point(416, 394);
  2055. this.con2042.Margin = new System.Windows.Forms.Padding(0);
  2056. this.con2042.Name = "con2042";
  2057. this.myTableLayoutPanel1.SetRowSpan(this.con2042, 2);
  2058. this.con2042.Size = new System.Drawing.Size(39, 20);
  2059. this.con2042.TabIndex = 839;
  2060. //
  2061. // con2041
  2062. //
  2063. this.con2041.BackColor = System.Drawing.Color.Transparent;
  2064. this.myTableLayoutPanel1.SetColumnSpan(this.con2041, 5);
  2065. this.con2041.Dock = System.Windows.Forms.DockStyle.Fill;
  2066. this.con2041.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2067. this.con2041.Location = new System.Drawing.Point(351, 394);
  2068. this.con2041.Margin = new System.Windows.Forms.Padding(0);
  2069. this.con2041.Name = "con2041";
  2070. this.myTableLayoutPanel1.SetRowSpan(this.con2041, 2);
  2071. this.con2041.Size = new System.Drawing.Size(65, 20);
  2072. this.con2041.TabIndex = 841;
  2073. //
  2074. // tableCellLabel30
  2075. //
  2076. this.tableCellLabel30.BackColor = System.Drawing.Color.Transparent;
  2077. this.tableCellLabel30.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel30.BackgroundImage")));
  2078. this.tableCellLabel30.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2079. this.tableCellLabel30.Dock = System.Windows.Forms.DockStyle.Fill;
  2080. this.tableCellLabel30.Location = new System.Drawing.Point(429, 196);
  2081. this.tableCellLabel30.Margin = new System.Windows.Forms.Padding(0);
  2082. this.tableCellLabel30.Name = "tableCellLabel30";
  2083. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel30, 20);
  2084. this.tableCellLabel30.Size = new System.Drawing.Size(13, 198);
  2085. this.tableCellLabel30.TabIndex = 680;
  2086. //
  2087. // locationPos47
  2088. //
  2089. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos47, 3);
  2090. this.locationPos47.Dock = System.Windows.Forms.DockStyle.Fill;
  2091. this.locationPos47.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2092. this.locationPos47.Location = new System.Drawing.Point(442, 196);
  2093. this.locationPos47.Margin = new System.Windows.Forms.Padding(0);
  2094. this.locationPos47.Name = "locationPos47";
  2095. this.myTableLayoutPanel1.SetRowSpan(this.locationPos47, 20);
  2096. this.locationPos47.Size = new System.Drawing.Size(39, 198);
  2097. this.locationPos47.TabIndex = 471;
  2098. //
  2099. // con2277
  2100. //
  2101. this.con2277.BackColor = System.Drawing.Color.Transparent;
  2102. this.myTableLayoutPanel1.SetColumnSpan(this.con2277, 3);
  2103. this.con2277.Dock = System.Windows.Forms.DockStyle.Fill;
  2104. this.con2277.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2105. this.con2277.Location = new System.Drawing.Point(260, 494);
  2106. this.con2277.Margin = new System.Windows.Forms.Padding(0);
  2107. this.con2277.Name = "con2277";
  2108. this.myTableLayoutPanel1.SetRowSpan(this.con2277, 2);
  2109. this.con2277.Size = new System.Drawing.Size(39, 20);
  2110. this.con2277.TabIndex = 860;
  2111. //
  2112. // con2049
  2113. //
  2114. this.con2049.BackColor = System.Drawing.Color.Transparent;
  2115. this.myTableLayoutPanel1.SetColumnSpan(this.con2049, 5);
  2116. this.con2049.Dock = System.Windows.Forms.DockStyle.Fill;
  2117. this.con2049.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2118. this.con2049.Location = new System.Drawing.Point(546, 434);
  2119. this.con2049.Margin = new System.Windows.Forms.Padding(0);
  2120. this.con2049.Name = "con2049";
  2121. this.myTableLayoutPanel1.SetRowSpan(this.con2049, 2);
  2122. this.con2049.Size = new System.Drawing.Size(65, 20);
  2123. this.con2049.TabIndex = 842;
  2124. //
  2125. // con2050
  2126. //
  2127. this.con2050.BackColor = System.Drawing.Color.Transparent;
  2128. this.myTableLayoutPanel1.SetColumnSpan(this.con2050, 3);
  2129. this.con2050.Dock = System.Windows.Forms.DockStyle.Fill;
  2130. this.con2050.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2131. this.con2050.Location = new System.Drawing.Point(507, 394);
  2132. this.con2050.Margin = new System.Windows.Forms.Padding(0);
  2133. this.con2050.Name = "con2050";
  2134. this.myTableLayoutPanel1.SetRowSpan(this.con2050, 2);
  2135. this.con2050.Size = new System.Drawing.Size(39, 20);
  2136. this.con2050.TabIndex = 846;
  2137. //
  2138. // locationPos45
  2139. //
  2140. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos45, 3);
  2141. this.locationPos45.Dock = System.Windows.Forms.DockStyle.Fill;
  2142. this.locationPos45.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2143. this.locationPos45.Location = new System.Drawing.Point(481, 196);
  2144. this.locationPos45.Margin = new System.Windows.Forms.Padding(0);
  2145. this.locationPos45.Name = "locationPos45";
  2146. this.myTableLayoutPanel1.SetRowSpan(this.locationPos45, 20);
  2147. this.locationPos45.Size = new System.Drawing.Size(39, 198);
  2148. this.locationPos45.TabIndex = 468;
  2149. //
  2150. // con2281
  2151. //
  2152. this.con2281.BackColor = System.Drawing.Color.Transparent;
  2153. this.myTableLayoutPanel1.SetColumnSpan(this.con2281, 3);
  2154. this.con2281.Dock = System.Windows.Forms.DockStyle.Fill;
  2155. this.con2281.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2156. this.con2281.Location = new System.Drawing.Point(260, 514);
  2157. this.con2281.Margin = new System.Windows.Forms.Padding(0);
  2158. this.con2281.Name = "con2281";
  2159. this.myTableLayoutPanel1.SetRowSpan(this.con2281, 2);
  2160. this.con2281.Size = new System.Drawing.Size(39, 20);
  2161. this.con2281.TabIndex = 870;
  2162. //
  2163. // srm13
  2164. //
  2165. this.srm13.BackColor = System.Drawing.Color.Transparent;
  2166. this.srm13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm13.BackgroundImage")));
  2167. this.srm13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2168. this.srm13.Dock = System.Windows.Forms.DockStyle.Fill;
  2169. this.srm13.Location = new System.Drawing.Point(520, 196);
  2170. this.srm13.Margin = new System.Windows.Forms.Padding(0);
  2171. this.srm13.Name = "srm13";
  2172. this.myTableLayoutPanel1.SetRowSpan(this.srm13, 20);
  2173. this.srm13.Size = new System.Drawing.Size(13, 198);
  2174. this.srm13.TabIndex = 472;
  2175. //
  2176. // locationPos46
  2177. //
  2178. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos46, 3);
  2179. this.locationPos46.Dock = System.Windows.Forms.DockStyle.Fill;
  2180. this.locationPos46.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2181. this.locationPos46.Location = new System.Drawing.Point(533, 196);
  2182. this.locationPos46.Margin = new System.Windows.Forms.Padding(0);
  2183. this.locationPos46.Name = "locationPos46";
  2184. this.myTableLayoutPanel1.SetRowSpan(this.locationPos46, 20);
  2185. this.locationPos46.Size = new System.Drawing.Size(39, 198);
  2186. this.locationPos46.TabIndex = 470;
  2187. //
  2188. // con2276
  2189. //
  2190. this.con2276.BackColor = System.Drawing.Color.Transparent;
  2191. this.myTableLayoutPanel1.SetColumnSpan(this.con2276, 3);
  2192. this.con2276.Dock = System.Windows.Forms.DockStyle.Fill;
  2193. this.con2276.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2194. this.con2276.Location = new System.Drawing.Point(260, 534);
  2195. this.con2276.Margin = new System.Windows.Forms.Padding(0);
  2196. this.con2276.Name = "con2276";
  2197. this.myTableLayoutPanel1.SetRowSpan(this.con2276, 2);
  2198. this.con2276.Size = new System.Drawing.Size(39, 20);
  2199. this.con2276.TabIndex = 861;
  2200. //
  2201. // con2056
  2202. //
  2203. this.con2056.BackColor = System.Drawing.Color.Transparent;
  2204. this.myTableLayoutPanel1.SetColumnSpan(this.con2056, 5);
  2205. this.con2056.Dock = System.Windows.Forms.DockStyle.Fill;
  2206. this.con2056.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2207. this.con2056.Location = new System.Drawing.Point(546, 394);
  2208. this.con2056.Margin = new System.Windows.Forms.Padding(0);
  2209. this.con2056.Name = "con2056";
  2210. this.myTableLayoutPanel1.SetRowSpan(this.con2056, 2);
  2211. this.con2056.Size = new System.Drawing.Size(65, 20);
  2212. this.con2056.TabIndex = 848;
  2213. //
  2214. // locationPos42
  2215. //
  2216. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos42, 3);
  2217. this.locationPos42.Dock = System.Windows.Forms.DockStyle.Fill;
  2218. this.locationPos42.Location = new System.Drawing.Point(585, 196);
  2219. this.locationPos42.Margin = new System.Windows.Forms.Padding(0);
  2220. this.locationPos42.Name = "locationPos42";
  2221. this.myTableLayoutPanel1.SetRowSpan(this.locationPos42, 20);
  2222. this.locationPos42.Size = new System.Drawing.Size(39, 198);
  2223. this.locationPos42.TabIndex = 464;
  2224. //
  2225. // con2057
  2226. //
  2227. this.con2057.BackColor = System.Drawing.Color.Transparent;
  2228. this.myTableLayoutPanel1.SetColumnSpan(this.con2057, 3);
  2229. this.con2057.Dock = System.Windows.Forms.DockStyle.Fill;
  2230. this.con2057.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2231. this.con2057.Location = new System.Drawing.Point(611, 394);
  2232. this.con2057.Margin = new System.Windows.Forms.Padding(0);
  2233. this.con2057.Name = "con2057";
  2234. this.myTableLayoutPanel1.SetRowSpan(this.con2057, 2);
  2235. this.con2057.Size = new System.Drawing.Size(39, 20);
  2236. this.con2057.TabIndex = 852;
  2237. //
  2238. // con2275
  2239. //
  2240. this.con2275.BackColor = System.Drawing.Color.Transparent;
  2241. this.myTableLayoutPanel1.SetColumnSpan(this.con2275, 3);
  2242. this.con2275.Dock = System.Windows.Forms.DockStyle.Fill;
  2243. this.con2275.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2244. this.con2275.Location = new System.Drawing.Point(714, 176);
  2245. this.con2275.Margin = new System.Windows.Forms.Padding(0);
  2246. this.con2275.Name = "con2275";
  2247. this.myTableLayoutPanel1.SetRowSpan(this.con2275, 2);
  2248. this.con2275.Size = new System.Drawing.Size(39, 20);
  2249. this.con2275.TabIndex = 862;
  2250. //
  2251. // tableCellLabel29
  2252. //
  2253. this.tableCellLabel29.BackColor = System.Drawing.Color.Transparent;
  2254. this.tableCellLabel29.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel29.BackgroundImage")));
  2255. this.tableCellLabel29.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2256. this.tableCellLabel29.Dock = System.Windows.Forms.DockStyle.Fill;
  2257. this.tableCellLabel29.Location = new System.Drawing.Point(624, 196);
  2258. this.tableCellLabel29.Margin = new System.Windows.Forms.Padding(0);
  2259. this.tableCellLabel29.Name = "tableCellLabel29";
  2260. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel29, 20);
  2261. this.tableCellLabel29.Size = new System.Drawing.Size(13, 198);
  2262. this.tableCellLabel29.TabIndex = 681;
  2263. //
  2264. // locationPos54
  2265. //
  2266. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos54, 3);
  2267. this.locationPos54.Dock = System.Windows.Forms.DockStyle.Fill;
  2268. this.locationPos54.Location = new System.Drawing.Point(637, 196);
  2269. this.locationPos54.Margin = new System.Windows.Forms.Padding(0);
  2270. this.locationPos54.Name = "locationPos54";
  2271. this.myTableLayoutPanel1.SetRowSpan(this.locationPos54, 20);
  2272. this.locationPos54.Size = new System.Drawing.Size(39, 198);
  2273. this.locationPos54.TabIndex = 477;
  2274. //
  2275. // con2062
  2276. //
  2277. this.con2062.BackColor = System.Drawing.Color.Transparent;
  2278. this.myTableLayoutPanel1.SetColumnSpan(this.con2062, 3);
  2279. this.con2062.Dock = System.Windows.Forms.DockStyle.Fill;
  2280. this.con2062.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2281. this.con2062.Location = new System.Drawing.Point(559, 414);
  2282. this.con2062.Margin = new System.Windows.Forms.Padding(0);
  2283. this.con2062.Name = "con2062";
  2284. this.myTableLayoutPanel1.SetRowSpan(this.con2062, 2);
  2285. this.con2062.Size = new System.Drawing.Size(39, 20);
  2286. this.con2062.TabIndex = 855;
  2287. //
  2288. // con2263
  2289. //
  2290. this.myTableLayoutPanel1.SetColumnSpan(this.con2263, 3);
  2291. this.con2263.Dock = System.Windows.Forms.DockStyle.Fill;
  2292. this.con2263.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2293. this.con2263.Location = new System.Drawing.Point(559, 156);
  2294. this.con2263.Margin = new System.Windows.Forms.Padding(0);
  2295. this.con2263.Name = "con2263";
  2296. this.myTableLayoutPanel1.SetRowSpan(this.con2263, 2);
  2297. this.con2263.Size = new System.Drawing.Size(39, 20);
  2298. this.con2263.TabIndex = 819;
  2299. //
  2300. // con2201
  2301. //
  2302. this.myTableLayoutPanel1.SetColumnSpan(this.con2201, 3);
  2303. this.con2201.Dock = System.Windows.Forms.DockStyle.Fill;
  2304. this.con2201.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2305. this.con2201.Location = new System.Drawing.Point(130, 514);
  2306. this.con2201.Margin = new System.Windows.Forms.Padding(0);
  2307. this.con2201.Name = "con2201";
  2308. this.myTableLayoutPanel1.SetRowSpan(this.con2201, 2);
  2309. this.con2201.Size = new System.Drawing.Size(39, 20);
  2310. this.con2201.TabIndex = 801;
  2311. //
  2312. // con2364
  2313. //
  2314. this.con2364.BackColor = System.Drawing.Color.Transparent;
  2315. this.myTableLayoutPanel1.SetColumnSpan(this.con2364, 3);
  2316. this.con2364.Dock = System.Windows.Forms.DockStyle.Fill;
  2317. this.con2364.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2318. this.con2364.Location = new System.Drawing.Point(611, 176);
  2319. this.con2364.Margin = new System.Windows.Forms.Padding(0);
  2320. this.con2364.Name = "con2364";
  2321. this.myTableLayoutPanel1.SetRowSpan(this.con2364, 2);
  2322. this.con2364.Size = new System.Drawing.Size(39, 20);
  2323. this.con2364.TabIndex = 723;
  2324. //
  2325. // con2362
  2326. //
  2327. this.con2362.BackColor = System.Drawing.Color.Transparent;
  2328. this.myTableLayoutPanel1.SetColumnSpan(this.con2362, 3);
  2329. this.con2362.Dock = System.Windows.Forms.DockStyle.Fill;
  2330. this.con2362.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2331. this.con2362.Location = new System.Drawing.Point(507, 176);
  2332. this.con2362.Margin = new System.Windows.Forms.Padding(0);
  2333. this.con2362.Name = "con2362";
  2334. this.myTableLayoutPanel1.SetRowSpan(this.con2362, 2);
  2335. this.con2362.Size = new System.Drawing.Size(39, 20);
  2336. this.con2362.TabIndex = 722;
  2337. //
  2338. // con2360
  2339. //
  2340. this.myTableLayoutPanel1.SetColumnSpan(this.con2360, 3);
  2341. this.con2360.Dock = System.Windows.Forms.DockStyle.Fill;
  2342. this.con2360.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2343. this.con2360.Location = new System.Drawing.Point(766, 156);
  2344. this.con2360.Margin = new System.Windows.Forms.Padding(0);
  2345. this.con2360.Name = "con2360";
  2346. this.myTableLayoutPanel1.SetRowSpan(this.con2360, 2);
  2347. this.con2360.Size = new System.Drawing.Size(39, 20);
  2348. this.con2360.TabIndex = 520;
  2349. //
  2350. // con2359
  2351. //
  2352. this.myTableLayoutPanel1.SetColumnSpan(this.con2359, 3);
  2353. this.con2359.Dock = System.Windows.Forms.DockStyle.Fill;
  2354. this.con2359.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2355. this.con2359.Location = new System.Drawing.Point(818, 176);
  2356. this.con2359.Margin = new System.Windows.Forms.Padding(0);
  2357. this.con2359.Name = "con2359";
  2358. this.myTableLayoutPanel1.SetRowSpan(this.con2359, 2);
  2359. this.con2359.Size = new System.Drawing.Size(39, 20);
  2360. this.con2359.TabIndex = 512;
  2361. //
  2362. // con2135
  2363. //
  2364. this.myTableLayoutPanel1.SetColumnSpan(this.con2135, 5);
  2365. this.con2135.Dock = System.Windows.Forms.DockStyle.Fill;
  2366. this.con2135.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2367. this.con2135.Location = new System.Drawing.Point(753, 176);
  2368. this.con2135.Margin = new System.Windows.Forms.Padding(0);
  2369. this.con2135.Name = "con2135";
  2370. this.myTableLayoutPanel1.SetRowSpan(this.con2135, 2);
  2371. this.con2135.Size = new System.Drawing.Size(65, 20);
  2372. this.con2135.TabIndex = 751;
  2373. //
  2374. // con2138
  2375. //
  2376. this.con2138.BackColor = System.Drawing.Color.Transparent;
  2377. this.myTableLayoutPanel1.SetColumnSpan(this.con2138, 5);
  2378. this.con2138.Dock = System.Windows.Forms.DockStyle.Fill;
  2379. this.con2138.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2380. this.con2138.Location = new System.Drawing.Point(546, 176);
  2381. this.con2138.Margin = new System.Windows.Forms.Padding(0);
  2382. this.con2138.Name = "con2138";
  2383. this.myTableLayoutPanel1.SetRowSpan(this.con2138, 2);
  2384. this.con2138.Size = new System.Drawing.Size(65, 20);
  2385. this.con2138.TabIndex = 749;
  2386. //
  2387. // con2116
  2388. //
  2389. this.con2116.BackColor = System.Drawing.Color.Transparent;
  2390. this.myTableLayoutPanel1.SetColumnSpan(this.con2116, 3);
  2391. this.con2116.Dock = System.Windows.Forms.DockStyle.Fill;
  2392. this.con2116.Location = new System.Drawing.Point(312, 176);
  2393. this.con2116.Margin = new System.Windows.Forms.Padding(0);
  2394. this.con2116.Name = "con2116";
  2395. this.myTableLayoutPanel1.SetRowSpan(this.con2116, 2);
  2396. this.con2116.Size = new System.Drawing.Size(39, 20);
  2397. this.con2116.TabIndex = 863;
  2398. //
  2399. // con2117
  2400. //
  2401. this.con2117.BackColor = System.Drawing.Color.Transparent;
  2402. this.myTableLayoutPanel1.SetColumnSpan(this.con2117, 3);
  2403. this.con2117.Dock = System.Windows.Forms.DockStyle.Fill;
  2404. this.con2117.Location = new System.Drawing.Point(416, 176);
  2405. this.con2117.Margin = new System.Windows.Forms.Padding(0);
  2406. this.con2117.Name = "con2117";
  2407. this.myTableLayoutPanel1.SetRowSpan(this.con2117, 2);
  2408. this.con2117.Size = new System.Drawing.Size(39, 20);
  2409. this.con2117.TabIndex = 462;
  2410. //
  2411. // con2328
  2412. //
  2413. this.con2328.BackColor = System.Drawing.Color.Transparent;
  2414. this.myTableLayoutPanel1.SetColumnSpan(this.con2328, 5);
  2415. this.con2328.Dock = System.Windows.Forms.DockStyle.Fill;
  2416. this.con2328.Location = new System.Drawing.Point(351, 176);
  2417. this.con2328.Margin = new System.Windows.Forms.Padding(0);
  2418. this.con2328.Name = "con2328";
  2419. this.myTableLayoutPanel1.SetRowSpan(this.con2328, 2);
  2420. this.con2328.Size = new System.Drawing.Size(65, 20);
  2421. this.con2328.TabIndex = 461;
  2422. //
  2423. // tableCellLabel2
  2424. //
  2425. this.tableCellLabel2.BackColor = System.Drawing.Color.Transparent;
  2426. this.tableCellLabel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel2.BackgroundImage")));
  2427. this.tableCellLabel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2428. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel2, 13);
  2429. this.tableCellLabel2.Dock = System.Windows.Forms.DockStyle.Fill;
  2430. this.tableCellLabel2.Location = new System.Drawing.Point(468, 136);
  2431. this.tableCellLabel2.Margin = new System.Windows.Forms.Padding(0);
  2432. this.tableCellLabel2.Name = "tableCellLabel2";
  2433. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel2, 2);
  2434. this.tableCellLabel2.Size = new System.Drawing.Size(169, 20);
  2435. this.tableCellLabel2.TabIndex = 790;
  2436. //
  2437. // con2307
  2438. //
  2439. this.con2307.BackColor = System.Drawing.Color.Transparent;
  2440. this.myTableLayoutPanel1.SetColumnSpan(this.con2307, 3);
  2441. this.con2307.Dock = System.Windows.Forms.DockStyle.Fill;
  2442. this.con2307.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2443. this.con2307.Location = new System.Drawing.Point(676, 96);
  2444. this.con2307.Margin = new System.Windows.Forms.Padding(0);
  2445. this.con2307.Name = "con2307";
  2446. this.myTableLayoutPanel1.SetRowSpan(this.con2307, 2);
  2447. this.con2307.Size = new System.Drawing.Size(38, 20);
  2448. this.con2307.TabIndex = 631;
  2449. //
  2450. // con2003
  2451. //
  2452. this.con2003.BackColor = System.Drawing.Color.Transparent;
  2453. this.myTableLayoutPanel1.SetColumnSpan(this.con2003, 3);
  2454. this.con2003.Dock = System.Windows.Forms.DockStyle.Fill;
  2455. this.con2003.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2456. this.con2003.Location = new System.Drawing.Point(637, 136);
  2457. this.con2003.Margin = new System.Windows.Forms.Padding(0);
  2458. this.con2003.Name = "con2003";
  2459. this.myTableLayoutPanel1.SetRowSpan(this.con2003, 2);
  2460. this.con2003.Size = new System.Drawing.Size(39, 20);
  2461. this.con2003.TabIndex = 629;
  2462. //
  2463. // con2312
  2464. //
  2465. this.myTableLayoutPanel1.SetColumnSpan(this.con2312, 4);
  2466. this.con2312.Dock = System.Windows.Forms.DockStyle.Fill;
  2467. this.con2312.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2468. this.con2312.Location = new System.Drawing.Point(130, 494);
  2469. this.con2312.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  2470. this.con2312.Name = "con2312";
  2471. this.myTableLayoutPanel1.SetRowSpan(this.con2312, 2);
  2472. this.con2312.Size = new System.Drawing.Size(39, 20);
  2473. this.con2312.TabIndex = 642;
  2474. //
  2475. // con2313
  2476. //
  2477. this.myTableLayoutPanel1.SetColumnSpan(this.con2313, 4);
  2478. this.con2313.Dock = System.Windows.Forms.DockStyle.Fill;
  2479. this.con2313.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2480. this.con2313.Location = new System.Drawing.Point(130, 474);
  2481. this.con2313.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  2482. this.con2313.Name = "con2313";
  2483. this.myTableLayoutPanel1.SetRowSpan(this.con2313, 2);
  2484. this.con2313.Size = new System.Drawing.Size(39, 20);
  2485. this.con2313.TabIndex = 641;
  2486. //
  2487. // con2314
  2488. //
  2489. this.myTableLayoutPanel1.SetColumnSpan(this.con2314, 4);
  2490. this.con2314.Dock = System.Windows.Forms.DockStyle.Fill;
  2491. this.con2314.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2492. this.con2314.Location = new System.Drawing.Point(130, 454);
  2493. this.con2314.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  2494. this.con2314.Name = "con2314";
  2495. this.myTableLayoutPanel1.SetRowSpan(this.con2314, 2);
  2496. this.con2314.Size = new System.Drawing.Size(39, 20);
  2497. this.con2314.TabIndex = 643;
  2498. //
  2499. // con2315
  2500. //
  2501. this.myTableLayoutPanel1.SetColumnSpan(this.con2315, 4);
  2502. this.con2315.Dock = System.Windows.Forms.DockStyle.Fill;
  2503. this.con2315.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2504. this.con2315.Location = new System.Drawing.Point(130, 434);
  2505. this.con2315.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  2506. this.con2315.Name = "con2315";
  2507. this.myTableLayoutPanel1.SetRowSpan(this.con2315, 2);
  2508. this.con2315.Size = new System.Drawing.Size(39, 20);
  2509. this.con2315.TabIndex = 644;
  2510. //
  2511. // con2316
  2512. //
  2513. this.myTableLayoutPanel1.SetColumnSpan(this.con2316, 4);
  2514. this.con2316.Dock = System.Windows.Forms.DockStyle.Fill;
  2515. this.con2316.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2516. this.con2316.Location = new System.Drawing.Point(130, 414);
  2517. this.con2316.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  2518. this.con2316.Name = "con2316";
  2519. this.myTableLayoutPanel1.SetRowSpan(this.con2316, 2);
  2520. this.con2316.Size = new System.Drawing.Size(39, 20);
  2521. this.con2316.TabIndex = 640;
  2522. //
  2523. // locationPos1
  2524. //
  2525. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos1, 3);
  2526. this.locationPos1.Location = new System.Drawing.Point(689, 196);
  2527. this.locationPos1.Margin = new System.Windows.Forms.Padding(0);
  2528. this.locationPos1.Name = "locationPos1";
  2529. this.myTableLayoutPanel1.SetRowSpan(this.locationPos1, 20);
  2530. this.locationPos1.Size = new System.Drawing.Size(38, 198);
  2531. this.locationPos1.TabIndex = 882;
  2532. //
  2533. // locationPos2
  2534. //
  2535. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos2, 3);
  2536. this.locationPos2.Location = new System.Drawing.Point(740, 196);
  2537. this.locationPos2.Margin = new System.Windows.Forms.Padding(0);
  2538. this.locationPos2.Name = "locationPos2";
  2539. this.myTableLayoutPanel1.SetRowSpan(this.locationPos2, 20);
  2540. this.locationPos2.Size = new System.Drawing.Size(39, 198);
  2541. this.locationPos2.TabIndex = 883;
  2542. //
  2543. // locationPos3
  2544. //
  2545. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos3, 3);
  2546. this.locationPos3.Location = new System.Drawing.Point(792, 196);
  2547. this.locationPos3.Margin = new System.Windows.Forms.Padding(0);
  2548. this.locationPos3.Name = "locationPos3";
  2549. this.myTableLayoutPanel1.SetRowSpan(this.locationPos3, 20);
  2550. this.locationPos3.Size = new System.Drawing.Size(39, 198);
  2551. this.locationPos3.TabIndex = 884;
  2552. //
  2553. // locationPos4
  2554. //
  2555. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos4, 3);
  2556. this.locationPos4.Location = new System.Drawing.Point(844, 196);
  2557. this.locationPos4.Margin = new System.Windows.Forms.Padding(0);
  2558. this.locationPos4.Name = "locationPos4";
  2559. this.myTableLayoutPanel1.SetRowSpan(this.locationPos4, 20);
  2560. this.locationPos4.Size = new System.Drawing.Size(39, 198);
  2561. this.locationPos4.TabIndex = 885;
  2562. //
  2563. // tableCellLabel5
  2564. //
  2565. this.tableCellLabel5.BackColor = System.Drawing.Color.Transparent;
  2566. this.tableCellLabel5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel5.BackgroundImage")));
  2567. this.tableCellLabel5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2568. this.tableCellLabel5.Location = new System.Drawing.Point(727, 196);
  2569. this.tableCellLabel5.Margin = new System.Windows.Forms.Padding(0);
  2570. this.tableCellLabel5.Name = "tableCellLabel5";
  2571. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel5, 20);
  2572. this.tableCellLabel5.Size = new System.Drawing.Size(13, 198);
  2573. this.tableCellLabel5.TabIndex = 886;
  2574. //
  2575. // tableCellLabel6
  2576. //
  2577. this.tableCellLabel6.BackColor = System.Drawing.Color.Transparent;
  2578. this.tableCellLabel6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel6.BackgroundImage")));
  2579. this.tableCellLabel6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2580. this.tableCellLabel6.Location = new System.Drawing.Point(831, 196);
  2581. this.tableCellLabel6.Margin = new System.Windows.Forms.Padding(0);
  2582. this.tableCellLabel6.Name = "tableCellLabel6";
  2583. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel6, 20);
  2584. this.tableCellLabel6.Size = new System.Drawing.Size(13, 198);
  2585. this.tableCellLabel6.TabIndex = 887;
  2586. //
  2587. // conveyor_L1
  2588. //
  2589. this.conveyor_L1.BackColor = System.Drawing.Color.Transparent;
  2590. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_L1, 2);
  2591. this.conveyor_L1.Dock = System.Windows.Forms.DockStyle.Fill;
  2592. this.conveyor_L1.Location = new System.Drawing.Point(948, 394);
  2593. this.conveyor_L1.Margin = new System.Windows.Forms.Padding(0);
  2594. this.conveyor_L1.Name = "conveyor_L1";
  2595. this.myTableLayoutPanel1.SetRowSpan(this.conveyor_L1, 2);
  2596. this.conveyor_L1.Size = new System.Drawing.Size(26, 20);
  2597. this.conveyor_L1.TabIndex = 891;
  2598. //
  2599. // conveyor_L2
  2600. //
  2601. this.conveyor_L2.BackColor = System.Drawing.Color.Transparent;
  2602. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_L2, 3);
  2603. this.conveyor_L2.Dock = System.Windows.Forms.DockStyle.Fill;
  2604. this.conveyor_L2.Location = new System.Drawing.Point(909, 394);
  2605. this.conveyor_L2.Margin = new System.Windows.Forms.Padding(0);
  2606. this.conveyor_L2.Name = "conveyor_L2";
  2607. this.myTableLayoutPanel1.SetRowSpan(this.conveyor_L2, 2);
  2608. this.conveyor_L2.Size = new System.Drawing.Size(39, 20);
  2609. this.conveyor_L2.TabIndex = 892;
  2610. //
  2611. // conveyor3_B1
  2612. //
  2613. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_B1, 3);
  2614. this.conveyor3_B1.Dock = System.Windows.Forms.DockStyle.Fill;
  2615. this.conveyor3_B1.Location = new System.Drawing.Point(909, 414);
  2616. this.conveyor3_B1.Margin = new System.Windows.Forms.Padding(0);
  2617. this.conveyor3_B1.Name = "conveyor3_B1";
  2618. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_B1, 2);
  2619. this.conveyor3_B1.Size = new System.Drawing.Size(39, 20);
  2620. this.conveyor3_B1.TabIndex = 893;
  2621. //
  2622. // conveyor_L3
  2623. //
  2624. this.conveyor_L3.BackColor = System.Drawing.Color.Transparent;
  2625. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_L3, 2);
  2626. this.conveyor_L3.Dock = System.Windows.Forms.DockStyle.Fill;
  2627. this.conveyor_L3.Location = new System.Drawing.Point(987, 394);
  2628. this.conveyor_L3.Margin = new System.Windows.Forms.Padding(0);
  2629. this.conveyor_L3.Name = "conveyor_L3";
  2630. this.myTableLayoutPanel1.SetRowSpan(this.conveyor_L3, 2);
  2631. this.conveyor_L3.Size = new System.Drawing.Size(26, 20);
  2632. this.conveyor_L3.TabIndex = 894;
  2633. //
  2634. // conveyor1
  2635. //
  2636. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor1, 3);
  2637. this.conveyor1.Dock = System.Windows.Forms.DockStyle.Fill;
  2638. this.conveyor1.Location = new System.Drawing.Point(1013, 394);
  2639. this.conveyor1.Margin = new System.Windows.Forms.Padding(0);
  2640. this.conveyor1.Name = "conveyor1";
  2641. this.myTableLayoutPanel1.SetRowSpan(this.conveyor1, 2);
  2642. this.conveyor1.Size = new System.Drawing.Size(39, 20);
  2643. this.conveyor1.TabIndex = 895;
  2644. //
  2645. // conveyor_R1
  2646. //
  2647. this.conveyor_R1.BackColor = System.Drawing.Color.Transparent;
  2648. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_R1, 2);
  2649. this.conveyor_R1.Dock = System.Windows.Forms.DockStyle.Fill;
  2650. this.conveyor_R1.Location = new System.Drawing.Point(1052, 394);
  2651. this.conveyor_R1.Margin = new System.Windows.Forms.Padding(0);
  2652. this.conveyor_R1.Name = "conveyor_R1";
  2653. this.myTableLayoutPanel1.SetRowSpan(this.conveyor_R1, 2);
  2654. this.conveyor_R1.Size = new System.Drawing.Size(26, 20);
  2655. this.conveyor_R1.TabIndex = 896;
  2656. //
  2657. // conveyor3_A1
  2658. //
  2659. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_A1, 3);
  2660. this.conveyor3_A1.Dock = System.Windows.Forms.DockStyle.Fill;
  2661. this.conveyor3_A1.Location = new System.Drawing.Point(1013, 414);
  2662. this.conveyor3_A1.Margin = new System.Windows.Forms.Padding(0);
  2663. this.conveyor3_A1.Name = "conveyor3_A1";
  2664. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_A1, 2);
  2665. this.conveyor3_A1.Size = new System.Drawing.Size(39, 20);
  2666. this.conveyor3_A1.TabIndex = 897;
  2667. //
  2668. // conveyor_R2
  2669. //
  2670. this.conveyor_R2.BackColor = System.Drawing.Color.Transparent;
  2671. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_R2, 2);
  2672. this.conveyor_R2.Dock = System.Windows.Forms.DockStyle.Right;
  2673. this.conveyor_R2.Location = new System.Drawing.Point(1091, 394);
  2674. this.conveyor_R2.Margin = new System.Windows.Forms.Padding(0);
  2675. this.conveyor_R2.Name = "conveyor_R2";
  2676. this.myTableLayoutPanel1.SetRowSpan(this.conveyor_R2, 2);
  2677. this.conveyor_R2.Size = new System.Drawing.Size(26, 20);
  2678. this.conveyor_R2.TabIndex = 898;
  2679. //
  2680. // conveyor4
  2681. //
  2682. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor4, 3);
  2683. this.conveyor4.Dock = System.Windows.Forms.DockStyle.Fill;
  2684. this.conveyor4.Location = new System.Drawing.Point(1117, 394);
  2685. this.conveyor4.Margin = new System.Windows.Forms.Padding(0);
  2686. this.conveyor4.Name = "conveyor4";
  2687. this.myTableLayoutPanel1.SetRowSpan(this.conveyor4, 2);
  2688. this.conveyor4.Size = new System.Drawing.Size(39, 20);
  2689. this.conveyor4.TabIndex = 899;
  2690. //
  2691. // conveyor_L4
  2692. //
  2693. this.conveyor_L4.BackColor = System.Drawing.Color.Transparent;
  2694. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_L4, 2);
  2695. this.conveyor_L4.Dock = System.Windows.Forms.DockStyle.Fill;
  2696. this.conveyor_L4.Location = new System.Drawing.Point(1156, 394);
  2697. this.conveyor_L4.Margin = new System.Windows.Forms.Padding(0);
  2698. this.conveyor_L4.Name = "conveyor_L4";
  2699. this.myTableLayoutPanel1.SetRowSpan(this.conveyor_L4, 2);
  2700. this.conveyor_L4.Size = new System.Drawing.Size(26, 20);
  2701. this.conveyor_L4.TabIndex = 900;
  2702. //
  2703. // conveyor3_B2
  2704. //
  2705. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_B2, 3);
  2706. this.conveyor3_B2.Dock = System.Windows.Forms.DockStyle.Fill;
  2707. this.conveyor3_B2.Location = new System.Drawing.Point(1117, 414);
  2708. this.conveyor3_B2.Margin = new System.Windows.Forms.Padding(0);
  2709. this.conveyor3_B2.Name = "conveyor3_B2";
  2710. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_B2, 2);
  2711. this.conveyor3_B2.Size = new System.Drawing.Size(39, 20);
  2712. this.conveyor3_B2.TabIndex = 901;
  2713. //
  2714. // conveyor_L5
  2715. //
  2716. this.conveyor_L5.BackColor = System.Drawing.Color.Transparent;
  2717. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_L5, 2);
  2718. this.conveyor_L5.Dock = System.Windows.Forms.DockStyle.Fill;
  2719. this.conveyor_L5.Location = new System.Drawing.Point(1195, 394);
  2720. this.conveyor_L5.Margin = new System.Windows.Forms.Padding(0);
  2721. this.conveyor_L5.Name = "conveyor_L5";
  2722. this.myTableLayoutPanel1.SetRowSpan(this.conveyor_L5, 2);
  2723. this.conveyor_L5.Size = new System.Drawing.Size(26, 20);
  2724. this.conveyor_L5.TabIndex = 902;
  2725. //
  2726. // conveyor5
  2727. //
  2728. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor5, 3);
  2729. this.conveyor5.Dock = System.Windows.Forms.DockStyle.Fill;
  2730. this.conveyor5.Location = new System.Drawing.Point(1221, 394);
  2731. this.conveyor5.Margin = new System.Windows.Forms.Padding(0);
  2732. this.conveyor5.Name = "conveyor5";
  2733. this.myTableLayoutPanel1.SetRowSpan(this.conveyor5, 2);
  2734. this.conveyor5.Size = new System.Drawing.Size(39, 20);
  2735. this.conveyor5.TabIndex = 903;
  2736. //
  2737. // conveyor3_A2
  2738. //
  2739. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_A2, 3);
  2740. this.conveyor3_A2.Dock = System.Windows.Forms.DockStyle.Fill;
  2741. this.conveyor3_A2.Location = new System.Drawing.Point(1221, 414);
  2742. this.conveyor3_A2.Margin = new System.Windows.Forms.Padding(0);
  2743. this.conveyor3_A2.Name = "conveyor3_A2";
  2744. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_A2, 2);
  2745. this.conveyor3_A2.Size = new System.Drawing.Size(39, 20);
  2746. this.conveyor3_A2.TabIndex = 904;
  2747. //
  2748. // conveyor_R3
  2749. //
  2750. this.conveyor_R3.BackColor = System.Drawing.Color.Transparent;
  2751. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_R3, 2);
  2752. this.conveyor_R3.Dock = System.Windows.Forms.DockStyle.Fill;
  2753. this.conveyor_R3.Location = new System.Drawing.Point(1273, 394);
  2754. this.conveyor_R3.Margin = new System.Windows.Forms.Padding(0);
  2755. this.conveyor_R3.Name = "conveyor_R3";
  2756. this.myTableLayoutPanel1.SetRowSpan(this.conveyor_R3, 2);
  2757. this.conveyor_R3.Size = new System.Drawing.Size(26, 20);
  2758. this.conveyor_R3.TabIndex = 905;
  2759. //
  2760. // conveyor6
  2761. //
  2762. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor6, 3);
  2763. this.conveyor6.Dock = System.Windows.Forms.DockStyle.Fill;
  2764. this.conveyor6.Location = new System.Drawing.Point(1299, 394);
  2765. this.conveyor6.Margin = new System.Windows.Forms.Padding(0);
  2766. this.conveyor6.Name = "conveyor6";
  2767. this.myTableLayoutPanel1.SetRowSpan(this.conveyor6, 2);
  2768. this.conveyor6.Size = new System.Drawing.Size(39, 20);
  2769. this.conveyor6.TabIndex = 906;
  2770. //
  2771. // conveyor_L6
  2772. //
  2773. this.conveyor_L6.BackColor = System.Drawing.Color.Transparent;
  2774. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_L6, 2);
  2775. this.conveyor_L6.Dock = System.Windows.Forms.DockStyle.Fill;
  2776. this.conveyor_L6.Location = new System.Drawing.Point(1338, 394);
  2777. this.conveyor_L6.Margin = new System.Windows.Forms.Padding(0);
  2778. this.conveyor_L6.Name = "conveyor_L6";
  2779. this.myTableLayoutPanel1.SetRowSpan(this.conveyor_L6, 2);
  2780. this.conveyor_L6.Size = new System.Drawing.Size(26, 20);
  2781. this.conveyor_L6.TabIndex = 907;
  2782. //
  2783. // conveyor3_B3
  2784. //
  2785. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_B3, 3);
  2786. this.conveyor3_B3.Dock = System.Windows.Forms.DockStyle.Fill;
  2787. this.conveyor3_B3.Location = new System.Drawing.Point(1299, 414);
  2788. this.conveyor3_B3.Margin = new System.Windows.Forms.Padding(0);
  2789. this.conveyor3_B3.Name = "conveyor3_B3";
  2790. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_B3, 2);
  2791. this.conveyor3_B3.Size = new System.Drawing.Size(39, 20);
  2792. this.conveyor3_B3.TabIndex = 908;
  2793. //
  2794. // conveyor_L7
  2795. //
  2796. this.conveyor_L7.BackColor = System.Drawing.Color.Transparent;
  2797. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_L7, 2);
  2798. this.conveyor_L7.Dock = System.Windows.Forms.DockStyle.Fill;
  2799. this.conveyor_L7.Location = new System.Drawing.Point(1377, 394);
  2800. this.conveyor_L7.Margin = new System.Windows.Forms.Padding(0);
  2801. this.conveyor_L7.Name = "conveyor_L7";
  2802. this.myTableLayoutPanel1.SetRowSpan(this.conveyor_L7, 2);
  2803. this.conveyor_L7.Size = new System.Drawing.Size(26, 20);
  2804. this.conveyor_L7.TabIndex = 909;
  2805. //
  2806. // conveyor7
  2807. //
  2808. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor7, 3);
  2809. this.conveyor7.Dock = System.Windows.Forms.DockStyle.Fill;
  2810. this.conveyor7.Location = new System.Drawing.Point(1403, 394);
  2811. this.conveyor7.Margin = new System.Windows.Forms.Padding(0);
  2812. this.conveyor7.Name = "conveyor7";
  2813. this.myTableLayoutPanel1.SetRowSpan(this.conveyor7, 2);
  2814. this.conveyor7.Size = new System.Drawing.Size(39, 20);
  2815. this.conveyor7.TabIndex = 910;
  2816. //
  2817. // conveyor_R4
  2818. //
  2819. this.conveyor_R4.BackColor = System.Drawing.Color.Transparent;
  2820. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_R4, 2);
  2821. this.conveyor_R4.Dock = System.Windows.Forms.DockStyle.Fill;
  2822. this.conveyor_R4.Location = new System.Drawing.Point(1442, 394);
  2823. this.conveyor_R4.Margin = new System.Windows.Forms.Padding(0);
  2824. this.conveyor_R4.Name = "conveyor_R4";
  2825. this.myTableLayoutPanel1.SetRowSpan(this.conveyor_R4, 2);
  2826. this.conveyor_R4.Size = new System.Drawing.Size(26, 20);
  2827. this.conveyor_R4.TabIndex = 911;
  2828. //
  2829. // conveyor_R5
  2830. //
  2831. this.conveyor_R5.BackColor = System.Drawing.Color.Transparent;
  2832. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_R5, 2);
  2833. this.conveyor_R5.Dock = System.Windows.Forms.DockStyle.Fill;
  2834. this.conveyor_R5.Location = new System.Drawing.Point(1481, 394);
  2835. this.conveyor_R5.Margin = new System.Windows.Forms.Padding(0);
  2836. this.conveyor_R5.Name = "conveyor_R5";
  2837. this.myTableLayoutPanel1.SetRowSpan(this.conveyor_R5, 2);
  2838. this.conveyor_R5.Size = new System.Drawing.Size(26, 20);
  2839. this.conveyor_R5.TabIndex = 912;
  2840. //
  2841. // conveyor8
  2842. //
  2843. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor8, 3);
  2844. this.conveyor8.Dock = System.Windows.Forms.DockStyle.Fill;
  2845. this.conveyor8.Location = new System.Drawing.Point(1507, 394);
  2846. this.conveyor8.Margin = new System.Windows.Forms.Padding(0);
  2847. this.conveyor8.Name = "conveyor8";
  2848. this.myTableLayoutPanel1.SetRowSpan(this.conveyor8, 2);
  2849. this.conveyor8.Size = new System.Drawing.Size(39, 20);
  2850. this.conveyor8.TabIndex = 913;
  2851. //
  2852. // conveyor_L8
  2853. //
  2854. this.conveyor_L8.BackColor = System.Drawing.Color.Transparent;
  2855. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_L8, 2);
  2856. this.conveyor_L8.Dock = System.Windows.Forms.DockStyle.Fill;
  2857. this.conveyor_L8.Location = new System.Drawing.Point(1546, 394);
  2858. this.conveyor_L8.Margin = new System.Windows.Forms.Padding(0);
  2859. this.conveyor_L8.Name = "conveyor_L8";
  2860. this.myTableLayoutPanel1.SetRowSpan(this.conveyor_L8, 2);
  2861. this.conveyor_L8.Size = new System.Drawing.Size(26, 20);
  2862. this.conveyor_L8.TabIndex = 914;
  2863. //
  2864. // conveyor_R6
  2865. //
  2866. this.conveyor_R6.BackColor = System.Drawing.Color.Transparent;
  2867. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_R6, 2);
  2868. this.conveyor_R6.Dock = System.Windows.Forms.DockStyle.Fill;
  2869. this.conveyor_R6.Location = new System.Drawing.Point(1585, 394);
  2870. this.conveyor_R6.Margin = new System.Windows.Forms.Padding(0);
  2871. this.conveyor_R6.Name = "conveyor_R6";
  2872. this.myTableLayoutPanel1.SetRowSpan(this.conveyor_R6, 2);
  2873. this.conveyor_R6.Size = new System.Drawing.Size(26, 20);
  2874. this.conveyor_R6.TabIndex = 915;
  2875. //
  2876. // conveyor9
  2877. //
  2878. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor9, 3);
  2879. this.conveyor9.Dock = System.Windows.Forms.DockStyle.Fill;
  2880. this.conveyor9.Location = new System.Drawing.Point(1611, 394);
  2881. this.conveyor9.Margin = new System.Windows.Forms.Padding(0);
  2882. this.conveyor9.Name = "conveyor9";
  2883. this.myTableLayoutPanel1.SetRowSpan(this.conveyor9, 2);
  2884. this.conveyor9.Size = new System.Drawing.Size(39, 20);
  2885. this.conveyor9.TabIndex = 916;
  2886. //
  2887. // conveyor3_A3
  2888. //
  2889. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_A3, 3);
  2890. this.conveyor3_A3.Dock = System.Windows.Forms.DockStyle.Fill;
  2891. this.conveyor3_A3.Location = new System.Drawing.Point(1403, 414);
  2892. this.conveyor3_A3.Margin = new System.Windows.Forms.Padding(0);
  2893. this.conveyor3_A3.Name = "conveyor3_A3";
  2894. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_A3, 2);
  2895. this.conveyor3_A3.Size = new System.Drawing.Size(39, 20);
  2896. this.conveyor3_A3.TabIndex = 917;
  2897. //
  2898. // conveyor3_B4
  2899. //
  2900. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_B4, 3);
  2901. this.conveyor3_B4.Dock = System.Windows.Forms.DockStyle.Fill;
  2902. this.conveyor3_B4.Location = new System.Drawing.Point(1507, 414);
  2903. this.conveyor3_B4.Margin = new System.Windows.Forms.Padding(0);
  2904. this.conveyor3_B4.Name = "conveyor3_B4";
  2905. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_B4, 2);
  2906. this.conveyor3_B4.Size = new System.Drawing.Size(39, 20);
  2907. this.conveyor3_B4.TabIndex = 918;
  2908. //
  2909. // conveyor3_A4
  2910. //
  2911. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_A4, 3);
  2912. this.conveyor3_A4.Dock = System.Windows.Forms.DockStyle.Fill;
  2913. this.conveyor3_A4.Location = new System.Drawing.Point(1611, 414);
  2914. this.conveyor3_A4.Margin = new System.Windows.Forms.Padding(0);
  2915. this.conveyor3_A4.Name = "conveyor3_A4";
  2916. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_A4, 2);
  2917. this.conveyor3_A4.Size = new System.Drawing.Size(39, 20);
  2918. this.conveyor3_A4.TabIndex = 919;
  2919. //
  2920. // conveyor10
  2921. //
  2922. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor10, 3);
  2923. this.conveyor10.Dock = System.Windows.Forms.DockStyle.Fill;
  2924. this.conveyor10.Location = new System.Drawing.Point(961, 444);
  2925. this.conveyor10.Margin = new System.Windows.Forms.Padding(0);
  2926. this.conveyor10.Name = "conveyor10";
  2927. this.myTableLayoutPanel1.SetRowSpan(this.conveyor10, 2);
  2928. this.conveyor10.Size = new System.Drawing.Size(39, 20);
  2929. this.conveyor10.TabIndex = 920;
  2930. //
  2931. // conveyor11
  2932. //
  2933. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor11, 3);
  2934. this.conveyor11.Dock = System.Windows.Forms.DockStyle.Fill;
  2935. this.conveyor11.Location = new System.Drawing.Point(1052, 444);
  2936. this.conveyor11.Margin = new System.Windows.Forms.Padding(0);
  2937. this.conveyor11.Name = "conveyor11";
  2938. this.myTableLayoutPanel1.SetRowSpan(this.conveyor11, 2);
  2939. this.conveyor11.Size = new System.Drawing.Size(39, 20);
  2940. this.conveyor11.TabIndex = 921;
  2941. //
  2942. // conveyor12
  2943. //
  2944. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor12, 3);
  2945. this.conveyor12.Dock = System.Windows.Forms.DockStyle.Fill;
  2946. this.conveyor12.Location = new System.Drawing.Point(1143, 444);
  2947. this.conveyor12.Margin = new System.Windows.Forms.Padding(0);
  2948. this.conveyor12.Name = "conveyor12";
  2949. this.myTableLayoutPanel1.SetRowSpan(this.conveyor12, 2);
  2950. this.conveyor12.Size = new System.Drawing.Size(39, 20);
  2951. this.conveyor12.TabIndex = 922;
  2952. //
  2953. // conveyor13
  2954. //
  2955. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor13, 3);
  2956. this.conveyor13.Dock = System.Windows.Forms.DockStyle.Fill;
  2957. this.conveyor13.Location = new System.Drawing.Point(1247, 444);
  2958. this.conveyor13.Margin = new System.Windows.Forms.Padding(0);
  2959. this.conveyor13.Name = "conveyor13";
  2960. this.myTableLayoutPanel1.SetRowSpan(this.conveyor13, 2);
  2961. this.conveyor13.Size = new System.Drawing.Size(39, 20);
  2962. this.conveyor13.TabIndex = 923;
  2963. //
  2964. // conveyor14
  2965. //
  2966. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor14, 3);
  2967. this.conveyor14.Dock = System.Windows.Forms.DockStyle.Fill;
  2968. this.conveyor14.Location = new System.Drawing.Point(1364, 444);
  2969. this.conveyor14.Margin = new System.Windows.Forms.Padding(0);
  2970. this.conveyor14.Name = "conveyor14";
  2971. this.myTableLayoutPanel1.SetRowSpan(this.conveyor14, 2);
  2972. this.conveyor14.Size = new System.Drawing.Size(39, 20);
  2973. this.conveyor14.TabIndex = 924;
  2974. //
  2975. // conveyor15
  2976. //
  2977. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor15, 3);
  2978. this.conveyor15.Dock = System.Windows.Forms.DockStyle.Fill;
  2979. this.conveyor15.Location = new System.Drawing.Point(1546, 444);
  2980. this.conveyor15.Margin = new System.Windows.Forms.Padding(0);
  2981. this.conveyor15.Name = "conveyor15";
  2982. this.myTableLayoutPanel1.SetRowSpan(this.conveyor15, 2);
  2983. this.conveyor15.Size = new System.Drawing.Size(39, 20);
  2984. this.conveyor15.TabIndex = 925;
  2985. //
  2986. // tableCellLabel21
  2987. //
  2988. this.tableCellLabel21.BackColor = System.Drawing.Color.Transparent;
  2989. this.tableCellLabel21.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel21.BackgroundImage")));
  2990. this.tableCellLabel21.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2991. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel21, 4);
  2992. this.tableCellLabel21.Dock = System.Windows.Forms.DockStyle.Fill;
  2993. this.tableCellLabel21.Location = new System.Drawing.Point(909, 444);
  2994. this.tableCellLabel21.Margin = new System.Windows.Forms.Padding(0);
  2995. this.tableCellLabel21.Name = "tableCellLabel21";
  2996. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel21, 2);
  2997. this.tableCellLabel21.Size = new System.Drawing.Size(52, 20);
  2998. this.tableCellLabel21.TabIndex = 926;
  2999. //
  3000. // tableCellLabel23
  3001. //
  3002. this.tableCellLabel23.BackColor = System.Drawing.Color.Transparent;
  3003. this.tableCellLabel23.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel23.BackgroundImage")));
  3004. this.tableCellLabel23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3005. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel23, 4);
  3006. this.tableCellLabel23.Dock = System.Windows.Forms.DockStyle.Fill;
  3007. this.tableCellLabel23.Location = new System.Drawing.Point(1091, 444);
  3008. this.tableCellLabel23.Margin = new System.Windows.Forms.Padding(0);
  3009. this.tableCellLabel23.Name = "tableCellLabel23";
  3010. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel23, 2);
  3011. this.tableCellLabel23.Size = new System.Drawing.Size(52, 20);
  3012. this.tableCellLabel23.TabIndex = 928;
  3013. //
  3014. // tableCellLabel24
  3015. //
  3016. this.tableCellLabel24.BackColor = System.Drawing.Color.Transparent;
  3017. this.tableCellLabel24.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel24.BackgroundImage")));
  3018. this.tableCellLabel24.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3019. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel24, 5);
  3020. this.tableCellLabel24.Dock = System.Windows.Forms.DockStyle.Fill;
  3021. this.tableCellLabel24.Location = new System.Drawing.Point(1182, 444);
  3022. this.tableCellLabel24.Margin = new System.Windows.Forms.Padding(0);
  3023. this.tableCellLabel24.Name = "tableCellLabel24";
  3024. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel24, 2);
  3025. this.tableCellLabel24.Size = new System.Drawing.Size(65, 20);
  3026. this.tableCellLabel24.TabIndex = 929;
  3027. //
  3028. // tableCellLabel25
  3029. //
  3030. this.tableCellLabel25.BackColor = System.Drawing.Color.Transparent;
  3031. this.tableCellLabel25.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel25.BackgroundImage")));
  3032. this.tableCellLabel25.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3033. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel25, 6);
  3034. this.tableCellLabel25.Dock = System.Windows.Forms.DockStyle.Fill;
  3035. this.tableCellLabel25.Location = new System.Drawing.Point(1286, 444);
  3036. this.tableCellLabel25.Margin = new System.Windows.Forms.Padding(0);
  3037. this.tableCellLabel25.Name = "tableCellLabel25";
  3038. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel25, 2);
  3039. this.tableCellLabel25.Size = new System.Drawing.Size(78, 20);
  3040. this.tableCellLabel25.TabIndex = 930;
  3041. //
  3042. // tableCellLabel22
  3043. //
  3044. this.tableCellLabel22.BackColor = System.Drawing.Color.Transparent;
  3045. this.tableCellLabel22.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel22.BackgroundImage")));
  3046. this.tableCellLabel22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3047. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel22, 4);
  3048. this.tableCellLabel22.Dock = System.Windows.Forms.DockStyle.Fill;
  3049. this.tableCellLabel22.Location = new System.Drawing.Point(1000, 444);
  3050. this.tableCellLabel22.Margin = new System.Windows.Forms.Padding(0);
  3051. this.tableCellLabel22.Name = "tableCellLabel22";
  3052. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel22, 2);
  3053. this.tableCellLabel22.Size = new System.Drawing.Size(52, 20);
  3054. this.tableCellLabel22.TabIndex = 932;
  3055. //
  3056. // tableCellLabel26
  3057. //
  3058. this.tableCellLabel26.BackColor = System.Drawing.Color.Transparent;
  3059. this.tableCellLabel26.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel26.BackgroundImage")));
  3060. this.tableCellLabel26.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3061. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel26, 5);
  3062. this.tableCellLabel26.Dock = System.Windows.Forms.DockStyle.Fill;
  3063. this.tableCellLabel26.Location = new System.Drawing.Point(1403, 444);
  3064. this.tableCellLabel26.Margin = new System.Windows.Forms.Padding(0);
  3065. this.tableCellLabel26.Name = "tableCellLabel26";
  3066. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel26, 2);
  3067. this.tableCellLabel26.Size = new System.Drawing.Size(65, 20);
  3068. this.tableCellLabel26.TabIndex = 933;
  3069. //
  3070. // tableCellLabel27
  3071. //
  3072. this.tableCellLabel27.BackColor = System.Drawing.Color.Transparent;
  3073. this.tableCellLabel27.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel27.BackgroundImage")));
  3074. this.tableCellLabel27.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3075. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel27, 6);
  3076. this.tableCellLabel27.Dock = System.Windows.Forms.DockStyle.Fill;
  3077. this.tableCellLabel27.Location = new System.Drawing.Point(1468, 444);
  3078. this.tableCellLabel27.Margin = new System.Windows.Forms.Padding(0);
  3079. this.tableCellLabel27.Name = "tableCellLabel27";
  3080. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel27, 2);
  3081. this.tableCellLabel27.Size = new System.Drawing.Size(78, 20);
  3082. this.tableCellLabel27.TabIndex = 934;
  3083. //
  3084. // tableCellLabel28
  3085. //
  3086. this.tableCellLabel28.BackColor = System.Drawing.Color.Transparent;
  3087. this.tableCellLabel28.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel28.BackgroundImage")));
  3088. this.tableCellLabel28.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3089. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel28, 5);
  3090. this.tableCellLabel28.Dock = System.Windows.Forms.DockStyle.Fill;
  3091. this.tableCellLabel28.Location = new System.Drawing.Point(1585, 444);
  3092. this.tableCellLabel28.Margin = new System.Windows.Forms.Padding(0);
  3093. this.tableCellLabel28.Name = "tableCellLabel28";
  3094. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel28, 2);
  3095. this.tableCellLabel28.Size = new System.Drawing.Size(65, 20);
  3096. this.tableCellLabel28.TabIndex = 935;
  3097. //
  3098. // conveyor3_B5
  3099. //
  3100. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_B5, 3);
  3101. this.conveyor3_B5.Location = new System.Drawing.Point(1442, 226);
  3102. this.conveyor3_B5.Margin = new System.Windows.Forms.Padding(0);
  3103. this.conveyor3_B5.Name = "conveyor3_B5";
  3104. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_B5, 2);
  3105. this.conveyor3_B5.Size = new System.Drawing.Size(39, 20);
  3106. this.conveyor3_B5.TabIndex = 936;
  3107. //
  3108. // conveyor3_B6
  3109. //
  3110. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_B6, 3);
  3111. this.conveyor3_B6.Location = new System.Drawing.Point(1442, 246);
  3112. this.conveyor3_B6.Margin = new System.Windows.Forms.Padding(0);
  3113. this.conveyor3_B6.Name = "conveyor3_B6";
  3114. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_B6, 2);
  3115. this.conveyor3_B6.Size = new System.Drawing.Size(39, 18);
  3116. this.conveyor3_B6.TabIndex = 937;
  3117. //
  3118. // conveyor3_B7
  3119. //
  3120. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_B7, 3);
  3121. this.conveyor3_B7.Location = new System.Drawing.Point(1442, 264);
  3122. this.conveyor3_B7.Margin = new System.Windows.Forms.Padding(0);
  3123. this.conveyor3_B7.Name = "conveyor3_B7";
  3124. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_B7, 2);
  3125. this.conveyor3_B7.Size = new System.Drawing.Size(39, 20);
  3126. this.conveyor3_B7.TabIndex = 938;
  3127. //
  3128. // conveyor3_B8
  3129. //
  3130. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_B8, 3);
  3131. this.conveyor3_B8.Location = new System.Drawing.Point(1546, 226);
  3132. this.conveyor3_B8.Margin = new System.Windows.Forms.Padding(0);
  3133. this.conveyor3_B8.Name = "conveyor3_B8";
  3134. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_B8, 2);
  3135. this.conveyor3_B8.Size = new System.Drawing.Size(39, 20);
  3136. this.conveyor3_B8.TabIndex = 939;
  3137. //
  3138. // conveyor3_B9
  3139. //
  3140. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_B9, 3);
  3141. this.conveyor3_B9.Location = new System.Drawing.Point(1546, 246);
  3142. this.conveyor3_B9.Margin = new System.Windows.Forms.Padding(0);
  3143. this.conveyor3_B9.Name = "conveyor3_B9";
  3144. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_B9, 2);
  3145. this.conveyor3_B9.Size = new System.Drawing.Size(39, 18);
  3146. this.conveyor3_B9.TabIndex = 940;
  3147. //
  3148. // conveyor3_B10
  3149. //
  3150. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_B10, 3);
  3151. this.conveyor3_B10.Location = new System.Drawing.Point(1546, 264);
  3152. this.conveyor3_B10.Margin = new System.Windows.Forms.Padding(0);
  3153. this.conveyor3_B10.Name = "conveyor3_B10";
  3154. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_B10, 2);
  3155. this.conveyor3_B10.Size = new System.Drawing.Size(39, 20);
  3156. this.conveyor3_B10.TabIndex = 941;
  3157. //
  3158. // conveyor3_B11
  3159. //
  3160. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_B11, 3);
  3161. this.conveyor3_B11.Location = new System.Drawing.Point(1494, 474);
  3162. this.conveyor3_B11.Margin = new System.Windows.Forms.Padding(0);
  3163. this.conveyor3_B11.Name = "conveyor3_B11";
  3164. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_B11, 2);
  3165. this.conveyor3_B11.Size = new System.Drawing.Size(39, 20);
  3166. this.conveyor3_B11.TabIndex = 942;
  3167. //
  3168. // conveyor3_B12
  3169. //
  3170. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_B12, 3);
  3171. this.conveyor3_B12.Location = new System.Drawing.Point(1494, 494);
  3172. this.conveyor3_B12.Margin = new System.Windows.Forms.Padding(0);
  3173. this.conveyor3_B12.Name = "conveyor3_B12";
  3174. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_B12, 2);
  3175. this.conveyor3_B12.Size = new System.Drawing.Size(39, 20);
  3176. this.conveyor3_B12.TabIndex = 943;
  3177. //
  3178. // conveyor3_B13
  3179. //
  3180. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_B13, 3);
  3181. this.conveyor3_B13.Location = new System.Drawing.Point(1494, 514);
  3182. this.conveyor3_B13.Margin = new System.Windows.Forms.Padding(0);
  3183. this.conveyor3_B13.Name = "conveyor3_B13";
  3184. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_B13, 2);
  3185. this.conveyor3_B13.Size = new System.Drawing.Size(39, 20);
  3186. this.conveyor3_B13.TabIndex = 944;
  3187. //
  3188. // conveyor3_B14
  3189. //
  3190. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_B14, 3);
  3191. this.conveyor3_B14.Location = new System.Drawing.Point(1494, 534);
  3192. this.conveyor3_B14.Margin = new System.Windows.Forms.Padding(0);
  3193. this.conveyor3_B14.Name = "conveyor3_B14";
  3194. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_B14, 2);
  3195. this.conveyor3_B14.Size = new System.Drawing.Size(39, 20);
  3196. this.conveyor3_B14.TabIndex = 945;
  3197. //
  3198. // label1
  3199. //
  3200. this.label1.AutoSize = true;
  3201. this.label1.BackColor = System.Drawing.Color.Lime;
  3202. this.myTableLayoutPanel1.SetColumnSpan(this.label1, 3);
  3203. this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
  3204. this.label1.Location = new System.Drawing.Point(1510, 226);
  3205. this.label1.Name = "label1";
  3206. this.myTableLayoutPanel1.SetRowSpan(this.label1, 2);
  3207. this.label1.Size = new System.Drawing.Size(33, 20);
  3208. this.label1.TabIndex = 946;
  3209. this.label1.Text = "入";
  3210. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3211. //
  3212. // lable4
  3213. //
  3214. this.lable4.AutoSize = true;
  3215. this.lable4.BackColor = System.Drawing.Color.Lime;
  3216. this.myTableLayoutPanel1.SetColumnSpan(this.lable4, 3);
  3217. this.lable4.Dock = System.Windows.Forms.DockStyle.Fill;
  3218. this.lable4.Location = new System.Drawing.Point(1458, 474);
  3219. this.lable4.Name = "lable4";
  3220. this.myTableLayoutPanel1.SetRowSpan(this.lable4, 2);
  3221. this.lable4.Size = new System.Drawing.Size(33, 20);
  3222. this.lable4.TabIndex = 947;
  3223. this.lable4.Text = "出";
  3224. this.lable4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3225. //
  3226. // conveyor3_B15
  3227. //
  3228. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_B15, 3);
  3229. this.conveyor3_B15.Location = new System.Drawing.Point(624, 75);
  3230. this.conveyor3_B15.Margin = new System.Windows.Forms.Padding(0);
  3231. this.conveyor3_B15.Name = "conveyor3_B15";
  3232. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_B15, 2);
  3233. this.conveyor3_B15.Size = new System.Drawing.Size(39, 21);
  3234. this.conveyor3_B15.TabIndex = 948;
  3235. //
  3236. // conveyor3_B16
  3237. //
  3238. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_B16, 3);
  3239. this.conveyor3_B16.Location = new System.Drawing.Point(624, 57);
  3240. this.conveyor3_B16.Margin = new System.Windows.Forms.Padding(0);
  3241. this.conveyor3_B16.Name = "conveyor3_B16";
  3242. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_B16, 2);
  3243. this.conveyor3_B16.Size = new System.Drawing.Size(39, 18);
  3244. this.conveyor3_B16.TabIndex = 949;
  3245. //
  3246. // conveyor3_B17
  3247. //
  3248. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_B17, 3);
  3249. this.conveyor3_B17.Location = new System.Drawing.Point(831, 75);
  3250. this.conveyor3_B17.Margin = new System.Windows.Forms.Padding(0);
  3251. this.conveyor3_B17.Name = "conveyor3_B17";
  3252. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_B17, 2);
  3253. this.conveyor3_B17.Size = new System.Drawing.Size(39, 21);
  3254. this.conveyor3_B17.TabIndex = 950;
  3255. //
  3256. // conveyor3_B18
  3257. //
  3258. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_B18, 3);
  3259. this.conveyor3_B18.Location = new System.Drawing.Point(831, 57);
  3260. this.conveyor3_B18.Margin = new System.Windows.Forms.Padding(0);
  3261. this.conveyor3_B18.Name = "conveyor3_B18";
  3262. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_B18, 2);
  3263. this.conveyor3_B18.Size = new System.Drawing.Size(39, 18);
  3264. this.conveyor3_B18.TabIndex = 951;
  3265. //
  3266. // pnlDDJ1
  3267. //
  3268. this.pnlDDJ1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ1.BackgroundImage")));
  3269. this.pnlDDJ1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3270. this.pnlDDJ1.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  3271. this.pnlDDJ1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  3272. this.pnlDDJ1.Controls.Add(this.lblInStatus1);
  3273. this.pnlDDJ1.Controls.Add(this.lblOutStatus1);
  3274. this.pnlDDJ1.Controls.Add(this.lblDDJWarning1);
  3275. this.pnlDDJ1.Controls.Add(this.ddjPosTo1);
  3276. this.pnlDDJ1.Controls.Add(this.ddjPosFrom1);
  3277. this.pnlDDJ1.Controls.Add(this.label84);
  3278. this.pnlDDJ1.Controls.Add(this.label85);
  3279. this.pnlDDJ1.Controls.Add(this.ddjMode1);
  3280. this.pnlDDJ1.Controls.Add(this.ddjOrdId1);
  3281. this.pnlDDJ1.Controls.Add(this.label137);
  3282. this.pnlDDJ1.Controls.Add(this.ddjOptType1);
  3283. this.pnlDDJ1.Controls.Add(this.label139);
  3284. this.pnlDDJ1.Controls.Add(this.ddjTotal_KM1);
  3285. this.pnlDDJ1.Controls.Add(this.label13);
  3286. this.pnlDDJ1.Controls.Add(this.ddjWorkTime1);
  3287. this.pnlDDJ1.Controls.Add(this.label10);
  3288. this.pnlDDJ1.Controls.Add(this.ddjStatus1);
  3289. this.pnlDDJ1.Controls.Add(this.ddjPosCurr1);
  3290. this.pnlDDJ1.Controls.Add(this.label5);
  3291. this.pnlDDJ1.Controls.Add(this.label3);
  3292. this.pnlDDJ1.Controls.Add(this.label2);
  3293. this.pnlDDJ1.Controls.Add(this.lblsrm01);
  3294. this.pnlDDJ1.Controls.Add(this.G1);
  3295. this.pnlDDJ1.Controls.Add(this.R1);
  3296. this.pnlDDJ1.Location = new System.Drawing.Point(0, 3);
  3297. this.pnlDDJ1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3298. this.pnlDDJ1.Name = "pnlDDJ1";
  3299. this.pnlDDJ1.Size = new System.Drawing.Size(217, 312);
  3300. this.pnlDDJ1.TabIndex = 25;
  3301. //
  3302. // lblInStatus1
  3303. //
  3304. this.lblInStatus1.BackColor = System.Drawing.Color.DarkGray;
  3305. this.lblInStatus1.Location = new System.Drawing.Point(7, 2);
  3306. this.lblInStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3307. this.lblInStatus1.Name = "lblInStatus1";
  3308. this.lblInStatus1.Size = new System.Drawing.Size(37, 30);
  3309. this.lblInStatus1.TabIndex = 94;
  3310. this.lblInStatus1.Tag = "1";
  3311. this.lblInStatus1.Text = "入";
  3312. this.lblInStatus1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3313. //
  3314. // lblOutStatus1
  3315. //
  3316. this.lblOutStatus1.BackColor = System.Drawing.Color.DarkGray;
  3317. this.lblOutStatus1.Location = new System.Drawing.Point(169, 2);
  3318. this.lblOutStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3319. this.lblOutStatus1.Name = "lblOutStatus1";
  3320. this.lblOutStatus1.Size = new System.Drawing.Size(37, 30);
  3321. this.lblOutStatus1.TabIndex = 93;
  3322. this.lblOutStatus1.Text = "出";
  3323. this.lblOutStatus1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3324. //
  3325. // lblDDJWarning1
  3326. //
  3327. this.lblDDJWarning1.BackColor = System.Drawing.Color.Transparent;
  3328. this.lblDDJWarning1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3329. this.lblDDJWarning1.ForeColor = System.Drawing.Color.Red;
  3330. this.lblDDJWarning1.Location = new System.Drawing.Point(7, 58);
  3331. this.lblDDJWarning1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3332. this.lblDDJWarning1.Name = "lblDDJWarning1";
  3333. this.lblDDJWarning1.Size = new System.Drawing.Size(201, 30);
  3334. this.lblDDJWarning1.TabIndex = 92;
  3335. //
  3336. // ddjPosTo1
  3337. //
  3338. this.ddjPosTo1.AutoSize = true;
  3339. this.ddjPosTo1.BackColor = System.Drawing.Color.Transparent;
  3340. this.ddjPosTo1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3341. this.ddjPosTo1.ForeColor = System.Drawing.Color.Blue;
  3342. this.ddjPosTo1.Location = new System.Drawing.Point(119, 292);
  3343. this.ddjPosTo1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3344. this.ddjPosTo1.Name = "ddjPosTo1";
  3345. this.ddjPosTo1.Size = new System.Drawing.Size(31, 15);
  3346. this.ddjPosTo1.TabIndex = 73;
  3347. this.ddjPosTo1.Text = "---";
  3348. //
  3349. // ddjPosFrom1
  3350. //
  3351. this.ddjPosFrom1.AutoSize = true;
  3352. this.ddjPosFrom1.BackColor = System.Drawing.Color.Transparent;
  3353. this.ddjPosFrom1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3354. this.ddjPosFrom1.ForeColor = System.Drawing.Color.Blue;
  3355. this.ddjPosFrom1.Location = new System.Drawing.Point(119, 265);
  3356. this.ddjPosFrom1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3357. this.ddjPosFrom1.Name = "ddjPosFrom1";
  3358. this.ddjPosFrom1.Size = new System.Drawing.Size(31, 15);
  3359. this.ddjPosFrom1.TabIndex = 72;
  3360. this.ddjPosFrom1.Text = "---";
  3361. //
  3362. // label84
  3363. //
  3364. this.label84.AutoSize = true;
  3365. this.label84.BackColor = System.Drawing.Color.Transparent;
  3366. this.label84.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3367. this.label84.Location = new System.Drawing.Point(4, 265);
  3368. this.label84.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3369. this.label84.Name = "label84";
  3370. this.label84.Size = new System.Drawing.Size(82, 15);
  3371. this.label84.TabIndex = 71;
  3372. this.label84.Text = "起始位置:";
  3373. //
  3374. // label85
  3375. //
  3376. this.label85.AutoSize = true;
  3377. this.label85.BackColor = System.Drawing.Color.Transparent;
  3378. this.label85.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3379. this.label85.Location = new System.Drawing.Point(4, 292);
  3380. this.label85.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3381. this.label85.Name = "label85";
  3382. this.label85.Size = new System.Drawing.Size(82, 15);
  3383. this.label85.TabIndex = 70;
  3384. this.label85.Text = "目标位置:";
  3385. //
  3386. // ddjMode1
  3387. //
  3388. this.ddjMode1.AutoSize = true;
  3389. this.ddjMode1.BackColor = System.Drawing.Color.Transparent;
  3390. this.ddjMode1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3391. this.ddjMode1.ForeColor = System.Drawing.Color.Blue;
  3392. this.ddjMode1.Location = new System.Drawing.Point(116, 92);
  3393. this.ddjMode1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3394. this.ddjMode1.Name = "ddjMode1";
  3395. this.ddjMode1.Size = new System.Drawing.Size(31, 15);
  3396. this.ddjMode1.TabIndex = 12;
  3397. this.ddjMode1.Text = "---";
  3398. //
  3399. // ddjOrdId1
  3400. //
  3401. this.ddjOrdId1.AutoSize = true;
  3402. this.ddjOrdId1.BackColor = System.Drawing.Color.Transparent;
  3403. this.ddjOrdId1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3404. this.ddjOrdId1.ForeColor = System.Drawing.Color.Blue;
  3405. this.ddjOrdId1.Location = new System.Drawing.Point(116, 142);
  3406. this.ddjOrdId1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3407. this.ddjOrdId1.Name = "ddjOrdId1";
  3408. this.ddjOrdId1.Size = new System.Drawing.Size(31, 15);
  3409. this.ddjOrdId1.TabIndex = 64;
  3410. this.ddjOrdId1.Text = "---";
  3411. //
  3412. // label137
  3413. //
  3414. this.label137.AutoSize = true;
  3415. this.label137.BackColor = System.Drawing.Color.Transparent;
  3416. this.label137.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3417. this.label137.Location = new System.Drawing.Point(3, 142);
  3418. this.label137.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3419. this.label137.Name = "label137";
  3420. this.label137.Size = new System.Drawing.Size(82, 15);
  3421. this.label137.TabIndex = 63;
  3422. this.label137.Text = "工作指令:";
  3423. //
  3424. // ddjOptType1
  3425. //
  3426. this.ddjOptType1.AutoSize = true;
  3427. this.ddjOptType1.BackColor = System.Drawing.Color.Transparent;
  3428. this.ddjOptType1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3429. this.ddjOptType1.ForeColor = System.Drawing.Color.Blue;
  3430. this.ddjOptType1.Location = new System.Drawing.Point(116, 162);
  3431. this.ddjOptType1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3432. this.ddjOptType1.Name = "ddjOptType1";
  3433. this.ddjOptType1.Size = new System.Drawing.Size(31, 15);
  3434. this.ddjOptType1.TabIndex = 62;
  3435. this.ddjOptType1.Text = "---";
  3436. //
  3437. // label139
  3438. //
  3439. this.label139.AutoSize = true;
  3440. this.label139.BackColor = System.Drawing.Color.Transparent;
  3441. this.label139.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3442. this.label139.Location = new System.Drawing.Point(3, 162);
  3443. this.label139.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3444. this.label139.Name = "label139";
  3445. this.label139.Size = new System.Drawing.Size(82, 15);
  3446. this.label139.TabIndex = 61;
  3447. this.label139.Text = "作业类型:";
  3448. //
  3449. // ddjTotal_KM1
  3450. //
  3451. this.ddjTotal_KM1.AutoSize = true;
  3452. this.ddjTotal_KM1.BackColor = System.Drawing.Color.Transparent;
  3453. this.ddjTotal_KM1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3454. this.ddjTotal_KM1.ForeColor = System.Drawing.Color.Blue;
  3455. this.ddjTotal_KM1.Location = new System.Drawing.Point(117, 238);
  3456. this.ddjTotal_KM1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3457. this.ddjTotal_KM1.Name = "ddjTotal_KM1";
  3458. this.ddjTotal_KM1.Size = new System.Drawing.Size(31, 15);
  3459. this.ddjTotal_KM1.TabIndex = 16;
  3460. this.ddjTotal_KM1.Text = "---";
  3461. //
  3462. // label13
  3463. //
  3464. this.label13.AutoSize = true;
  3465. this.label13.BackColor = System.Drawing.Color.Transparent;
  3466. this.label13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3467. this.label13.Location = new System.Drawing.Point(3, 92);
  3468. this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3469. this.label13.Name = "label13";
  3470. this.label13.Size = new System.Drawing.Size(82, 15);
  3471. this.label13.TabIndex = 15;
  3472. this.label13.Text = "工作模式:";
  3473. //
  3474. // ddjWorkTime1
  3475. //
  3476. this.ddjWorkTime1.AutoSize = true;
  3477. this.ddjWorkTime1.BackColor = System.Drawing.Color.Transparent;
  3478. this.ddjWorkTime1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3479. this.ddjWorkTime1.ForeColor = System.Drawing.Color.Red;
  3480. this.ddjWorkTime1.Location = new System.Drawing.Point(116, 212);
  3481. this.ddjWorkTime1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3482. this.ddjWorkTime1.Name = "ddjWorkTime1";
  3483. this.ddjWorkTime1.Size = new System.Drawing.Size(31, 15);
  3484. this.ddjWorkTime1.TabIndex = 14;
  3485. this.ddjWorkTime1.Text = "---";
  3486. //
  3487. // label10
  3488. //
  3489. this.label10.AutoSize = true;
  3490. this.label10.BackColor = System.Drawing.Color.Transparent;
  3491. this.label10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3492. this.label10.Location = new System.Drawing.Point(3, 212);
  3493. this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3494. this.label10.Name = "label10";
  3495. this.label10.Size = new System.Drawing.Size(82, 15);
  3496. this.label10.TabIndex = 13;
  3497. this.label10.Text = "运行时长:";
  3498. //
  3499. // ddjStatus1
  3500. //
  3501. this.ddjStatus1.AutoSize = true;
  3502. this.ddjStatus1.BackColor = System.Drawing.Color.Transparent;
  3503. this.ddjStatus1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3504. this.ddjStatus1.ForeColor = System.Drawing.Color.Blue;
  3505. this.ddjStatus1.Location = new System.Drawing.Point(116, 118);
  3506. this.ddjStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3507. this.ddjStatus1.Name = "ddjStatus1";
  3508. this.ddjStatus1.Size = new System.Drawing.Size(31, 15);
  3509. this.ddjStatus1.TabIndex = 10;
  3510. this.ddjStatus1.Text = "---";
  3511. //
  3512. // ddjPosCurr1
  3513. //
  3514. this.ddjPosCurr1.AutoSize = true;
  3515. this.ddjPosCurr1.BackColor = System.Drawing.Color.Transparent;
  3516. this.ddjPosCurr1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3517. this.ddjPosCurr1.ForeColor = System.Drawing.Color.Blue;
  3518. this.ddjPosCurr1.Location = new System.Drawing.Point(117, 188);
  3519. this.ddjPosCurr1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3520. this.ddjPosCurr1.Name = "ddjPosCurr1";
  3521. this.ddjPosCurr1.Size = new System.Drawing.Size(31, 15);
  3522. this.ddjPosCurr1.TabIndex = 9;
  3523. this.ddjPosCurr1.Text = "---";
  3524. //
  3525. // label5
  3526. //
  3527. this.label5.AutoSize = true;
  3528. this.label5.BackColor = System.Drawing.Color.Transparent;
  3529. this.label5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3530. this.label5.Location = new System.Drawing.Point(3, 238);
  3531. this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3532. this.label5.Name = "label5";
  3533. this.label5.Size = new System.Drawing.Size(83, 15);
  3534. this.label5.TabIndex = 8;
  3535. this.label5.Text = "里 程 数:";
  3536. //
  3537. // label3
  3538. //
  3539. this.label3.AutoSize = true;
  3540. this.label3.BackColor = System.Drawing.Color.Transparent;
  3541. this.label3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3542. this.label3.Location = new System.Drawing.Point(3, 115);
  3543. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3544. this.label3.Name = "label3";
  3545. this.label3.Size = new System.Drawing.Size(82, 15);
  3546. this.label3.TabIndex = 6;
  3547. this.label3.Text = "工作状态:";
  3548. //
  3549. // label2
  3550. //
  3551. this.label2.AutoSize = true;
  3552. this.label2.BackColor = System.Drawing.Color.Transparent;
  3553. this.label2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3554. this.label2.Location = new System.Drawing.Point(3, 188);
  3555. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3556. this.label2.Name = "label2";
  3557. this.label2.Size = new System.Drawing.Size(82, 15);
  3558. this.label2.TabIndex = 1;
  3559. this.label2.Text = "当前位置:";
  3560. //
  3561. // lblsrm01
  3562. //
  3563. this.lblsrm01.AutoSize = true;
  3564. this.lblsrm01.BackColor = System.Drawing.Color.Transparent;
  3565. 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)));
  3566. this.lblsrm01.Location = new System.Drawing.Point(40, 32);
  3567. this.lblsrm01.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3568. this.lblsrm01.Name = "lblsrm01";
  3569. this.lblsrm01.Size = new System.Drawing.Size(115, 20);
  3570. this.lblsrm01.TabIndex = 0;
  3571. this.lblsrm01.Text = "1号 堆垛机";
  3572. this.lblsrm01.Click += new System.EventHandler(this.lblsrm01_Click);
  3573. //
  3574. // G1
  3575. //
  3576. this.G1.BackColor = System.Drawing.Color.Transparent;
  3577. this.G1.Image = ((System.Drawing.Image)(resources.GetObject("G1.Image")));
  3578. this.G1.InitialImage = null;
  3579. this.G1.Location = new System.Drawing.Point(88, -2);
  3580. this.G1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3581. this.G1.Name = "G1";
  3582. this.G1.Size = new System.Drawing.Size(35, 32);
  3583. this.G1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3584. this.G1.TabIndex = 65;
  3585. this.G1.TabStop = false;
  3586. this.G1.Tag = "1";
  3587. //
  3588. // R1
  3589. //
  3590. this.R1.BackColor = System.Drawing.Color.Transparent;
  3591. this.R1.Location = new System.Drawing.Point(87, -2);
  3592. this.R1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3593. this.R1.Name = "R1";
  3594. this.R1.Size = new System.Drawing.Size(35, 32);
  3595. this.R1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3596. this.R1.TabIndex = 5;
  3597. this.R1.TabStop = false;
  3598. //
  3599. // pnlDDJ2
  3600. //
  3601. this.pnlDDJ2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ2.BackgroundImage")));
  3602. this.pnlDDJ2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3603. this.pnlDDJ2.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  3604. this.pnlDDJ2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  3605. this.pnlDDJ2.Controls.Add(this.lblInStatus2);
  3606. this.pnlDDJ2.Controls.Add(this.lblOutStatus2);
  3607. this.pnlDDJ2.Controls.Add(this.lblDDJWarning2);
  3608. this.pnlDDJ2.Controls.Add(this.ddjPosTo2);
  3609. this.pnlDDJ2.Controls.Add(this.ddjPosFrom2);
  3610. this.pnlDDJ2.Controls.Add(this.label15);
  3611. this.pnlDDJ2.Controls.Add(this.label16);
  3612. this.pnlDDJ2.Controls.Add(this.ddjMode2);
  3613. this.pnlDDJ2.Controls.Add(this.ddjOrdId2);
  3614. this.pnlDDJ2.Controls.Add(this.label22);
  3615. this.pnlDDJ2.Controls.Add(this.ddjOptType2);
  3616. this.pnlDDJ2.Controls.Add(this.label26);
  3617. this.pnlDDJ2.Controls.Add(this.ddjTotal_KM2);
  3618. this.pnlDDJ2.Controls.Add(this.label29);
  3619. this.pnlDDJ2.Controls.Add(this.ddjWorkTime2);
  3620. this.pnlDDJ2.Controls.Add(this.label32);
  3621. this.pnlDDJ2.Controls.Add(this.ddjStatus2);
  3622. this.pnlDDJ2.Controls.Add(this.ddjPosCurr2);
  3623. this.pnlDDJ2.Controls.Add(this.label83);
  3624. this.pnlDDJ2.Controls.Add(this.label86);
  3625. this.pnlDDJ2.Controls.Add(this.label87);
  3626. this.pnlDDJ2.Controls.Add(this.lblsrm02);
  3627. this.pnlDDJ2.Controls.Add(this.G2);
  3628. this.pnlDDJ2.Controls.Add(this.pictureBox6);
  3629. this.pnlDDJ2.Location = new System.Drawing.Point(224, 3);
  3630. this.pnlDDJ2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3631. this.pnlDDJ2.Name = "pnlDDJ2";
  3632. this.pnlDDJ2.Size = new System.Drawing.Size(217, 312);
  3633. this.pnlDDJ2.TabIndex = 26;
  3634. //
  3635. // lblInStatus2
  3636. //
  3637. this.lblInStatus2.BackColor = System.Drawing.Color.DarkGray;
  3638. this.lblInStatus2.Location = new System.Drawing.Point(4, 2);
  3639. this.lblInStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3640. this.lblInStatus2.Name = "lblInStatus2";
  3641. this.lblInStatus2.Size = new System.Drawing.Size(37, 30);
  3642. this.lblInStatus2.TabIndex = 95;
  3643. this.lblInStatus2.Tag = "2";
  3644. this.lblInStatus2.Text = "入";
  3645. this.lblInStatus2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3646. //
  3647. // lblOutStatus2
  3648. //
  3649. this.lblOutStatus2.BackColor = System.Drawing.Color.DarkGray;
  3650. this.lblOutStatus2.Location = new System.Drawing.Point(169, 2);
  3651. this.lblOutStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3652. this.lblOutStatus2.Name = "lblOutStatus2";
  3653. this.lblOutStatus2.Size = new System.Drawing.Size(37, 30);
  3654. this.lblOutStatus2.TabIndex = 94;
  3655. this.lblOutStatus2.Text = "出";
  3656. this.lblOutStatus2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3657. //
  3658. // lblDDJWarning2
  3659. //
  3660. this.lblDDJWarning2.BackColor = System.Drawing.Color.Transparent;
  3661. this.lblDDJWarning2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3662. this.lblDDJWarning2.ForeColor = System.Drawing.Color.Red;
  3663. this.lblDDJWarning2.Location = new System.Drawing.Point(5, 58);
  3664. this.lblDDJWarning2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3665. this.lblDDJWarning2.Name = "lblDDJWarning2";
  3666. this.lblDDJWarning2.Size = new System.Drawing.Size(205, 30);
  3667. this.lblDDJWarning2.TabIndex = 93;
  3668. //
  3669. // ddjPosTo2
  3670. //
  3671. this.ddjPosTo2.AutoSize = true;
  3672. this.ddjPosTo2.BackColor = System.Drawing.Color.Transparent;
  3673. this.ddjPosTo2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3674. this.ddjPosTo2.ForeColor = System.Drawing.Color.Blue;
  3675. this.ddjPosTo2.Location = new System.Drawing.Point(123, 290);
  3676. this.ddjPosTo2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3677. this.ddjPosTo2.Name = "ddjPosTo2";
  3678. this.ddjPosTo2.Size = new System.Drawing.Size(31, 15);
  3679. this.ddjPosTo2.TabIndex = 91;
  3680. this.ddjPosTo2.Text = "---";
  3681. //
  3682. // ddjPosFrom2
  3683. //
  3684. this.ddjPosFrom2.AutoSize = true;
  3685. this.ddjPosFrom2.BackColor = System.Drawing.Color.Transparent;
  3686. this.ddjPosFrom2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3687. this.ddjPosFrom2.ForeColor = System.Drawing.Color.Blue;
  3688. this.ddjPosFrom2.Location = new System.Drawing.Point(123, 262);
  3689. this.ddjPosFrom2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3690. this.ddjPosFrom2.Name = "ddjPosFrom2";
  3691. this.ddjPosFrom2.Size = new System.Drawing.Size(31, 15);
  3692. this.ddjPosFrom2.TabIndex = 90;
  3693. this.ddjPosFrom2.Text = "---";
  3694. //
  3695. // label15
  3696. //
  3697. this.label15.AutoSize = true;
  3698. this.label15.BackColor = System.Drawing.Color.Transparent;
  3699. this.label15.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3700. this.label15.Location = new System.Drawing.Point(5, 262);
  3701. this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3702. this.label15.Name = "label15";
  3703. this.label15.Size = new System.Drawing.Size(82, 15);
  3704. this.label15.TabIndex = 89;
  3705. this.label15.Text = "起始位置:";
  3706. //
  3707. // label16
  3708. //
  3709. this.label16.AutoSize = true;
  3710. this.label16.BackColor = System.Drawing.Color.Transparent;
  3711. this.label16.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3712. this.label16.Location = new System.Drawing.Point(5, 290);
  3713. this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3714. this.label16.Name = "label16";
  3715. this.label16.Size = new System.Drawing.Size(82, 15);
  3716. this.label16.TabIndex = 88;
  3717. this.label16.Text = "目标位置:";
  3718. //
  3719. // ddjMode2
  3720. //
  3721. this.ddjMode2.AutoSize = true;
  3722. this.ddjMode2.BackColor = System.Drawing.Color.Transparent;
  3723. this.ddjMode2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3724. this.ddjMode2.ForeColor = System.Drawing.Color.Blue;
  3725. this.ddjMode2.Location = new System.Drawing.Point(120, 90);
  3726. this.ddjMode2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3727. this.ddjMode2.Name = "ddjMode2";
  3728. this.ddjMode2.Size = new System.Drawing.Size(31, 15);
  3729. this.ddjMode2.TabIndex = 79;
  3730. this.ddjMode2.Text = "---";
  3731. //
  3732. // ddjOrdId2
  3733. //
  3734. this.ddjOrdId2.AutoSize = true;
  3735. this.ddjOrdId2.BackColor = System.Drawing.Color.Transparent;
  3736. this.ddjOrdId2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3737. this.ddjOrdId2.ForeColor = System.Drawing.Color.Blue;
  3738. this.ddjOrdId2.Location = new System.Drawing.Point(120, 140);
  3739. this.ddjOrdId2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3740. this.ddjOrdId2.Name = "ddjOrdId2";
  3741. this.ddjOrdId2.Size = new System.Drawing.Size(31, 15);
  3742. this.ddjOrdId2.TabIndex = 87;
  3743. this.ddjOrdId2.Text = "---";
  3744. //
  3745. // label22
  3746. //
  3747. this.label22.AutoSize = true;
  3748. this.label22.BackColor = System.Drawing.Color.Transparent;
  3749. this.label22.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3750. this.label22.Location = new System.Drawing.Point(5, 140);
  3751. this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3752. this.label22.Name = "label22";
  3753. this.label22.Size = new System.Drawing.Size(82, 15);
  3754. this.label22.TabIndex = 86;
  3755. this.label22.Text = "工作指令:";
  3756. //
  3757. // ddjOptType2
  3758. //
  3759. this.ddjOptType2.AutoSize = true;
  3760. this.ddjOptType2.BackColor = System.Drawing.Color.Transparent;
  3761. this.ddjOptType2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3762. this.ddjOptType2.ForeColor = System.Drawing.Color.Blue;
  3763. this.ddjOptType2.Location = new System.Drawing.Point(120, 162);
  3764. this.ddjOptType2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3765. this.ddjOptType2.Name = "ddjOptType2";
  3766. this.ddjOptType2.Size = new System.Drawing.Size(31, 15);
  3767. this.ddjOptType2.TabIndex = 85;
  3768. this.ddjOptType2.Text = "---";
  3769. //
  3770. // label26
  3771. //
  3772. this.label26.AutoSize = true;
  3773. this.label26.BackColor = System.Drawing.Color.Transparent;
  3774. this.label26.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3775. this.label26.Location = new System.Drawing.Point(5, 162);
  3776. this.label26.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3777. this.label26.Name = "label26";
  3778. this.label26.Size = new System.Drawing.Size(82, 15);
  3779. this.label26.TabIndex = 84;
  3780. this.label26.Text = "作业类型:";
  3781. //
  3782. // ddjTotal_KM2
  3783. //
  3784. this.ddjTotal_KM2.AutoSize = true;
  3785. this.ddjTotal_KM2.BackColor = System.Drawing.Color.Transparent;
  3786. this.ddjTotal_KM2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3787. this.ddjTotal_KM2.ForeColor = System.Drawing.Color.Blue;
  3788. this.ddjTotal_KM2.Location = new System.Drawing.Point(121, 238);
  3789. this.ddjTotal_KM2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3790. this.ddjTotal_KM2.Name = "ddjTotal_KM2";
  3791. this.ddjTotal_KM2.Size = new System.Drawing.Size(31, 15);
  3792. this.ddjTotal_KM2.TabIndex = 83;
  3793. this.ddjTotal_KM2.Text = "---";
  3794. //
  3795. // label29
  3796. //
  3797. this.label29.AutoSize = true;
  3798. this.label29.BackColor = System.Drawing.Color.Transparent;
  3799. this.label29.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3800. this.label29.Location = new System.Drawing.Point(5, 90);
  3801. this.label29.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3802. this.label29.Name = "label29";
  3803. this.label29.Size = new System.Drawing.Size(82, 15);
  3804. this.label29.TabIndex = 82;
  3805. this.label29.Text = "工作模式:";
  3806. //
  3807. // ddjWorkTime2
  3808. //
  3809. this.ddjWorkTime2.AutoSize = true;
  3810. this.ddjWorkTime2.BackColor = System.Drawing.Color.Transparent;
  3811. this.ddjWorkTime2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3812. this.ddjWorkTime2.ForeColor = System.Drawing.Color.Red;
  3813. this.ddjWorkTime2.Location = new System.Drawing.Point(121, 212);
  3814. this.ddjWorkTime2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3815. this.ddjWorkTime2.Name = "ddjWorkTime2";
  3816. this.ddjWorkTime2.Size = new System.Drawing.Size(31, 15);
  3817. this.ddjWorkTime2.TabIndex = 81;
  3818. this.ddjWorkTime2.Text = "---";
  3819. //
  3820. // label32
  3821. //
  3822. this.label32.AutoSize = true;
  3823. this.label32.BackColor = System.Drawing.Color.Transparent;
  3824. this.label32.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3825. this.label32.Location = new System.Drawing.Point(5, 212);
  3826. this.label32.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3827. this.label32.Name = "label32";
  3828. this.label32.Size = new System.Drawing.Size(82, 15);
  3829. this.label32.TabIndex = 80;
  3830. this.label32.Text = "运行时长:";
  3831. //
  3832. // ddjStatus2
  3833. //
  3834. this.ddjStatus2.AutoSize = true;
  3835. this.ddjStatus2.BackColor = System.Drawing.Color.Transparent;
  3836. this.ddjStatus2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3837. this.ddjStatus2.ForeColor = System.Drawing.Color.Blue;
  3838. this.ddjStatus2.Location = new System.Drawing.Point(120, 112);
  3839. this.ddjStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3840. this.ddjStatus2.Name = "ddjStatus2";
  3841. this.ddjStatus2.Size = new System.Drawing.Size(31, 15);
  3842. this.ddjStatus2.TabIndex = 78;
  3843. this.ddjStatus2.Text = "---";
  3844. //
  3845. // ddjPosCurr2
  3846. //
  3847. this.ddjPosCurr2.AutoSize = true;
  3848. this.ddjPosCurr2.BackColor = System.Drawing.Color.Transparent;
  3849. this.ddjPosCurr2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3850. this.ddjPosCurr2.ForeColor = System.Drawing.Color.Blue;
  3851. this.ddjPosCurr2.Location = new System.Drawing.Point(121, 185);
  3852. this.ddjPosCurr2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3853. this.ddjPosCurr2.Name = "ddjPosCurr2";
  3854. this.ddjPosCurr2.Size = new System.Drawing.Size(31, 15);
  3855. this.ddjPosCurr2.TabIndex = 77;
  3856. this.ddjPosCurr2.Text = "---";
  3857. //
  3858. // label83
  3859. //
  3860. this.label83.AutoSize = true;
  3861. this.label83.BackColor = System.Drawing.Color.Transparent;
  3862. this.label83.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3863. this.label83.Location = new System.Drawing.Point(5, 238);
  3864. this.label83.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3865. this.label83.Name = "label83";
  3866. this.label83.Size = new System.Drawing.Size(83, 15);
  3867. this.label83.TabIndex = 76;
  3868. this.label83.Text = "里 程 数:";
  3869. //
  3870. // label86
  3871. //
  3872. this.label86.AutoSize = true;
  3873. this.label86.BackColor = System.Drawing.Color.Transparent;
  3874. this.label86.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3875. this.label86.Location = new System.Drawing.Point(5, 112);
  3876. this.label86.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3877. this.label86.Name = "label86";
  3878. this.label86.Size = new System.Drawing.Size(82, 15);
  3879. this.label86.TabIndex = 75;
  3880. this.label86.Text = "工作状态:";
  3881. //
  3882. // label87
  3883. //
  3884. this.label87.AutoSize = true;
  3885. this.label87.BackColor = System.Drawing.Color.Transparent;
  3886. this.label87.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3887. this.label87.Location = new System.Drawing.Point(5, 185);
  3888. this.label87.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3889. this.label87.Name = "label87";
  3890. this.label87.Size = new System.Drawing.Size(82, 15);
  3891. this.label87.TabIndex = 74;
  3892. this.label87.Text = "当前巷道:";
  3893. //
  3894. // lblsrm02
  3895. //
  3896. this.lblsrm02.AutoSize = true;
  3897. this.lblsrm02.BackColor = System.Drawing.Color.Transparent;
  3898. 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)));
  3899. this.lblsrm02.Location = new System.Drawing.Point(51, 32);
  3900. this.lblsrm02.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3901. this.lblsrm02.Name = "lblsrm02";
  3902. this.lblsrm02.Size = new System.Drawing.Size(115, 20);
  3903. this.lblsrm02.TabIndex = 0;
  3904. this.lblsrm02.Text = "2号 堆垛机";
  3905. this.lblsrm02.Click += new System.EventHandler(this.lblsrm01_Click);
  3906. //
  3907. // G2
  3908. //
  3909. this.G2.BackColor = System.Drawing.Color.Transparent;
  3910. this.G2.Image = ((System.Drawing.Image)(resources.GetObject("G2.Image")));
  3911. this.G2.Location = new System.Drawing.Point(91, -2);
  3912. this.G2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3913. this.G2.Name = "G2";
  3914. this.G2.Size = new System.Drawing.Size(35, 32);
  3915. this.G2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3916. this.G2.TabIndex = 65;
  3917. this.G2.TabStop = false;
  3918. this.G2.Tag = "1";
  3919. //
  3920. // pictureBox6
  3921. //
  3922. this.pictureBox6.BackColor = System.Drawing.Color.Transparent;
  3923. this.pictureBox6.Location = new System.Drawing.Point(91, -2);
  3924. this.pictureBox6.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3925. this.pictureBox6.Name = "pictureBox6";
  3926. this.pictureBox6.Size = new System.Drawing.Size(35, 32);
  3927. this.pictureBox6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3928. this.pictureBox6.TabIndex = 5;
  3929. this.pictureBox6.TabStop = false;
  3930. //
  3931. // pnlDDJ3
  3932. //
  3933. this.pnlDDJ3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ3.BackgroundImage")));
  3934. this.pnlDDJ3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3935. this.pnlDDJ3.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  3936. this.pnlDDJ3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  3937. this.pnlDDJ3.Controls.Add(this.lblInStatus3);
  3938. this.pnlDDJ3.Controls.Add(this.lblOutStatus3);
  3939. this.pnlDDJ3.Controls.Add(this.lblDDJWarning3);
  3940. this.pnlDDJ3.Controls.Add(this.ddjPosTo3);
  3941. this.pnlDDJ3.Controls.Add(this.ddjPosFrom3);
  3942. this.pnlDDJ3.Controls.Add(this.label43);
  3943. this.pnlDDJ3.Controls.Add(this.label51);
  3944. this.pnlDDJ3.Controls.Add(this.ddjMode3);
  3945. this.pnlDDJ3.Controls.Add(this.ddjOrdId3);
  3946. this.pnlDDJ3.Controls.Add(this.label55);
  3947. this.pnlDDJ3.Controls.Add(this.ddjOptType3);
  3948. this.pnlDDJ3.Controls.Add(this.label57);
  3949. this.pnlDDJ3.Controls.Add(this.ddjTotal_KM3);
  3950. this.pnlDDJ3.Controls.Add(this.label59);
  3951. this.pnlDDJ3.Controls.Add(this.ddjWorkTime3);
  3952. this.pnlDDJ3.Controls.Add(this.label61);
  3953. this.pnlDDJ3.Controls.Add(this.ddjStatus3);
  3954. this.pnlDDJ3.Controls.Add(this.ddjPosCurr3);
  3955. this.pnlDDJ3.Controls.Add(this.label64);
  3956. this.pnlDDJ3.Controls.Add(this.label65);
  3957. this.pnlDDJ3.Controls.Add(this.label66);
  3958. this.pnlDDJ3.Controls.Add(this.lblsrm03);
  3959. this.pnlDDJ3.Controls.Add(this.G3);
  3960. this.pnlDDJ3.Controls.Add(this.pictureBox10);
  3961. this.pnlDDJ3.Location = new System.Drawing.Point(448, 3);
  3962. this.pnlDDJ3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3963. this.pnlDDJ3.Name = "pnlDDJ3";
  3964. this.pnlDDJ3.Size = new System.Drawing.Size(217, 312);
  3965. this.pnlDDJ3.TabIndex = 28;
  3966. //
  3967. // lblInStatus3
  3968. //
  3969. this.lblInStatus3.BackColor = System.Drawing.Color.DarkGray;
  3970. this.lblInStatus3.Location = new System.Drawing.Point(4, 2);
  3971. this.lblInStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3972. this.lblInStatus3.Name = "lblInStatus3";
  3973. this.lblInStatus3.Size = new System.Drawing.Size(37, 30);
  3974. this.lblInStatus3.TabIndex = 96;
  3975. this.lblInStatus3.Tag = "3";
  3976. this.lblInStatus3.Text = "入";
  3977. this.lblInStatus3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3978. //
  3979. // lblOutStatus3
  3980. //
  3981. this.lblOutStatus3.BackColor = System.Drawing.Color.DarkGray;
  3982. this.lblOutStatus3.Location = new System.Drawing.Point(172, 2);
  3983. this.lblOutStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3984. this.lblOutStatus3.Name = "lblOutStatus3";
  3985. this.lblOutStatus3.Size = new System.Drawing.Size(37, 30);
  3986. this.lblOutStatus3.TabIndex = 94;
  3987. this.lblOutStatus3.Text = "出";
  3988. this.lblOutStatus3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3989. //
  3990. // lblDDJWarning3
  3991. //
  3992. this.lblDDJWarning3.BackColor = System.Drawing.Color.Transparent;
  3993. this.lblDDJWarning3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3994. this.lblDDJWarning3.ForeColor = System.Drawing.Color.Red;
  3995. this.lblDDJWarning3.Location = new System.Drawing.Point(7, 58);
  3996. this.lblDDJWarning3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3997. this.lblDDJWarning3.Name = "lblDDJWarning3";
  3998. this.lblDDJWarning3.Size = new System.Drawing.Size(201, 30);
  3999. this.lblDDJWarning3.TabIndex = 92;
  4000. //
  4001. // ddjPosTo3
  4002. //
  4003. this.ddjPosTo3.AutoSize = true;
  4004. this.ddjPosTo3.BackColor = System.Drawing.Color.Transparent;
  4005. this.ddjPosTo3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4006. this.ddjPosTo3.ForeColor = System.Drawing.Color.Blue;
  4007. this.ddjPosTo3.Location = new System.Drawing.Point(119, 292);
  4008. this.ddjPosTo3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4009. this.ddjPosTo3.Name = "ddjPosTo3";
  4010. this.ddjPosTo3.Size = new System.Drawing.Size(31, 15);
  4011. this.ddjPosTo3.TabIndex = 73;
  4012. this.ddjPosTo3.Text = "---";
  4013. //
  4014. // ddjPosFrom3
  4015. //
  4016. this.ddjPosFrom3.AutoSize = true;
  4017. this.ddjPosFrom3.BackColor = System.Drawing.Color.Transparent;
  4018. this.ddjPosFrom3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4019. this.ddjPosFrom3.ForeColor = System.Drawing.Color.Blue;
  4020. this.ddjPosFrom3.Location = new System.Drawing.Point(119, 265);
  4021. this.ddjPosFrom3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4022. this.ddjPosFrom3.Name = "ddjPosFrom3";
  4023. this.ddjPosFrom3.Size = new System.Drawing.Size(31, 15);
  4024. this.ddjPosFrom3.TabIndex = 72;
  4025. this.ddjPosFrom3.Text = "---";
  4026. //
  4027. // label43
  4028. //
  4029. this.label43.AutoSize = true;
  4030. this.label43.BackColor = System.Drawing.Color.Transparent;
  4031. this.label43.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4032. this.label43.Location = new System.Drawing.Point(4, 265);
  4033. this.label43.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4034. this.label43.Name = "label43";
  4035. this.label43.Size = new System.Drawing.Size(82, 15);
  4036. this.label43.TabIndex = 71;
  4037. this.label43.Text = "起始位置:";
  4038. //
  4039. // label51
  4040. //
  4041. this.label51.AutoSize = true;
  4042. this.label51.BackColor = System.Drawing.Color.Transparent;
  4043. this.label51.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4044. this.label51.Location = new System.Drawing.Point(4, 292);
  4045. this.label51.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4046. this.label51.Name = "label51";
  4047. this.label51.Size = new System.Drawing.Size(82, 15);
  4048. this.label51.TabIndex = 70;
  4049. this.label51.Text = "目标位置:";
  4050. //
  4051. // ddjMode3
  4052. //
  4053. this.ddjMode3.AutoSize = true;
  4054. this.ddjMode3.BackColor = System.Drawing.Color.Transparent;
  4055. this.ddjMode3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4056. this.ddjMode3.ForeColor = System.Drawing.Color.Blue;
  4057. this.ddjMode3.Location = new System.Drawing.Point(116, 92);
  4058. this.ddjMode3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4059. this.ddjMode3.Name = "ddjMode3";
  4060. this.ddjMode3.Size = new System.Drawing.Size(31, 15);
  4061. this.ddjMode3.TabIndex = 12;
  4062. this.ddjMode3.Text = "---";
  4063. //
  4064. // ddjOrdId3
  4065. //
  4066. this.ddjOrdId3.AutoSize = true;
  4067. this.ddjOrdId3.BackColor = System.Drawing.Color.Transparent;
  4068. this.ddjOrdId3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4069. this.ddjOrdId3.ForeColor = System.Drawing.Color.Blue;
  4070. this.ddjOrdId3.Location = new System.Drawing.Point(116, 142);
  4071. this.ddjOrdId3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4072. this.ddjOrdId3.Name = "ddjOrdId3";
  4073. this.ddjOrdId3.Size = new System.Drawing.Size(31, 15);
  4074. this.ddjOrdId3.TabIndex = 64;
  4075. this.ddjOrdId3.Text = "---";
  4076. //
  4077. // label55
  4078. //
  4079. this.label55.AutoSize = true;
  4080. this.label55.BackColor = System.Drawing.Color.Transparent;
  4081. this.label55.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4082. this.label55.Location = new System.Drawing.Point(3, 142);
  4083. this.label55.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4084. this.label55.Name = "label55";
  4085. this.label55.Size = new System.Drawing.Size(82, 15);
  4086. this.label55.TabIndex = 63;
  4087. this.label55.Text = "工作指令:";
  4088. //
  4089. // ddjOptType3
  4090. //
  4091. this.ddjOptType3.AutoSize = true;
  4092. this.ddjOptType3.BackColor = System.Drawing.Color.Transparent;
  4093. this.ddjOptType3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4094. this.ddjOptType3.ForeColor = System.Drawing.Color.Blue;
  4095. this.ddjOptType3.Location = new System.Drawing.Point(116, 162);
  4096. this.ddjOptType3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4097. this.ddjOptType3.Name = "ddjOptType3";
  4098. this.ddjOptType3.Size = new System.Drawing.Size(31, 15);
  4099. this.ddjOptType3.TabIndex = 62;
  4100. this.ddjOptType3.Text = "---";
  4101. //
  4102. // label57
  4103. //
  4104. this.label57.AutoSize = true;
  4105. this.label57.BackColor = System.Drawing.Color.Transparent;
  4106. this.label57.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4107. this.label57.Location = new System.Drawing.Point(3, 162);
  4108. this.label57.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4109. this.label57.Name = "label57";
  4110. this.label57.Size = new System.Drawing.Size(82, 15);
  4111. this.label57.TabIndex = 61;
  4112. this.label57.Text = "作业类型:";
  4113. //
  4114. // ddjTotal_KM3
  4115. //
  4116. this.ddjTotal_KM3.AutoSize = true;
  4117. this.ddjTotal_KM3.BackColor = System.Drawing.Color.Transparent;
  4118. this.ddjTotal_KM3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4119. this.ddjTotal_KM3.ForeColor = System.Drawing.Color.Blue;
  4120. this.ddjTotal_KM3.Location = new System.Drawing.Point(117, 238);
  4121. this.ddjTotal_KM3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4122. this.ddjTotal_KM3.Name = "ddjTotal_KM3";
  4123. this.ddjTotal_KM3.Size = new System.Drawing.Size(31, 15);
  4124. this.ddjTotal_KM3.TabIndex = 16;
  4125. this.ddjTotal_KM3.Text = "---";
  4126. //
  4127. // label59
  4128. //
  4129. this.label59.AutoSize = true;
  4130. this.label59.BackColor = System.Drawing.Color.Transparent;
  4131. this.label59.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4132. this.label59.Location = new System.Drawing.Point(3, 92);
  4133. this.label59.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4134. this.label59.Name = "label59";
  4135. this.label59.Size = new System.Drawing.Size(82, 15);
  4136. this.label59.TabIndex = 15;
  4137. this.label59.Text = "工作模式:";
  4138. //
  4139. // ddjWorkTime3
  4140. //
  4141. this.ddjWorkTime3.AutoSize = true;
  4142. this.ddjWorkTime3.BackColor = System.Drawing.Color.Transparent;
  4143. this.ddjWorkTime3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4144. this.ddjWorkTime3.ForeColor = System.Drawing.Color.Red;
  4145. this.ddjWorkTime3.Location = new System.Drawing.Point(117, 212);
  4146. this.ddjWorkTime3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4147. this.ddjWorkTime3.Name = "ddjWorkTime3";
  4148. this.ddjWorkTime3.Size = new System.Drawing.Size(31, 15);
  4149. this.ddjWorkTime3.TabIndex = 14;
  4150. this.ddjWorkTime3.Text = "---";
  4151. //
  4152. // label61
  4153. //
  4154. this.label61.AutoSize = true;
  4155. this.label61.BackColor = System.Drawing.Color.Transparent;
  4156. this.label61.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4157. this.label61.Location = new System.Drawing.Point(3, 212);
  4158. this.label61.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4159. this.label61.Name = "label61";
  4160. this.label61.Size = new System.Drawing.Size(82, 15);
  4161. this.label61.TabIndex = 13;
  4162. this.label61.Text = "运行时长:";
  4163. //
  4164. // ddjStatus3
  4165. //
  4166. this.ddjStatus3.AutoSize = true;
  4167. this.ddjStatus3.BackColor = System.Drawing.Color.Transparent;
  4168. this.ddjStatus3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4169. this.ddjStatus3.ForeColor = System.Drawing.Color.Blue;
  4170. this.ddjStatus3.Location = new System.Drawing.Point(116, 118);
  4171. this.ddjStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4172. this.ddjStatus3.Name = "ddjStatus3";
  4173. this.ddjStatus3.Size = new System.Drawing.Size(31, 15);
  4174. this.ddjStatus3.TabIndex = 10;
  4175. this.ddjStatus3.Text = "---";
  4176. //
  4177. // ddjPosCurr3
  4178. //
  4179. this.ddjPosCurr3.AutoSize = true;
  4180. this.ddjPosCurr3.BackColor = System.Drawing.Color.Transparent;
  4181. this.ddjPosCurr3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4182. this.ddjPosCurr3.ForeColor = System.Drawing.Color.Blue;
  4183. this.ddjPosCurr3.Location = new System.Drawing.Point(117, 188);
  4184. this.ddjPosCurr3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4185. this.ddjPosCurr3.Name = "ddjPosCurr3";
  4186. this.ddjPosCurr3.Size = new System.Drawing.Size(31, 15);
  4187. this.ddjPosCurr3.TabIndex = 9;
  4188. this.ddjPosCurr3.Text = "---";
  4189. //
  4190. // label64
  4191. //
  4192. this.label64.AutoSize = true;
  4193. this.label64.BackColor = System.Drawing.Color.Transparent;
  4194. this.label64.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4195. this.label64.Location = new System.Drawing.Point(3, 238);
  4196. this.label64.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4197. this.label64.Name = "label64";
  4198. this.label64.Size = new System.Drawing.Size(83, 15);
  4199. this.label64.TabIndex = 8;
  4200. this.label64.Text = "里 程 数:";
  4201. //
  4202. // label65
  4203. //
  4204. this.label65.AutoSize = true;
  4205. this.label65.BackColor = System.Drawing.Color.Transparent;
  4206. this.label65.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4207. this.label65.Location = new System.Drawing.Point(3, 115);
  4208. this.label65.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4209. this.label65.Name = "label65";
  4210. this.label65.Size = new System.Drawing.Size(82, 15);
  4211. this.label65.TabIndex = 6;
  4212. this.label65.Text = "工作状态:";
  4213. //
  4214. // label66
  4215. //
  4216. this.label66.AutoSize = true;
  4217. this.label66.BackColor = System.Drawing.Color.Transparent;
  4218. this.label66.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4219. this.label66.Location = new System.Drawing.Point(3, 188);
  4220. this.label66.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4221. this.label66.Name = "label66";
  4222. this.label66.Size = new System.Drawing.Size(82, 15);
  4223. this.label66.TabIndex = 1;
  4224. this.label66.Text = "当前巷道:";
  4225. //
  4226. // lblsrm03
  4227. //
  4228. this.lblsrm03.AutoSize = true;
  4229. this.lblsrm03.BackColor = System.Drawing.Color.Transparent;
  4230. 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)));
  4231. this.lblsrm03.Location = new System.Drawing.Point(40, 32);
  4232. this.lblsrm03.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4233. this.lblsrm03.Name = "lblsrm03";
  4234. this.lblsrm03.Size = new System.Drawing.Size(115, 20);
  4235. this.lblsrm03.TabIndex = 0;
  4236. this.lblsrm03.Text = "3号 堆垛机";
  4237. this.lblsrm03.Click += new System.EventHandler(this.lblsrm01_Click);
  4238. //
  4239. // G3
  4240. //
  4241. this.G3.BackColor = System.Drawing.Color.Transparent;
  4242. this.G3.Image = ((System.Drawing.Image)(resources.GetObject("G3.Image")));
  4243. this.G3.Location = new System.Drawing.Point(88, -2);
  4244. this.G3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4245. this.G3.Name = "G3";
  4246. this.G3.Size = new System.Drawing.Size(35, 32);
  4247. this.G3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4248. this.G3.TabIndex = 65;
  4249. this.G3.TabStop = false;
  4250. this.G3.Tag = "1";
  4251. //
  4252. // pictureBox10
  4253. //
  4254. this.pictureBox10.BackColor = System.Drawing.Color.Transparent;
  4255. this.pictureBox10.Location = new System.Drawing.Point(87, -2);
  4256. this.pictureBox10.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4257. this.pictureBox10.Name = "pictureBox10";
  4258. this.pictureBox10.Size = new System.Drawing.Size(35, 32);
  4259. this.pictureBox10.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4260. this.pictureBox10.TabIndex = 5;
  4261. this.pictureBox10.TabStop = false;
  4262. //
  4263. // pnlDDJ4
  4264. //
  4265. this.pnlDDJ4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ4.BackgroundImage")));
  4266. this.pnlDDJ4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4267. this.pnlDDJ4.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  4268. this.pnlDDJ4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  4269. this.pnlDDJ4.Controls.Add(this.lblInStatus4);
  4270. this.pnlDDJ4.Controls.Add(this.lblOutStatus4);
  4271. this.pnlDDJ4.Controls.Add(this.lblDDJWarning4);
  4272. this.pnlDDJ4.Controls.Add(this.ddjPosTo4);
  4273. this.pnlDDJ4.Controls.Add(this.ddjPosFrom4);
  4274. this.pnlDDJ4.Controls.Add(this.label71);
  4275. this.pnlDDJ4.Controls.Add(this.label72);
  4276. this.pnlDDJ4.Controls.Add(this.ddjMode4);
  4277. this.pnlDDJ4.Controls.Add(this.ddjOrdId4);
  4278. this.pnlDDJ4.Controls.Add(this.label75);
  4279. this.pnlDDJ4.Controls.Add(this.ddjOptType4);
  4280. this.pnlDDJ4.Controls.Add(this.label77);
  4281. this.pnlDDJ4.Controls.Add(this.ddjTotal_KM4);
  4282. this.pnlDDJ4.Controls.Add(this.label79);
  4283. this.pnlDDJ4.Controls.Add(this.ddjWorkTime4);
  4284. this.pnlDDJ4.Controls.Add(this.label81);
  4285. this.pnlDDJ4.Controls.Add(this.ddjStatus4);
  4286. this.pnlDDJ4.Controls.Add(this.ddjPosCurr4);
  4287. this.pnlDDJ4.Controls.Add(this.label89);
  4288. this.pnlDDJ4.Controls.Add(this.label90);
  4289. this.pnlDDJ4.Controls.Add(this.label91);
  4290. this.pnlDDJ4.Controls.Add(this.lblsrm04);
  4291. this.pnlDDJ4.Controls.Add(this.G4);
  4292. this.pnlDDJ4.Controls.Add(this.pictureBox14);
  4293. this.pnlDDJ4.Location = new System.Drawing.Point(672, 2);
  4294. this.pnlDDJ4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4295. this.pnlDDJ4.Name = "pnlDDJ4";
  4296. this.pnlDDJ4.Size = new System.Drawing.Size(217, 312);
  4297. this.pnlDDJ4.TabIndex = 29;
  4298. //
  4299. // lblInStatus4
  4300. //
  4301. this.lblInStatus4.BackColor = System.Drawing.Color.DarkGray;
  4302. this.lblInStatus4.Location = new System.Drawing.Point(7, 2);
  4303. this.lblInStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4304. this.lblInStatus4.Name = "lblInStatus4";
  4305. this.lblInStatus4.Size = new System.Drawing.Size(37, 30);
  4306. this.lblInStatus4.TabIndex = 97;
  4307. this.lblInStatus4.Tag = "4";
  4308. this.lblInStatus4.Text = "入";
  4309. this.lblInStatus4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4310. //
  4311. // lblOutStatus4
  4312. //
  4313. this.lblOutStatus4.BackColor = System.Drawing.Color.DarkGray;
  4314. this.lblOutStatus4.Location = new System.Drawing.Point(165, 2);
  4315. this.lblOutStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4316. this.lblOutStatus4.Name = "lblOutStatus4";
  4317. this.lblOutStatus4.Size = new System.Drawing.Size(37, 30);
  4318. this.lblOutStatus4.TabIndex = 94;
  4319. this.lblOutStatus4.Text = "出";
  4320. this.lblOutStatus4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4321. //
  4322. // lblDDJWarning4
  4323. //
  4324. this.lblDDJWarning4.BackColor = System.Drawing.Color.Transparent;
  4325. this.lblDDJWarning4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4326. this.lblDDJWarning4.ForeColor = System.Drawing.Color.Red;
  4327. this.lblDDJWarning4.Location = new System.Drawing.Point(7, 58);
  4328. this.lblDDJWarning4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4329. this.lblDDJWarning4.Name = "lblDDJWarning4";
  4330. this.lblDDJWarning4.Size = new System.Drawing.Size(201, 30);
  4331. this.lblDDJWarning4.TabIndex = 92;
  4332. //
  4333. // ddjPosTo4
  4334. //
  4335. this.ddjPosTo4.AutoSize = true;
  4336. this.ddjPosTo4.BackColor = System.Drawing.Color.Transparent;
  4337. this.ddjPosTo4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4338. this.ddjPosTo4.ForeColor = System.Drawing.Color.Blue;
  4339. this.ddjPosTo4.Location = new System.Drawing.Point(119, 292);
  4340. this.ddjPosTo4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4341. this.ddjPosTo4.Name = "ddjPosTo4";
  4342. this.ddjPosTo4.Size = new System.Drawing.Size(31, 15);
  4343. this.ddjPosTo4.TabIndex = 73;
  4344. this.ddjPosTo4.Text = "---";
  4345. //
  4346. // ddjPosFrom4
  4347. //
  4348. this.ddjPosFrom4.AutoSize = true;
  4349. this.ddjPosFrom4.BackColor = System.Drawing.Color.Transparent;
  4350. this.ddjPosFrom4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4351. this.ddjPosFrom4.ForeColor = System.Drawing.Color.Blue;
  4352. this.ddjPosFrom4.Location = new System.Drawing.Point(119, 265);
  4353. this.ddjPosFrom4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4354. this.ddjPosFrom4.Name = "ddjPosFrom4";
  4355. this.ddjPosFrom4.Size = new System.Drawing.Size(31, 15);
  4356. this.ddjPosFrom4.TabIndex = 72;
  4357. this.ddjPosFrom4.Text = "---";
  4358. //
  4359. // label71
  4360. //
  4361. this.label71.AutoSize = true;
  4362. this.label71.BackColor = System.Drawing.Color.Transparent;
  4363. this.label71.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4364. this.label71.Location = new System.Drawing.Point(4, 265);
  4365. this.label71.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4366. this.label71.Name = "label71";
  4367. this.label71.Size = new System.Drawing.Size(82, 15);
  4368. this.label71.TabIndex = 71;
  4369. this.label71.Text = "起始位置:";
  4370. //
  4371. // label72
  4372. //
  4373. this.label72.AutoSize = true;
  4374. this.label72.BackColor = System.Drawing.Color.Transparent;
  4375. this.label72.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4376. this.label72.Location = new System.Drawing.Point(4, 292);
  4377. this.label72.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4378. this.label72.Name = "label72";
  4379. this.label72.Size = new System.Drawing.Size(82, 15);
  4380. this.label72.TabIndex = 70;
  4381. this.label72.Text = "目标位置:";
  4382. //
  4383. // ddjMode4
  4384. //
  4385. this.ddjMode4.AutoSize = true;
  4386. this.ddjMode4.BackColor = System.Drawing.Color.Transparent;
  4387. this.ddjMode4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4388. this.ddjMode4.ForeColor = System.Drawing.Color.Blue;
  4389. this.ddjMode4.Location = new System.Drawing.Point(116, 92);
  4390. this.ddjMode4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4391. this.ddjMode4.Name = "ddjMode4";
  4392. this.ddjMode4.Size = new System.Drawing.Size(31, 15);
  4393. this.ddjMode4.TabIndex = 12;
  4394. this.ddjMode4.Text = "---";
  4395. //
  4396. // ddjOrdId4
  4397. //
  4398. this.ddjOrdId4.AutoSize = true;
  4399. this.ddjOrdId4.BackColor = System.Drawing.Color.Transparent;
  4400. this.ddjOrdId4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4401. this.ddjOrdId4.ForeColor = System.Drawing.Color.Blue;
  4402. this.ddjOrdId4.Location = new System.Drawing.Point(116, 142);
  4403. this.ddjOrdId4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4404. this.ddjOrdId4.Name = "ddjOrdId4";
  4405. this.ddjOrdId4.Size = new System.Drawing.Size(31, 15);
  4406. this.ddjOrdId4.TabIndex = 64;
  4407. this.ddjOrdId4.Text = "---";
  4408. //
  4409. // label75
  4410. //
  4411. this.label75.AutoSize = true;
  4412. this.label75.BackColor = System.Drawing.Color.Transparent;
  4413. this.label75.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4414. this.label75.Location = new System.Drawing.Point(3, 142);
  4415. this.label75.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4416. this.label75.Name = "label75";
  4417. this.label75.Size = new System.Drawing.Size(82, 15);
  4418. this.label75.TabIndex = 63;
  4419. this.label75.Text = "工作指令:";
  4420. //
  4421. // ddjOptType4
  4422. //
  4423. this.ddjOptType4.AutoSize = true;
  4424. this.ddjOptType4.BackColor = System.Drawing.Color.Transparent;
  4425. this.ddjOptType4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4426. this.ddjOptType4.ForeColor = System.Drawing.Color.Blue;
  4427. this.ddjOptType4.Location = new System.Drawing.Point(116, 162);
  4428. this.ddjOptType4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4429. this.ddjOptType4.Name = "ddjOptType4";
  4430. this.ddjOptType4.Size = new System.Drawing.Size(31, 15);
  4431. this.ddjOptType4.TabIndex = 62;
  4432. this.ddjOptType4.Text = "---";
  4433. //
  4434. // label77
  4435. //
  4436. this.label77.AutoSize = true;
  4437. this.label77.BackColor = System.Drawing.Color.Transparent;
  4438. this.label77.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4439. this.label77.Location = new System.Drawing.Point(3, 162);
  4440. this.label77.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4441. this.label77.Name = "label77";
  4442. this.label77.Size = new System.Drawing.Size(82, 15);
  4443. this.label77.TabIndex = 61;
  4444. this.label77.Text = "作业类型:";
  4445. //
  4446. // ddjTotal_KM4
  4447. //
  4448. this.ddjTotal_KM4.AutoSize = true;
  4449. this.ddjTotal_KM4.BackColor = System.Drawing.Color.Transparent;
  4450. this.ddjTotal_KM4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4451. this.ddjTotal_KM4.ForeColor = System.Drawing.Color.Blue;
  4452. this.ddjTotal_KM4.Location = new System.Drawing.Point(117, 238);
  4453. this.ddjTotal_KM4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4454. this.ddjTotal_KM4.Name = "ddjTotal_KM4";
  4455. this.ddjTotal_KM4.Size = new System.Drawing.Size(31, 15);
  4456. this.ddjTotal_KM4.TabIndex = 16;
  4457. this.ddjTotal_KM4.Text = "---";
  4458. //
  4459. // label79
  4460. //
  4461. this.label79.AutoSize = true;
  4462. this.label79.BackColor = System.Drawing.Color.Transparent;
  4463. this.label79.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4464. this.label79.Location = new System.Drawing.Point(3, 92);
  4465. this.label79.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4466. this.label79.Name = "label79";
  4467. this.label79.Size = new System.Drawing.Size(82, 15);
  4468. this.label79.TabIndex = 15;
  4469. this.label79.Text = "工作模式:";
  4470. //
  4471. // ddjWorkTime4
  4472. //
  4473. this.ddjWorkTime4.AutoSize = true;
  4474. this.ddjWorkTime4.BackColor = System.Drawing.Color.Transparent;
  4475. this.ddjWorkTime4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4476. this.ddjWorkTime4.ForeColor = System.Drawing.Color.Red;
  4477. this.ddjWorkTime4.Location = new System.Drawing.Point(117, 212);
  4478. this.ddjWorkTime4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4479. this.ddjWorkTime4.Name = "ddjWorkTime4";
  4480. this.ddjWorkTime4.Size = new System.Drawing.Size(31, 15);
  4481. this.ddjWorkTime4.TabIndex = 14;
  4482. this.ddjWorkTime4.Text = "---";
  4483. //
  4484. // label81
  4485. //
  4486. this.label81.AutoSize = true;
  4487. this.label81.BackColor = System.Drawing.Color.Transparent;
  4488. this.label81.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4489. this.label81.Location = new System.Drawing.Point(3, 212);
  4490. this.label81.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4491. this.label81.Name = "label81";
  4492. this.label81.Size = new System.Drawing.Size(82, 15);
  4493. this.label81.TabIndex = 13;
  4494. this.label81.Text = "运行时长:";
  4495. //
  4496. // ddjStatus4
  4497. //
  4498. this.ddjStatus4.AutoSize = true;
  4499. this.ddjStatus4.BackColor = System.Drawing.Color.Transparent;
  4500. this.ddjStatus4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4501. this.ddjStatus4.ForeColor = System.Drawing.Color.Blue;
  4502. this.ddjStatus4.Location = new System.Drawing.Point(116, 115);
  4503. this.ddjStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4504. this.ddjStatus4.Name = "ddjStatus4";
  4505. this.ddjStatus4.Size = new System.Drawing.Size(31, 15);
  4506. this.ddjStatus4.TabIndex = 10;
  4507. this.ddjStatus4.Text = "---";
  4508. //
  4509. // ddjPosCurr4
  4510. //
  4511. this.ddjPosCurr4.AutoSize = true;
  4512. this.ddjPosCurr4.BackColor = System.Drawing.Color.Transparent;
  4513. this.ddjPosCurr4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4514. this.ddjPosCurr4.ForeColor = System.Drawing.Color.Blue;
  4515. this.ddjPosCurr4.Location = new System.Drawing.Point(117, 188);
  4516. this.ddjPosCurr4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4517. this.ddjPosCurr4.Name = "ddjPosCurr4";
  4518. this.ddjPosCurr4.Size = new System.Drawing.Size(31, 15);
  4519. this.ddjPosCurr4.TabIndex = 9;
  4520. this.ddjPosCurr4.Text = "---";
  4521. //
  4522. // label89
  4523. //
  4524. this.label89.AutoSize = true;
  4525. this.label89.BackColor = System.Drawing.Color.Transparent;
  4526. this.label89.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4527. this.label89.Location = new System.Drawing.Point(3, 238);
  4528. this.label89.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4529. this.label89.Name = "label89";
  4530. this.label89.Size = new System.Drawing.Size(83, 15);
  4531. this.label89.TabIndex = 8;
  4532. this.label89.Text = "里 程 数:";
  4533. //
  4534. // label90
  4535. //
  4536. this.label90.AutoSize = true;
  4537. this.label90.BackColor = System.Drawing.Color.Transparent;
  4538. this.label90.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4539. this.label90.Location = new System.Drawing.Point(3, 115);
  4540. this.label90.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4541. this.label90.Name = "label90";
  4542. this.label90.Size = new System.Drawing.Size(82, 15);
  4543. this.label90.TabIndex = 6;
  4544. this.label90.Text = "工作状态:";
  4545. //
  4546. // label91
  4547. //
  4548. this.label91.AutoSize = true;
  4549. this.label91.BackColor = System.Drawing.Color.Transparent;
  4550. this.label91.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4551. this.label91.Location = new System.Drawing.Point(3, 188);
  4552. this.label91.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4553. this.label91.Name = "label91";
  4554. this.label91.Size = new System.Drawing.Size(82, 15);
  4555. this.label91.TabIndex = 1;
  4556. this.label91.Text = "当前巷道:";
  4557. //
  4558. // lblsrm04
  4559. //
  4560. this.lblsrm04.AutoSize = true;
  4561. this.lblsrm04.BackColor = System.Drawing.Color.Transparent;
  4562. 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)));
  4563. this.lblsrm04.Location = new System.Drawing.Point(40, 32);
  4564. this.lblsrm04.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4565. this.lblsrm04.Name = "lblsrm04";
  4566. this.lblsrm04.Size = new System.Drawing.Size(115, 20);
  4567. this.lblsrm04.TabIndex = 0;
  4568. this.lblsrm04.Text = "4号 堆垛机";
  4569. this.lblsrm04.Click += new System.EventHandler(this.lblsrm01_Click);
  4570. //
  4571. // G4
  4572. //
  4573. this.G4.BackColor = System.Drawing.Color.Transparent;
  4574. this.G4.Image = ((System.Drawing.Image)(resources.GetObject("G4.Image")));
  4575. this.G4.Location = new System.Drawing.Point(88, -2);
  4576. this.G4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4577. this.G4.Name = "G4";
  4578. this.G4.Size = new System.Drawing.Size(35, 32);
  4579. this.G4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4580. this.G4.TabIndex = 65;
  4581. this.G4.TabStop = false;
  4582. this.G4.Tag = "1";
  4583. //
  4584. // pictureBox14
  4585. //
  4586. this.pictureBox14.BackColor = System.Drawing.Color.Transparent;
  4587. this.pictureBox14.Location = new System.Drawing.Point(87, -2);
  4588. this.pictureBox14.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4589. this.pictureBox14.Name = "pictureBox14";
  4590. this.pictureBox14.Size = new System.Drawing.Size(35, 32);
  4591. this.pictureBox14.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4592. this.pictureBox14.TabIndex = 5;
  4593. this.pictureBox14.TabStop = false;
  4594. //
  4595. // myPanel1
  4596. //
  4597. this.myPanel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel1.BackgroundImage")));
  4598. this.myPanel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4599. this.myPanel1.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  4600. this.myPanel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  4601. this.myPanel1.Controls.Add(this.lblInStatus5);
  4602. this.myPanel1.Controls.Add(this.lblOutStatus5);
  4603. this.myPanel1.Controls.Add(this.label11);
  4604. this.myPanel1.Controls.Add(this.ddjPosTo5);
  4605. this.myPanel1.Controls.Add(this.ddjPosFrom5);
  4606. this.myPanel1.Controls.Add(this.label17);
  4607. this.myPanel1.Controls.Add(this.label18);
  4608. this.myPanel1.Controls.Add(this.ddjMode5);
  4609. this.myPanel1.Controls.Add(this.ddjOrdId5);
  4610. this.myPanel1.Controls.Add(this.label21);
  4611. this.myPanel1.Controls.Add(this.ddjOptType5);
  4612. this.myPanel1.Controls.Add(this.label24);
  4613. this.myPanel1.Controls.Add(this.ddjTotal_KM5);
  4614. this.myPanel1.Controls.Add(this.label27);
  4615. this.myPanel1.Controls.Add(this.ddjWorkTime5);
  4616. this.myPanel1.Controls.Add(this.label30);
  4617. this.myPanel1.Controls.Add(this.ddjStatus5);
  4618. this.myPanel1.Controls.Add(this.ddjPosCurr5);
  4619. this.myPanel1.Controls.Add(this.label36);
  4620. this.myPanel1.Controls.Add(this.label37);
  4621. this.myPanel1.Controls.Add(this.label38);
  4622. this.myPanel1.Controls.Add(this.lblsrm05);
  4623. this.myPanel1.Controls.Add(this.G5);
  4624. this.myPanel1.Controls.Add(this.pictureBox3);
  4625. this.myPanel1.Location = new System.Drawing.Point(896, 2);
  4626. this.myPanel1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4627. this.myPanel1.Name = "myPanel1";
  4628. this.myPanel1.Size = new System.Drawing.Size(217, 312);
  4629. this.myPanel1.TabIndex = 30;
  4630. //
  4631. // lblInStatus5
  4632. //
  4633. this.lblInStatus5.BackColor = System.Drawing.Color.DarkGray;
  4634. this.lblInStatus5.Location = new System.Drawing.Point(7, 2);
  4635. this.lblInStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4636. this.lblInStatus5.Name = "lblInStatus5";
  4637. this.lblInStatus5.Size = new System.Drawing.Size(37, 30);
  4638. this.lblInStatus5.TabIndex = 97;
  4639. this.lblInStatus5.Tag = "4";
  4640. this.lblInStatus5.Text = "入";
  4641. this.lblInStatus5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4642. //
  4643. // lblOutStatus5
  4644. //
  4645. this.lblOutStatus5.BackColor = System.Drawing.Color.DarkGray;
  4646. this.lblOutStatus5.Location = new System.Drawing.Point(165, 2);
  4647. this.lblOutStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4648. this.lblOutStatus5.Name = "lblOutStatus5";
  4649. this.lblOutStatus5.Size = new System.Drawing.Size(37, 30);
  4650. this.lblOutStatus5.TabIndex = 94;
  4651. this.lblOutStatus5.Text = "出";
  4652. this.lblOutStatus5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4653. //
  4654. // label11
  4655. //
  4656. this.label11.BackColor = System.Drawing.Color.Transparent;
  4657. this.label11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4658. this.label11.ForeColor = System.Drawing.Color.Red;
  4659. this.label11.Location = new System.Drawing.Point(7, 58);
  4660. this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4661. this.label11.Name = "label11";
  4662. this.label11.Size = new System.Drawing.Size(201, 30);
  4663. this.label11.TabIndex = 92;
  4664. //
  4665. // ddjPosTo5
  4666. //
  4667. this.ddjPosTo5.AutoSize = true;
  4668. this.ddjPosTo5.BackColor = System.Drawing.Color.Transparent;
  4669. this.ddjPosTo5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4670. this.ddjPosTo5.ForeColor = System.Drawing.Color.Blue;
  4671. this.ddjPosTo5.Location = new System.Drawing.Point(119, 292);
  4672. this.ddjPosTo5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4673. this.ddjPosTo5.Name = "ddjPosTo5";
  4674. this.ddjPosTo5.Size = new System.Drawing.Size(31, 15);
  4675. this.ddjPosTo5.TabIndex = 73;
  4676. this.ddjPosTo5.Text = "---";
  4677. //
  4678. // ddjPosFrom5
  4679. //
  4680. this.ddjPosFrom5.AutoSize = true;
  4681. this.ddjPosFrom5.BackColor = System.Drawing.Color.Transparent;
  4682. this.ddjPosFrom5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4683. this.ddjPosFrom5.ForeColor = System.Drawing.Color.Blue;
  4684. this.ddjPosFrom5.Location = new System.Drawing.Point(119, 265);
  4685. this.ddjPosFrom5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4686. this.ddjPosFrom5.Name = "ddjPosFrom5";
  4687. this.ddjPosFrom5.Size = new System.Drawing.Size(31, 15);
  4688. this.ddjPosFrom5.TabIndex = 72;
  4689. this.ddjPosFrom5.Text = "---";
  4690. //
  4691. // label17
  4692. //
  4693. this.label17.AutoSize = true;
  4694. this.label17.BackColor = System.Drawing.Color.Transparent;
  4695. this.label17.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4696. this.label17.Location = new System.Drawing.Point(4, 265);
  4697. this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4698. this.label17.Name = "label17";
  4699. this.label17.Size = new System.Drawing.Size(82, 15);
  4700. this.label17.TabIndex = 71;
  4701. this.label17.Text = "起始位置:";
  4702. //
  4703. // label18
  4704. //
  4705. this.label18.AutoSize = true;
  4706. this.label18.BackColor = System.Drawing.Color.Transparent;
  4707. this.label18.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4708. this.label18.Location = new System.Drawing.Point(4, 292);
  4709. this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4710. this.label18.Name = "label18";
  4711. this.label18.Size = new System.Drawing.Size(82, 15);
  4712. this.label18.TabIndex = 70;
  4713. this.label18.Text = "目标位置:";
  4714. //
  4715. // ddjMode5
  4716. //
  4717. this.ddjMode5.AutoSize = true;
  4718. this.ddjMode5.BackColor = System.Drawing.Color.Transparent;
  4719. this.ddjMode5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4720. this.ddjMode5.ForeColor = System.Drawing.Color.Blue;
  4721. this.ddjMode5.Location = new System.Drawing.Point(116, 92);
  4722. this.ddjMode5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4723. this.ddjMode5.Name = "ddjMode5";
  4724. this.ddjMode5.Size = new System.Drawing.Size(31, 15);
  4725. this.ddjMode5.TabIndex = 12;
  4726. this.ddjMode5.Text = "---";
  4727. //
  4728. // ddjOrdId5
  4729. //
  4730. this.ddjOrdId5.AutoSize = true;
  4731. this.ddjOrdId5.BackColor = System.Drawing.Color.Transparent;
  4732. this.ddjOrdId5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4733. this.ddjOrdId5.ForeColor = System.Drawing.Color.Blue;
  4734. this.ddjOrdId5.Location = new System.Drawing.Point(116, 142);
  4735. this.ddjOrdId5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4736. this.ddjOrdId5.Name = "ddjOrdId5";
  4737. this.ddjOrdId5.Size = new System.Drawing.Size(31, 15);
  4738. this.ddjOrdId5.TabIndex = 64;
  4739. this.ddjOrdId5.Text = "---";
  4740. //
  4741. // label21
  4742. //
  4743. this.label21.AutoSize = true;
  4744. this.label21.BackColor = System.Drawing.Color.Transparent;
  4745. this.label21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4746. this.label21.Location = new System.Drawing.Point(3, 142);
  4747. this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4748. this.label21.Name = "label21";
  4749. this.label21.Size = new System.Drawing.Size(82, 15);
  4750. this.label21.TabIndex = 63;
  4751. this.label21.Text = "工作指令:";
  4752. //
  4753. // ddjOptType5
  4754. //
  4755. this.ddjOptType5.AutoSize = true;
  4756. this.ddjOptType5.BackColor = System.Drawing.Color.Transparent;
  4757. this.ddjOptType5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4758. this.ddjOptType5.ForeColor = System.Drawing.Color.Blue;
  4759. this.ddjOptType5.Location = new System.Drawing.Point(116, 162);
  4760. this.ddjOptType5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4761. this.ddjOptType5.Name = "ddjOptType5";
  4762. this.ddjOptType5.Size = new System.Drawing.Size(31, 15);
  4763. this.ddjOptType5.TabIndex = 62;
  4764. this.ddjOptType5.Text = "---";
  4765. //
  4766. // label24
  4767. //
  4768. this.label24.AutoSize = true;
  4769. this.label24.BackColor = System.Drawing.Color.Transparent;
  4770. this.label24.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4771. this.label24.Location = new System.Drawing.Point(3, 162);
  4772. this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4773. this.label24.Name = "label24";
  4774. this.label24.Size = new System.Drawing.Size(82, 15);
  4775. this.label24.TabIndex = 61;
  4776. this.label24.Text = "作业类型:";
  4777. //
  4778. // ddjTotal_KM5
  4779. //
  4780. this.ddjTotal_KM5.AutoSize = true;
  4781. this.ddjTotal_KM5.BackColor = System.Drawing.Color.Transparent;
  4782. this.ddjTotal_KM5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4783. this.ddjTotal_KM5.ForeColor = System.Drawing.SystemColors.ControlText;
  4784. this.ddjTotal_KM5.Location = new System.Drawing.Point(117, 238);
  4785. this.ddjTotal_KM5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4786. this.ddjTotal_KM5.Name = "ddjTotal_KM5";
  4787. this.ddjTotal_KM5.Size = new System.Drawing.Size(31, 15);
  4788. this.ddjTotal_KM5.TabIndex = 16;
  4789. this.ddjTotal_KM5.Text = "---";
  4790. //
  4791. // label27
  4792. //
  4793. this.label27.AutoSize = true;
  4794. this.label27.BackColor = System.Drawing.Color.Transparent;
  4795. this.label27.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4796. this.label27.Location = new System.Drawing.Point(3, 92);
  4797. this.label27.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4798. this.label27.Name = "label27";
  4799. this.label27.Size = new System.Drawing.Size(82, 15);
  4800. this.label27.TabIndex = 15;
  4801. this.label27.Text = "工作模式:";
  4802. //
  4803. // ddjWorkTime5
  4804. //
  4805. this.ddjWorkTime5.AutoSize = true;
  4806. this.ddjWorkTime5.BackColor = System.Drawing.Color.Transparent;
  4807. this.ddjWorkTime5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4808. this.ddjWorkTime5.ForeColor = System.Drawing.Color.Red;
  4809. this.ddjWorkTime5.Location = new System.Drawing.Point(117, 212);
  4810. this.ddjWorkTime5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4811. this.ddjWorkTime5.Name = "ddjWorkTime5";
  4812. this.ddjWorkTime5.Size = new System.Drawing.Size(31, 15);
  4813. this.ddjWorkTime5.TabIndex = 14;
  4814. this.ddjWorkTime5.Text = "---";
  4815. //
  4816. // label30
  4817. //
  4818. this.label30.AutoSize = true;
  4819. this.label30.BackColor = System.Drawing.Color.Transparent;
  4820. this.label30.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4821. this.label30.Location = new System.Drawing.Point(3, 212);
  4822. this.label30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4823. this.label30.Name = "label30";
  4824. this.label30.Size = new System.Drawing.Size(82, 15);
  4825. this.label30.TabIndex = 13;
  4826. this.label30.Text = "运行时长:";
  4827. //
  4828. // ddjStatus5
  4829. //
  4830. this.ddjStatus5.AutoSize = true;
  4831. this.ddjStatus5.BackColor = System.Drawing.Color.Transparent;
  4832. this.ddjStatus5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4833. this.ddjStatus5.ForeColor = System.Drawing.Color.Blue;
  4834. this.ddjStatus5.Location = new System.Drawing.Point(116, 115);
  4835. this.ddjStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4836. this.ddjStatus5.Name = "ddjStatus5";
  4837. this.ddjStatus5.Size = new System.Drawing.Size(31, 15);
  4838. this.ddjStatus5.TabIndex = 10;
  4839. this.ddjStatus5.Text = "---";
  4840. //
  4841. // ddjPosCurr5
  4842. //
  4843. this.ddjPosCurr5.AutoSize = true;
  4844. this.ddjPosCurr5.BackColor = System.Drawing.Color.Transparent;
  4845. this.ddjPosCurr5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4846. this.ddjPosCurr5.ForeColor = System.Drawing.Color.Blue;
  4847. this.ddjPosCurr5.Location = new System.Drawing.Point(117, 188);
  4848. this.ddjPosCurr5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4849. this.ddjPosCurr5.Name = "ddjPosCurr5";
  4850. this.ddjPosCurr5.Size = new System.Drawing.Size(31, 15);
  4851. this.ddjPosCurr5.TabIndex = 9;
  4852. this.ddjPosCurr5.Text = "---";
  4853. //
  4854. // label36
  4855. //
  4856. this.label36.AutoSize = true;
  4857. this.label36.BackColor = System.Drawing.Color.Transparent;
  4858. this.label36.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4859. this.label36.ForeColor = System.Drawing.SystemColors.ControlText;
  4860. this.label36.Location = new System.Drawing.Point(3, 238);
  4861. this.label36.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4862. this.label36.Name = "label36";
  4863. this.label36.Size = new System.Drawing.Size(83, 15);
  4864. this.label36.TabIndex = 8;
  4865. this.label36.Text = "里 程 数:";
  4866. //
  4867. // label37
  4868. //
  4869. this.label37.AutoSize = true;
  4870. this.label37.BackColor = System.Drawing.Color.Transparent;
  4871. this.label37.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4872. this.label37.Location = new System.Drawing.Point(3, 115);
  4873. this.label37.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4874. this.label37.Name = "label37";
  4875. this.label37.Size = new System.Drawing.Size(82, 15);
  4876. this.label37.TabIndex = 6;
  4877. this.label37.Text = "工作状态:";
  4878. //
  4879. // label38
  4880. //
  4881. this.label38.AutoSize = true;
  4882. this.label38.BackColor = System.Drawing.Color.Transparent;
  4883. this.label38.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4884. this.label38.Location = new System.Drawing.Point(3, 188);
  4885. this.label38.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4886. this.label38.Name = "label38";
  4887. this.label38.Size = new System.Drawing.Size(82, 15);
  4888. this.label38.TabIndex = 1;
  4889. this.label38.Text = "当前巷道:";
  4890. //
  4891. // lblsrm05
  4892. //
  4893. this.lblsrm05.AutoSize = true;
  4894. this.lblsrm05.BackColor = System.Drawing.Color.Transparent;
  4895. 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)));
  4896. this.lblsrm05.Location = new System.Drawing.Point(40, 32);
  4897. this.lblsrm05.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4898. this.lblsrm05.Name = "lblsrm05";
  4899. this.lblsrm05.Size = new System.Drawing.Size(115, 20);
  4900. this.lblsrm05.TabIndex = 0;
  4901. this.lblsrm05.Text = "5号 堆垛机";
  4902. this.lblsrm05.Click += new System.EventHandler(this.lblsrm01_Click);
  4903. //
  4904. // G5
  4905. //
  4906. this.G5.BackColor = System.Drawing.Color.Transparent;
  4907. this.G5.Image = ((System.Drawing.Image)(resources.GetObject("G5.Image")));
  4908. this.G5.Location = new System.Drawing.Point(88, -2);
  4909. this.G5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4910. this.G5.Name = "G5";
  4911. this.G5.Size = new System.Drawing.Size(35, 32);
  4912. this.G5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4913. this.G5.TabIndex = 65;
  4914. this.G5.TabStop = false;
  4915. this.G5.Tag = "1";
  4916. //
  4917. // pictureBox3
  4918. //
  4919. this.pictureBox3.BackColor = System.Drawing.Color.Transparent;
  4920. this.pictureBox3.Location = new System.Drawing.Point(87, -2);
  4921. this.pictureBox3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4922. this.pictureBox3.Name = "pictureBox3";
  4923. this.pictureBox3.Size = new System.Drawing.Size(35, 32);
  4924. this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4925. this.pictureBox3.TabIndex = 5;
  4926. this.pictureBox3.TabStop = false;
  4927. //
  4928. // pnlRGV1091
  4929. //
  4930. this.pnlRGV1091.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlRGV1091.BackgroundImage")));
  4931. this.pnlRGV1091.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4932. this.pnlRGV1091.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  4933. this.pnlRGV1091.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  4934. this.pnlRGV1091.Controls.Add(this.label14);
  4935. this.pnlRGV1091.Controls.Add(this.label19);
  4936. this.pnlRGV1091.Controls.Add(this.label20);
  4937. this.pnlRGV1091.Controls.Add(this.rgvOptType3);
  4938. this.pnlRGV1091.Controls.Add(this.label74);
  4939. this.pnlRGV1091.Controls.Add(this.lblRGVWarning1091);
  4940. this.pnlRGV1091.Controls.Add(this.rgvPosCurr3);
  4941. this.pnlRGV1091.Controls.Add(this.rgvMode3);
  4942. this.pnlRGV1091.Controls.Add(this.rgvOrdId3);
  4943. this.pnlRGV1091.Controls.Add(this.label94);
  4944. this.pnlRGV1091.Controls.Add(this.rgvPosTo3);
  4945. this.pnlRGV1091.Controls.Add(this.label96);
  4946. this.pnlRGV1091.Controls.Add(this.rgvPosFrom3);
  4947. this.pnlRGV1091.Controls.Add(this.rgvStatus3);
  4948. this.pnlRGV1091.Controls.Add(this.label102);
  4949. this.pnlRGV1091.Controls.Add(this.lblrgv1091);
  4950. this.pnlRGV1091.Controls.Add(this.GV3);
  4951. this.pnlRGV1091.Controls.Add(this.pictureBox7);
  4952. this.pnlRGV1091.Location = new System.Drawing.Point(2442, 3);
  4953. this.pnlRGV1091.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4954. this.pnlRGV1091.Name = "pnlRGV1091";
  4955. this.pnlRGV1091.Size = new System.Drawing.Size(217, 312);
  4956. this.pnlRGV1091.TabIndex = 104;
  4957. //
  4958. // label14
  4959. //
  4960. this.label14.AutoSize = true;
  4961. this.label14.BackColor = System.Drawing.Color.Transparent;
  4962. this.label14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4963. this.label14.Location = new System.Drawing.Point(4, 241);
  4964. this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4965. this.label14.Name = "label14";
  4966. this.label14.Size = new System.Drawing.Size(82, 15);
  4967. this.label14.TabIndex = 106;
  4968. this.label14.Text = "光电状态:";
  4969. //
  4970. // label19
  4971. //
  4972. this.label19.AutoSize = true;
  4973. this.label19.BackColor = System.Drawing.Color.Transparent;
  4974. this.label19.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4975. this.label19.Location = new System.Drawing.Point(3, 189);
  4976. this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4977. this.label19.Name = "label19";
  4978. this.label19.Size = new System.Drawing.Size(82, 15);
  4979. this.label19.TabIndex = 105;
  4980. this.label19.Text = "起始地址:";
  4981. //
  4982. // label20
  4983. //
  4984. this.label20.AutoSize = true;
  4985. this.label20.BackColor = System.Drawing.Color.Transparent;
  4986. this.label20.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4987. this.label20.ForeColor = System.Drawing.SystemColors.ControlText;
  4988. this.label20.Location = new System.Drawing.Point(3, 214);
  4989. this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4990. this.label20.Name = "label20";
  4991. this.label20.Size = new System.Drawing.Size(82, 15);
  4992. this.label20.TabIndex = 104;
  4993. this.label20.Text = "目标地址:";
  4994. //
  4995. // rgvOptType3
  4996. //
  4997. this.rgvOptType3.AutoSize = true;
  4998. this.rgvOptType3.BackColor = System.Drawing.Color.Transparent;
  4999. this.rgvOptType3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5000. this.rgvOptType3.ForeColor = System.Drawing.Color.Blue;
  5001. this.rgvOptType3.Location = new System.Drawing.Point(96, 166);
  5002. this.rgvOptType3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5003. this.rgvOptType3.Name = "rgvOptType3";
  5004. this.rgvOptType3.Size = new System.Drawing.Size(31, 15);
  5005. this.rgvOptType3.TabIndex = 101;
  5006. this.rgvOptType3.Text = "---";
  5007. //
  5008. // label74
  5009. //
  5010. this.label74.AutoSize = true;
  5011. this.label74.BackColor = System.Drawing.Color.Transparent;
  5012. this.label74.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5013. this.label74.Location = new System.Drawing.Point(3, 166);
  5014. this.label74.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5015. this.label74.Name = "label74";
  5016. this.label74.Size = new System.Drawing.Size(82, 15);
  5017. this.label74.TabIndex = 100;
  5018. this.label74.Text = "作业类型:";
  5019. //
  5020. // lblRGVWarning1091
  5021. //
  5022. this.lblRGVWarning1091.BackColor = System.Drawing.Color.Transparent;
  5023. this.lblRGVWarning1091.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5024. this.lblRGVWarning1091.ForeColor = System.Drawing.Color.Red;
  5025. this.lblRGVWarning1091.Location = new System.Drawing.Point(7, 58);
  5026. this.lblRGVWarning1091.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5027. this.lblRGVWarning1091.Name = "lblRGVWarning1091";
  5028. this.lblRGVWarning1091.Size = new System.Drawing.Size(201, 30);
  5029. this.lblRGVWarning1091.TabIndex = 92;
  5030. //
  5031. // rgvPosCurr3
  5032. //
  5033. this.rgvPosCurr3.AutoSize = true;
  5034. this.rgvPosCurr3.BackColor = System.Drawing.Color.Transparent;
  5035. this.rgvPosCurr3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5036. this.rgvPosCurr3.ForeColor = System.Drawing.Color.Blue;
  5037. this.rgvPosCurr3.Location = new System.Drawing.Point(99, 242);
  5038. this.rgvPosCurr3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5039. this.rgvPosCurr3.Name = "rgvPosCurr3";
  5040. this.rgvPosCurr3.Size = new System.Drawing.Size(31, 15);
  5041. this.rgvPosCurr3.TabIndex = 72;
  5042. this.rgvPosCurr3.Text = "---";
  5043. //
  5044. // rgvMode3
  5045. //
  5046. this.rgvMode3.AutoSize = true;
  5047. this.rgvMode3.BackColor = System.Drawing.Color.Transparent;
  5048. this.rgvMode3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5049. this.rgvMode3.ForeColor = System.Drawing.Color.Blue;
  5050. this.rgvMode3.Location = new System.Drawing.Point(96, 92);
  5051. this.rgvMode3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5052. this.rgvMode3.Name = "rgvMode3";
  5053. this.rgvMode3.Size = new System.Drawing.Size(31, 15);
  5054. this.rgvMode3.TabIndex = 12;
  5055. this.rgvMode3.Text = "---";
  5056. //
  5057. // rgvOrdId3
  5058. //
  5059. this.rgvOrdId3.AutoSize = true;
  5060. this.rgvOrdId3.BackColor = System.Drawing.Color.Transparent;
  5061. this.rgvOrdId3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5062. this.rgvOrdId3.ForeColor = System.Drawing.Color.Blue;
  5063. this.rgvOrdId3.Location = new System.Drawing.Point(96, 142);
  5064. this.rgvOrdId3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5065. this.rgvOrdId3.Name = "rgvOrdId3";
  5066. this.rgvOrdId3.Size = new System.Drawing.Size(31, 15);
  5067. this.rgvOrdId3.TabIndex = 64;
  5068. this.rgvOrdId3.Text = "---";
  5069. //
  5070. // label94
  5071. //
  5072. this.label94.AutoSize = true;
  5073. this.label94.BackColor = System.Drawing.Color.Transparent;
  5074. this.label94.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5075. this.label94.Location = new System.Drawing.Point(3, 142);
  5076. this.label94.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5077. this.label94.Name = "label94";
  5078. this.label94.Size = new System.Drawing.Size(82, 15);
  5079. this.label94.TabIndex = 63;
  5080. this.label94.Text = "工作指令:";
  5081. //
  5082. // rgvPosTo3
  5083. //
  5084. this.rgvPosTo3.AutoSize = true;
  5085. this.rgvPosTo3.BackColor = System.Drawing.Color.Transparent;
  5086. this.rgvPosTo3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5087. this.rgvPosTo3.ForeColor = System.Drawing.Color.Blue;
  5088. this.rgvPosTo3.Location = new System.Drawing.Point(97, 215);
  5089. this.rgvPosTo3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5090. this.rgvPosTo3.Name = "rgvPosTo3";
  5091. this.rgvPosTo3.Size = new System.Drawing.Size(31, 15);
  5092. this.rgvPosTo3.TabIndex = 16;
  5093. this.rgvPosTo3.Text = "---";
  5094. //
  5095. // label96
  5096. //
  5097. this.label96.AutoSize = true;
  5098. this.label96.BackColor = System.Drawing.Color.Transparent;
  5099. this.label96.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5100. this.label96.Location = new System.Drawing.Point(3, 92);
  5101. this.label96.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5102. this.label96.Name = "label96";
  5103. this.label96.Size = new System.Drawing.Size(82, 15);
  5104. this.label96.TabIndex = 15;
  5105. this.label96.Text = "工作模式:";
  5106. //
  5107. // rgvPosFrom3
  5108. //
  5109. this.rgvPosFrom3.AutoSize = true;
  5110. this.rgvPosFrom3.BackColor = System.Drawing.Color.Transparent;
  5111. this.rgvPosFrom3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5112. this.rgvPosFrom3.ForeColor = System.Drawing.Color.Blue;
  5113. this.rgvPosFrom3.Location = new System.Drawing.Point(97, 190);
  5114. this.rgvPosFrom3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5115. this.rgvPosFrom3.Name = "rgvPosFrom3";
  5116. this.rgvPosFrom3.Size = new System.Drawing.Size(31, 15);
  5117. this.rgvPosFrom3.TabIndex = 14;
  5118. this.rgvPosFrom3.Text = "---";
  5119. //
  5120. // rgvStatus3
  5121. //
  5122. this.rgvStatus3.AutoSize = true;
  5123. this.rgvStatus3.BackColor = System.Drawing.Color.Transparent;
  5124. this.rgvStatus3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5125. this.rgvStatus3.ForeColor = System.Drawing.Color.Blue;
  5126. this.rgvStatus3.Location = new System.Drawing.Point(96, 115);
  5127. this.rgvStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5128. this.rgvStatus3.Name = "rgvStatus3";
  5129. this.rgvStatus3.Size = new System.Drawing.Size(31, 15);
  5130. this.rgvStatus3.TabIndex = 10;
  5131. this.rgvStatus3.Text = "---";
  5132. //
  5133. // label102
  5134. //
  5135. this.label102.AutoSize = true;
  5136. this.label102.BackColor = System.Drawing.Color.Transparent;
  5137. this.label102.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5138. this.label102.Location = new System.Drawing.Point(3, 115);
  5139. this.label102.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5140. this.label102.Name = "label102";
  5141. this.label102.Size = new System.Drawing.Size(82, 15);
  5142. this.label102.TabIndex = 6;
  5143. this.label102.Text = "工作状态:";
  5144. //
  5145. // lblrgv1091
  5146. //
  5147. this.lblrgv1091.AutoSize = true;
  5148. this.lblrgv1091.BackColor = System.Drawing.Color.Transparent;
  5149. this.lblrgv1091.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5150. this.lblrgv1091.Location = new System.Drawing.Point(59, 32);
  5151. this.lblrgv1091.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5152. this.lblrgv1091.Name = "lblrgv1091";
  5153. this.lblrgv1091.Size = new System.Drawing.Size(53, 20);
  5154. this.lblrgv1091.TabIndex = 0;
  5155. this.lblrgv1091.Text = "RGV4";
  5156. this.lblrgv1091.Click += new System.EventHandler(this.lblsrm01_Click);
  5157. //
  5158. // GV3
  5159. //
  5160. this.GV3.BackColor = System.Drawing.Color.Transparent;
  5161. this.GV3.Image = ((System.Drawing.Image)(resources.GetObject("GV3.Image")));
  5162. this.GV3.Location = new System.Drawing.Point(88, -2);
  5163. this.GV3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5164. this.GV3.Name = "GV3";
  5165. this.GV3.Size = new System.Drawing.Size(35, 32);
  5166. this.GV3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5167. this.GV3.TabIndex = 65;
  5168. this.GV3.TabStop = false;
  5169. this.GV3.Tag = "1";
  5170. //
  5171. // pictureBox7
  5172. //
  5173. this.pictureBox7.BackColor = System.Drawing.Color.Transparent;
  5174. this.pictureBox7.Location = new System.Drawing.Point(87, -2);
  5175. this.pictureBox7.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5176. this.pictureBox7.Name = "pictureBox7";
  5177. this.pictureBox7.Size = new System.Drawing.Size(35, 32);
  5178. this.pictureBox7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5179. this.pictureBox7.TabIndex = 5;
  5180. this.pictureBox7.TabStop = false;
  5181. //
  5182. // myPanel5
  5183. //
  5184. this.myPanel5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel5.BackgroundImage")));
  5185. this.myPanel5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5186. this.myPanel5.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5187. this.myPanel5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  5188. this.myPanel5.Controls.Add(this.label25);
  5189. this.myPanel5.Controls.Add(this.label35);
  5190. this.myPanel5.Controls.Add(this.label39);
  5191. this.myPanel5.Controls.Add(this.rgvOptType4);
  5192. this.myPanel5.Controls.Add(this.label173);
  5193. this.myPanel5.Controls.Add(this.lblRGVWarning1007);
  5194. this.myPanel5.Controls.Add(this.rgvPosCurr4);
  5195. this.myPanel5.Controls.Add(this.rgvMode4);
  5196. this.myPanel5.Controls.Add(this.rgvOrdId4);
  5197. this.myPanel5.Controls.Add(this.label181);
  5198. this.myPanel5.Controls.Add(this.rgvPosTo4);
  5199. this.myPanel5.Controls.Add(this.label183);
  5200. this.myPanel5.Controls.Add(this.rgvPosFrom4);
  5201. this.myPanel5.Controls.Add(this.rgvStatus4);
  5202. this.myPanel5.Controls.Add(this.label189);
  5203. this.myPanel5.Controls.Add(this.lblrgv1007);
  5204. this.myPanel5.Controls.Add(this.GV4);
  5205. this.myPanel5.Controls.Add(this.pictureBox17);
  5206. this.myPanel5.Location = new System.Drawing.Point(1776, 4);
  5207. this.myPanel5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5208. this.myPanel5.Name = "myPanel5";
  5209. this.myPanel5.Size = new System.Drawing.Size(217, 312);
  5210. this.myPanel5.TabIndex = 107;
  5211. //
  5212. // label25
  5213. //
  5214. this.label25.AutoSize = true;
  5215. this.label25.BackColor = System.Drawing.Color.Transparent;
  5216. this.label25.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5217. this.label25.Location = new System.Drawing.Point(5, 242);
  5218. this.label25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5219. this.label25.Name = "label25";
  5220. this.label25.Size = new System.Drawing.Size(82, 15);
  5221. this.label25.TabIndex = 106;
  5222. this.label25.Text = "光电状态:";
  5223. //
  5224. // label35
  5225. //
  5226. this.label35.AutoSize = true;
  5227. this.label35.BackColor = System.Drawing.Color.Transparent;
  5228. this.label35.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5229. this.label35.Location = new System.Drawing.Point(4, 190);
  5230. this.label35.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5231. this.label35.Name = "label35";
  5232. this.label35.Size = new System.Drawing.Size(82, 15);
  5233. this.label35.TabIndex = 105;
  5234. this.label35.Text = "起始地址:";
  5235. //
  5236. // label39
  5237. //
  5238. this.label39.AutoSize = true;
  5239. this.label39.BackColor = System.Drawing.Color.Transparent;
  5240. this.label39.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5241. this.label39.ForeColor = System.Drawing.SystemColors.ControlText;
  5242. this.label39.Location = new System.Drawing.Point(4, 215);
  5243. this.label39.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5244. this.label39.Name = "label39";
  5245. this.label39.Size = new System.Drawing.Size(82, 15);
  5246. this.label39.TabIndex = 104;
  5247. this.label39.Text = "目标地址:";
  5248. //
  5249. // rgvOptType4
  5250. //
  5251. this.rgvOptType4.AutoSize = true;
  5252. this.rgvOptType4.BackColor = System.Drawing.Color.Transparent;
  5253. this.rgvOptType4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5254. this.rgvOptType4.ForeColor = System.Drawing.Color.Blue;
  5255. this.rgvOptType4.Location = new System.Drawing.Point(96, 166);
  5256. this.rgvOptType4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5257. this.rgvOptType4.Name = "rgvOptType4";
  5258. this.rgvOptType4.Size = new System.Drawing.Size(31, 15);
  5259. this.rgvOptType4.TabIndex = 101;
  5260. this.rgvOptType4.Text = "---";
  5261. //
  5262. // label173
  5263. //
  5264. this.label173.AutoSize = true;
  5265. this.label173.BackColor = System.Drawing.Color.Transparent;
  5266. this.label173.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5267. this.label173.Location = new System.Drawing.Point(3, 166);
  5268. this.label173.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5269. this.label173.Name = "label173";
  5270. this.label173.Size = new System.Drawing.Size(82, 15);
  5271. this.label173.TabIndex = 100;
  5272. this.label173.Text = "作业类型:";
  5273. //
  5274. // lblRGVWarning1007
  5275. //
  5276. this.lblRGVWarning1007.BackColor = System.Drawing.Color.Transparent;
  5277. this.lblRGVWarning1007.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5278. this.lblRGVWarning1007.ForeColor = System.Drawing.Color.Red;
  5279. this.lblRGVWarning1007.Location = new System.Drawing.Point(7, 58);
  5280. this.lblRGVWarning1007.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5281. this.lblRGVWarning1007.Name = "lblRGVWarning1007";
  5282. this.lblRGVWarning1007.Size = new System.Drawing.Size(201, 30);
  5283. this.lblRGVWarning1007.TabIndex = 92;
  5284. //
  5285. // rgvPosCurr4
  5286. //
  5287. this.rgvPosCurr4.AutoSize = true;
  5288. this.rgvPosCurr4.BackColor = System.Drawing.Color.Transparent;
  5289. this.rgvPosCurr4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5290. this.rgvPosCurr4.ForeColor = System.Drawing.Color.Blue;
  5291. this.rgvPosCurr4.Location = new System.Drawing.Point(99, 244);
  5292. this.rgvPosCurr4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5293. this.rgvPosCurr4.Name = "rgvPosCurr4";
  5294. this.rgvPosCurr4.Size = new System.Drawing.Size(31, 15);
  5295. this.rgvPosCurr4.TabIndex = 72;
  5296. this.rgvPosCurr4.Text = "---";
  5297. //
  5298. // rgvMode4
  5299. //
  5300. this.rgvMode4.AutoSize = true;
  5301. this.rgvMode4.BackColor = System.Drawing.Color.Transparent;
  5302. this.rgvMode4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5303. this.rgvMode4.ForeColor = System.Drawing.Color.Blue;
  5304. this.rgvMode4.Location = new System.Drawing.Point(96, 92);
  5305. this.rgvMode4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5306. this.rgvMode4.Name = "rgvMode4";
  5307. this.rgvMode4.Size = new System.Drawing.Size(31, 15);
  5308. this.rgvMode4.TabIndex = 12;
  5309. this.rgvMode4.Text = "---";
  5310. //
  5311. // rgvOrdId4
  5312. //
  5313. this.rgvOrdId4.AutoSize = true;
  5314. this.rgvOrdId4.BackColor = System.Drawing.Color.Transparent;
  5315. this.rgvOrdId4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5316. this.rgvOrdId4.ForeColor = System.Drawing.Color.Blue;
  5317. this.rgvOrdId4.Location = new System.Drawing.Point(96, 142);
  5318. this.rgvOrdId4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5319. this.rgvOrdId4.Name = "rgvOrdId4";
  5320. this.rgvOrdId4.Size = new System.Drawing.Size(31, 15);
  5321. this.rgvOrdId4.TabIndex = 64;
  5322. this.rgvOrdId4.Text = "---";
  5323. //
  5324. // label181
  5325. //
  5326. this.label181.AutoSize = true;
  5327. this.label181.BackColor = System.Drawing.Color.Transparent;
  5328. this.label181.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5329. this.label181.Location = new System.Drawing.Point(3, 142);
  5330. this.label181.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5331. this.label181.Name = "label181";
  5332. this.label181.Size = new System.Drawing.Size(82, 15);
  5333. this.label181.TabIndex = 63;
  5334. this.label181.Text = "工作指令:";
  5335. //
  5336. // rgvPosTo4
  5337. //
  5338. this.rgvPosTo4.AutoSize = true;
  5339. this.rgvPosTo4.BackColor = System.Drawing.Color.Transparent;
  5340. this.rgvPosTo4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5341. this.rgvPosTo4.ForeColor = System.Drawing.Color.Blue;
  5342. this.rgvPosTo4.Location = new System.Drawing.Point(97, 215);
  5343. this.rgvPosTo4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5344. this.rgvPosTo4.Name = "rgvPosTo4";
  5345. this.rgvPosTo4.Size = new System.Drawing.Size(31, 15);
  5346. this.rgvPosTo4.TabIndex = 16;
  5347. this.rgvPosTo4.Text = "---";
  5348. //
  5349. // label183
  5350. //
  5351. this.label183.AutoSize = true;
  5352. this.label183.BackColor = System.Drawing.Color.Transparent;
  5353. this.label183.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5354. this.label183.Location = new System.Drawing.Point(3, 92);
  5355. this.label183.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5356. this.label183.Name = "label183";
  5357. this.label183.Size = new System.Drawing.Size(82, 15);
  5358. this.label183.TabIndex = 15;
  5359. this.label183.Text = "工作模式:";
  5360. //
  5361. // rgvPosFrom4
  5362. //
  5363. this.rgvPosFrom4.AutoSize = true;
  5364. this.rgvPosFrom4.BackColor = System.Drawing.Color.Transparent;
  5365. this.rgvPosFrom4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5366. this.rgvPosFrom4.ForeColor = System.Drawing.Color.Blue;
  5367. this.rgvPosFrom4.Location = new System.Drawing.Point(97, 190);
  5368. this.rgvPosFrom4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5369. this.rgvPosFrom4.Name = "rgvPosFrom4";
  5370. this.rgvPosFrom4.Size = new System.Drawing.Size(31, 15);
  5371. this.rgvPosFrom4.TabIndex = 14;
  5372. this.rgvPosFrom4.Text = "---";
  5373. //
  5374. // rgvStatus4
  5375. //
  5376. this.rgvStatus4.AutoSize = true;
  5377. this.rgvStatus4.BackColor = System.Drawing.Color.Transparent;
  5378. this.rgvStatus4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5379. this.rgvStatus4.ForeColor = System.Drawing.Color.Blue;
  5380. this.rgvStatus4.Location = new System.Drawing.Point(96, 115);
  5381. this.rgvStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5382. this.rgvStatus4.Name = "rgvStatus4";
  5383. this.rgvStatus4.Size = new System.Drawing.Size(31, 15);
  5384. this.rgvStatus4.TabIndex = 10;
  5385. this.rgvStatus4.Text = "---";
  5386. //
  5387. // label189
  5388. //
  5389. this.label189.AutoSize = true;
  5390. this.label189.BackColor = System.Drawing.Color.Transparent;
  5391. this.label189.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5392. this.label189.Location = new System.Drawing.Point(3, 115);
  5393. this.label189.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5394. this.label189.Name = "label189";
  5395. this.label189.Size = new System.Drawing.Size(82, 15);
  5396. this.label189.TabIndex = 6;
  5397. this.label189.Text = "工作状态:";
  5398. //
  5399. // lblrgv1007
  5400. //
  5401. this.lblrgv1007.AutoSize = true;
  5402. this.lblrgv1007.BackColor = System.Drawing.Color.Transparent;
  5403. this.lblrgv1007.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5404. this.lblrgv1007.Location = new System.Drawing.Point(59, 32);
  5405. this.lblrgv1007.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5406. this.lblrgv1007.Name = "lblrgv1007";
  5407. this.lblrgv1007.Size = new System.Drawing.Size(53, 20);
  5408. this.lblrgv1007.TabIndex = 0;
  5409. this.lblrgv1007.Text = "RGV1";
  5410. this.lblrgv1007.Click += new System.EventHandler(this.lblsrm01_Click);
  5411. //
  5412. // GV4
  5413. //
  5414. this.GV4.BackColor = System.Drawing.Color.Transparent;
  5415. this.GV4.Image = ((System.Drawing.Image)(resources.GetObject("GV4.Image")));
  5416. this.GV4.Location = new System.Drawing.Point(88, -2);
  5417. this.GV4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5418. this.GV4.Name = "GV4";
  5419. this.GV4.Size = new System.Drawing.Size(35, 32);
  5420. this.GV4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5421. this.GV4.TabIndex = 65;
  5422. this.GV4.TabStop = false;
  5423. this.GV4.Tag = "1";
  5424. //
  5425. // pictureBox17
  5426. //
  5427. this.pictureBox17.BackColor = System.Drawing.Color.Transparent;
  5428. this.pictureBox17.Location = new System.Drawing.Point(87, -2);
  5429. this.pictureBox17.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5430. this.pictureBox17.Name = "pictureBox17";
  5431. this.pictureBox17.Size = new System.Drawing.Size(35, 32);
  5432. this.pictureBox17.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5433. this.pictureBox17.TabIndex = 5;
  5434. this.pictureBox17.TabStop = false;
  5435. //
  5436. // pnlBottom
  5437. //
  5438. this.pnlBottom.AutoScroll = true;
  5439. this.pnlBottom.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlBottom.BackgroundImage")));
  5440. this.pnlBottom.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5441. this.pnlBottom.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5442. this.pnlBottom.Controls.Add(this.myPanel17);
  5443. this.pnlBottom.Controls.Add(this.myPanel11);
  5444. this.pnlBottom.Controls.Add(this.myPanel16);
  5445. this.pnlBottom.Controls.Add(this.myPanel15);
  5446. this.pnlBottom.Controls.Add(this.myPanel14);
  5447. this.pnlBottom.Controls.Add(this.myPanel13);
  5448. this.pnlBottom.Controls.Add(this.myPanel12);
  5449. this.pnlBottom.Controls.Add(this.myPanel10);
  5450. this.pnlBottom.Controls.Add(this.myPanel9);
  5451. this.pnlBottom.Controls.Add(this.myPanel8);
  5452. this.pnlBottom.Controls.Add(this.myPanel7);
  5453. this.pnlBottom.Controls.Add(this.myPanel6);
  5454. this.pnlBottom.Controls.Add(this.myPanel3);
  5455. this.pnlBottom.Controls.Add(this.pnlRGV1089);
  5456. this.pnlBottom.Controls.Add(this.myPanel2);
  5457. this.pnlBottom.Controls.Add(this.myPanel5);
  5458. this.pnlBottom.Controls.Add(this.pnlRGV1091);
  5459. this.pnlBottom.Controls.Add(this.myPanel1);
  5460. this.pnlBottom.Controls.Add(this.pnlDDJ4);
  5461. this.pnlBottom.Controls.Add(this.pnlDDJ3);
  5462. this.pnlBottom.Controls.Add(this.pnlDDJ2);
  5463. this.pnlBottom.Controls.Add(this.pnlDDJ1);
  5464. this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Fill;
  5465. this.pnlBottom.Location = new System.Drawing.Point(4, 617);
  5466. this.pnlBottom.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5467. this.pnlBottom.Name = "pnlBottom";
  5468. this.pnlBottom.Padding = new System.Windows.Forms.Padding(13, 0, 0, 0);
  5469. this.pnlBottom.Size = new System.Drawing.Size(1702, 260);
  5470. this.pnlBottom.TabIndex = 126;
  5471. //
  5472. // myPanel17
  5473. //
  5474. this.myPanel17.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel17.BackgroundImage")));
  5475. this.myPanel17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5476. this.myPanel17.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5477. this.myPanel17.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  5478. this.myPanel17.Controls.Add(this.label314);
  5479. this.myPanel17.Controls.Add(this.label315);
  5480. this.myPanel17.Controls.Add(this.label316);
  5481. this.myPanel17.Controls.Add(this.label317);
  5482. this.myPanel17.Controls.Add(this.label318);
  5483. this.myPanel17.Controls.Add(this.label319);
  5484. this.myPanel17.Controls.Add(this.label320);
  5485. this.myPanel17.Controls.Add(this.label321);
  5486. this.myPanel17.Controls.Add(this.label322);
  5487. this.myPanel17.Controls.Add(this.label323);
  5488. this.myPanel17.Controls.Add(this.label324);
  5489. this.myPanel17.Controls.Add(this.label325);
  5490. this.myPanel17.Controls.Add(this.label326);
  5491. this.myPanel17.Controls.Add(this.label327);
  5492. this.myPanel17.Controls.Add(this.label328);
  5493. this.myPanel17.Controls.Add(this.label329);
  5494. this.myPanel17.Controls.Add(this.pictureBox35);
  5495. this.myPanel17.Controls.Add(this.pictureBox36);
  5496. this.myPanel17.Location = new System.Drawing.Point(4409, 3);
  5497. this.myPanel17.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5498. this.myPanel17.Name = "myPanel17";
  5499. this.myPanel17.Size = new System.Drawing.Size(217, 312);
  5500. this.myPanel17.TabIndex = 141;
  5501. //
  5502. // label314
  5503. //
  5504. this.label314.AutoSize = true;
  5505. this.label314.BackColor = System.Drawing.Color.Transparent;
  5506. this.label314.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5507. this.label314.Location = new System.Drawing.Point(4, 241);
  5508. this.label314.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5509. this.label314.Name = "label314";
  5510. this.label314.Size = new System.Drawing.Size(82, 15);
  5511. this.label314.TabIndex = 106;
  5512. this.label314.Text = "光电状态:";
  5513. //
  5514. // label315
  5515. //
  5516. this.label315.AutoSize = true;
  5517. this.label315.BackColor = System.Drawing.Color.Transparent;
  5518. this.label315.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5519. this.label315.Location = new System.Drawing.Point(3, 189);
  5520. this.label315.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5521. this.label315.Name = "label315";
  5522. this.label315.Size = new System.Drawing.Size(82, 15);
  5523. this.label315.TabIndex = 105;
  5524. this.label315.Text = "起始地址:";
  5525. //
  5526. // label316
  5527. //
  5528. this.label316.AutoSize = true;
  5529. this.label316.BackColor = System.Drawing.Color.Transparent;
  5530. this.label316.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5531. this.label316.ForeColor = System.Drawing.SystemColors.ControlText;
  5532. this.label316.Location = new System.Drawing.Point(3, 214);
  5533. this.label316.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5534. this.label316.Name = "label316";
  5535. this.label316.Size = new System.Drawing.Size(82, 15);
  5536. this.label316.TabIndex = 104;
  5537. this.label316.Text = "目标地址:";
  5538. //
  5539. // label317
  5540. //
  5541. this.label317.AutoSize = true;
  5542. this.label317.BackColor = System.Drawing.Color.Transparent;
  5543. this.label317.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5544. this.label317.ForeColor = System.Drawing.Color.Blue;
  5545. this.label317.Location = new System.Drawing.Point(96, 166);
  5546. this.label317.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5547. this.label317.Name = "label317";
  5548. this.label317.Size = new System.Drawing.Size(31, 15);
  5549. this.label317.TabIndex = 101;
  5550. this.label317.Text = "---";
  5551. //
  5552. // label318
  5553. //
  5554. this.label318.AutoSize = true;
  5555. this.label318.BackColor = System.Drawing.Color.Transparent;
  5556. this.label318.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5557. this.label318.Location = new System.Drawing.Point(3, 166);
  5558. this.label318.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5559. this.label318.Name = "label318";
  5560. this.label318.Size = new System.Drawing.Size(82, 15);
  5561. this.label318.TabIndex = 100;
  5562. this.label318.Text = "作业类型:";
  5563. //
  5564. // label319
  5565. //
  5566. this.label319.BackColor = System.Drawing.Color.Transparent;
  5567. this.label319.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5568. this.label319.ForeColor = System.Drawing.Color.Red;
  5569. this.label319.Location = new System.Drawing.Point(7, 58);
  5570. this.label319.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5571. this.label319.Name = "label319";
  5572. this.label319.Size = new System.Drawing.Size(201, 30);
  5573. this.label319.TabIndex = 92;
  5574. //
  5575. // label320
  5576. //
  5577. this.label320.AutoSize = true;
  5578. this.label320.BackColor = System.Drawing.Color.Transparent;
  5579. this.label320.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5580. this.label320.ForeColor = System.Drawing.Color.Blue;
  5581. this.label320.Location = new System.Drawing.Point(99, 242);
  5582. this.label320.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5583. this.label320.Name = "label320";
  5584. this.label320.Size = new System.Drawing.Size(31, 15);
  5585. this.label320.TabIndex = 72;
  5586. this.label320.Text = "---";
  5587. //
  5588. // label321
  5589. //
  5590. this.label321.AutoSize = true;
  5591. this.label321.BackColor = System.Drawing.Color.Transparent;
  5592. this.label321.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5593. this.label321.ForeColor = System.Drawing.Color.Blue;
  5594. this.label321.Location = new System.Drawing.Point(96, 92);
  5595. this.label321.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5596. this.label321.Name = "label321";
  5597. this.label321.Size = new System.Drawing.Size(31, 15);
  5598. this.label321.TabIndex = 12;
  5599. this.label321.Text = "---";
  5600. //
  5601. // label322
  5602. //
  5603. this.label322.AutoSize = true;
  5604. this.label322.BackColor = System.Drawing.Color.Transparent;
  5605. this.label322.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5606. this.label322.ForeColor = System.Drawing.Color.Blue;
  5607. this.label322.Location = new System.Drawing.Point(96, 142);
  5608. this.label322.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5609. this.label322.Name = "label322";
  5610. this.label322.Size = new System.Drawing.Size(31, 15);
  5611. this.label322.TabIndex = 64;
  5612. this.label322.Text = "---";
  5613. //
  5614. // label323
  5615. //
  5616. this.label323.AutoSize = true;
  5617. this.label323.BackColor = System.Drawing.Color.Transparent;
  5618. this.label323.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5619. this.label323.Location = new System.Drawing.Point(3, 142);
  5620. this.label323.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5621. this.label323.Name = "label323";
  5622. this.label323.Size = new System.Drawing.Size(82, 15);
  5623. this.label323.TabIndex = 63;
  5624. this.label323.Text = "工作指令:";
  5625. //
  5626. // label324
  5627. //
  5628. this.label324.AutoSize = true;
  5629. this.label324.BackColor = System.Drawing.Color.Transparent;
  5630. this.label324.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5631. this.label324.ForeColor = System.Drawing.Color.Blue;
  5632. this.label324.Location = new System.Drawing.Point(97, 215);
  5633. this.label324.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5634. this.label324.Name = "label324";
  5635. this.label324.Size = new System.Drawing.Size(31, 15);
  5636. this.label324.TabIndex = 16;
  5637. this.label324.Text = "---";
  5638. //
  5639. // label325
  5640. //
  5641. this.label325.AutoSize = true;
  5642. this.label325.BackColor = System.Drawing.Color.Transparent;
  5643. this.label325.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5644. this.label325.Location = new System.Drawing.Point(3, 92);
  5645. this.label325.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5646. this.label325.Name = "label325";
  5647. this.label325.Size = new System.Drawing.Size(82, 15);
  5648. this.label325.TabIndex = 15;
  5649. this.label325.Text = "工作模式:";
  5650. //
  5651. // label326
  5652. //
  5653. this.label326.AutoSize = true;
  5654. this.label326.BackColor = System.Drawing.Color.Transparent;
  5655. this.label326.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5656. this.label326.ForeColor = System.Drawing.Color.Blue;
  5657. this.label326.Location = new System.Drawing.Point(97, 190);
  5658. this.label326.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5659. this.label326.Name = "label326";
  5660. this.label326.Size = new System.Drawing.Size(31, 15);
  5661. this.label326.TabIndex = 14;
  5662. this.label326.Text = "---";
  5663. //
  5664. // label327
  5665. //
  5666. this.label327.AutoSize = true;
  5667. this.label327.BackColor = System.Drawing.Color.Transparent;
  5668. this.label327.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5669. this.label327.ForeColor = System.Drawing.Color.Blue;
  5670. this.label327.Location = new System.Drawing.Point(96, 115);
  5671. this.label327.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5672. this.label327.Name = "label327";
  5673. this.label327.Size = new System.Drawing.Size(31, 15);
  5674. this.label327.TabIndex = 10;
  5675. this.label327.Text = "---";
  5676. //
  5677. // label328
  5678. //
  5679. this.label328.AutoSize = true;
  5680. this.label328.BackColor = System.Drawing.Color.Transparent;
  5681. this.label328.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5682. this.label328.Location = new System.Drawing.Point(3, 115);
  5683. this.label328.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5684. this.label328.Name = "label328";
  5685. this.label328.Size = new System.Drawing.Size(82, 15);
  5686. this.label328.TabIndex = 6;
  5687. this.label328.Text = "工作状态:";
  5688. //
  5689. // label329
  5690. //
  5691. this.label329.AutoSize = true;
  5692. this.label329.BackColor = System.Drawing.Color.Transparent;
  5693. this.label329.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5694. this.label329.Location = new System.Drawing.Point(59, 32);
  5695. this.label329.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5696. this.label329.Name = "label329";
  5697. this.label329.Size = new System.Drawing.Size(64, 20);
  5698. this.label329.TabIndex = 0;
  5699. this.label329.Text = "RGV13";
  5700. //
  5701. // pictureBox35
  5702. //
  5703. this.pictureBox35.BackColor = System.Drawing.Color.Transparent;
  5704. this.pictureBox35.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox35.Image")));
  5705. this.pictureBox35.Location = new System.Drawing.Point(88, -2);
  5706. this.pictureBox35.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5707. this.pictureBox35.Name = "pictureBox35";
  5708. this.pictureBox35.Size = new System.Drawing.Size(35, 32);
  5709. this.pictureBox35.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5710. this.pictureBox35.TabIndex = 65;
  5711. this.pictureBox35.TabStop = false;
  5712. this.pictureBox35.Tag = "1";
  5713. //
  5714. // pictureBox36
  5715. //
  5716. this.pictureBox36.BackColor = System.Drawing.Color.Transparent;
  5717. this.pictureBox36.Location = new System.Drawing.Point(87, -2);
  5718. this.pictureBox36.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5719. this.pictureBox36.Name = "pictureBox36";
  5720. this.pictureBox36.Size = new System.Drawing.Size(35, 32);
  5721. this.pictureBox36.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5722. this.pictureBox36.TabIndex = 5;
  5723. this.pictureBox36.TabStop = false;
  5724. //
  5725. // myPanel11
  5726. //
  5727. this.myPanel11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel11.BackgroundImage")));
  5728. this.myPanel11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5729. this.myPanel11.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5730. this.myPanel11.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  5731. this.myPanel11.Controls.Add(this.label40);
  5732. this.myPanel11.Controls.Add(this.label41);
  5733. this.myPanel11.Controls.Add(this.label42);
  5734. this.myPanel11.Controls.Add(this.label301);
  5735. this.myPanel11.Controls.Add(this.label302);
  5736. this.myPanel11.Controls.Add(this.label303);
  5737. this.myPanel11.Controls.Add(this.label304);
  5738. this.myPanel11.Controls.Add(this.label305);
  5739. this.myPanel11.Controls.Add(this.label306);
  5740. this.myPanel11.Controls.Add(this.label307);
  5741. this.myPanel11.Controls.Add(this.label308);
  5742. this.myPanel11.Controls.Add(this.label309);
  5743. this.myPanel11.Controls.Add(this.label310);
  5744. this.myPanel11.Controls.Add(this.label311);
  5745. this.myPanel11.Controls.Add(this.label312);
  5746. this.myPanel11.Controls.Add(this.label313);
  5747. this.myPanel11.Controls.Add(this.pictureBox29);
  5748. this.myPanel11.Controls.Add(this.pictureBox34);
  5749. this.myPanel11.Location = new System.Drawing.Point(4190, 3);
  5750. this.myPanel11.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5751. this.myPanel11.Name = "myPanel11";
  5752. this.myPanel11.Size = new System.Drawing.Size(217, 312);
  5753. this.myPanel11.TabIndex = 140;
  5754. //
  5755. // label40
  5756. //
  5757. this.label40.AutoSize = true;
  5758. this.label40.BackColor = System.Drawing.Color.Transparent;
  5759. this.label40.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5760. this.label40.Location = new System.Drawing.Point(4, 241);
  5761. this.label40.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5762. this.label40.Name = "label40";
  5763. this.label40.Size = new System.Drawing.Size(82, 15);
  5764. this.label40.TabIndex = 106;
  5765. this.label40.Text = "光电状态:";
  5766. //
  5767. // label41
  5768. //
  5769. this.label41.AutoSize = true;
  5770. this.label41.BackColor = System.Drawing.Color.Transparent;
  5771. this.label41.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5772. this.label41.Location = new System.Drawing.Point(3, 189);
  5773. this.label41.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5774. this.label41.Name = "label41";
  5775. this.label41.Size = new System.Drawing.Size(82, 15);
  5776. this.label41.TabIndex = 105;
  5777. this.label41.Text = "起始地址:";
  5778. //
  5779. // label42
  5780. //
  5781. this.label42.AutoSize = true;
  5782. this.label42.BackColor = System.Drawing.Color.Transparent;
  5783. this.label42.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5784. this.label42.ForeColor = System.Drawing.SystemColors.ControlText;
  5785. this.label42.Location = new System.Drawing.Point(3, 214);
  5786. this.label42.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5787. this.label42.Name = "label42";
  5788. this.label42.Size = new System.Drawing.Size(82, 15);
  5789. this.label42.TabIndex = 104;
  5790. this.label42.Text = "目标地址:";
  5791. //
  5792. // label301
  5793. //
  5794. this.label301.AutoSize = true;
  5795. this.label301.BackColor = System.Drawing.Color.Transparent;
  5796. this.label301.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5797. this.label301.ForeColor = System.Drawing.Color.Blue;
  5798. this.label301.Location = new System.Drawing.Point(96, 166);
  5799. this.label301.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5800. this.label301.Name = "label301";
  5801. this.label301.Size = new System.Drawing.Size(31, 15);
  5802. this.label301.TabIndex = 101;
  5803. this.label301.Text = "---";
  5804. //
  5805. // label302
  5806. //
  5807. this.label302.AutoSize = true;
  5808. this.label302.BackColor = System.Drawing.Color.Transparent;
  5809. this.label302.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5810. this.label302.Location = new System.Drawing.Point(3, 166);
  5811. this.label302.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5812. this.label302.Name = "label302";
  5813. this.label302.Size = new System.Drawing.Size(82, 15);
  5814. this.label302.TabIndex = 100;
  5815. this.label302.Text = "作业类型:";
  5816. //
  5817. // label303
  5818. //
  5819. this.label303.BackColor = System.Drawing.Color.Transparent;
  5820. this.label303.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5821. this.label303.ForeColor = System.Drawing.Color.Red;
  5822. this.label303.Location = new System.Drawing.Point(7, 58);
  5823. this.label303.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5824. this.label303.Name = "label303";
  5825. this.label303.Size = new System.Drawing.Size(201, 30);
  5826. this.label303.TabIndex = 92;
  5827. //
  5828. // label304
  5829. //
  5830. this.label304.AutoSize = true;
  5831. this.label304.BackColor = System.Drawing.Color.Transparent;
  5832. this.label304.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5833. this.label304.ForeColor = System.Drawing.Color.Blue;
  5834. this.label304.Location = new System.Drawing.Point(99, 242);
  5835. this.label304.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5836. this.label304.Name = "label304";
  5837. this.label304.Size = new System.Drawing.Size(31, 15);
  5838. this.label304.TabIndex = 72;
  5839. this.label304.Text = "---";
  5840. //
  5841. // label305
  5842. //
  5843. this.label305.AutoSize = true;
  5844. this.label305.BackColor = System.Drawing.Color.Transparent;
  5845. this.label305.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5846. this.label305.ForeColor = System.Drawing.Color.Blue;
  5847. this.label305.Location = new System.Drawing.Point(96, 92);
  5848. this.label305.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5849. this.label305.Name = "label305";
  5850. this.label305.Size = new System.Drawing.Size(31, 15);
  5851. this.label305.TabIndex = 12;
  5852. this.label305.Text = "---";
  5853. //
  5854. // label306
  5855. //
  5856. this.label306.AutoSize = true;
  5857. this.label306.BackColor = System.Drawing.Color.Transparent;
  5858. this.label306.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5859. this.label306.ForeColor = System.Drawing.Color.Blue;
  5860. this.label306.Location = new System.Drawing.Point(96, 142);
  5861. this.label306.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5862. this.label306.Name = "label306";
  5863. this.label306.Size = new System.Drawing.Size(31, 15);
  5864. this.label306.TabIndex = 64;
  5865. this.label306.Text = "---";
  5866. //
  5867. // label307
  5868. //
  5869. this.label307.AutoSize = true;
  5870. this.label307.BackColor = System.Drawing.Color.Transparent;
  5871. this.label307.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5872. this.label307.Location = new System.Drawing.Point(3, 142);
  5873. this.label307.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5874. this.label307.Name = "label307";
  5875. this.label307.Size = new System.Drawing.Size(82, 15);
  5876. this.label307.TabIndex = 63;
  5877. this.label307.Text = "工作指令:";
  5878. //
  5879. // label308
  5880. //
  5881. this.label308.AutoSize = true;
  5882. this.label308.BackColor = System.Drawing.Color.Transparent;
  5883. this.label308.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5884. this.label308.ForeColor = System.Drawing.Color.Blue;
  5885. this.label308.Location = new System.Drawing.Point(97, 215);
  5886. this.label308.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5887. this.label308.Name = "label308";
  5888. this.label308.Size = new System.Drawing.Size(31, 15);
  5889. this.label308.TabIndex = 16;
  5890. this.label308.Text = "---";
  5891. //
  5892. // label309
  5893. //
  5894. this.label309.AutoSize = true;
  5895. this.label309.BackColor = System.Drawing.Color.Transparent;
  5896. this.label309.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5897. this.label309.Location = new System.Drawing.Point(3, 92);
  5898. this.label309.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5899. this.label309.Name = "label309";
  5900. this.label309.Size = new System.Drawing.Size(82, 15);
  5901. this.label309.TabIndex = 15;
  5902. this.label309.Text = "工作模式:";
  5903. //
  5904. // label310
  5905. //
  5906. this.label310.AutoSize = true;
  5907. this.label310.BackColor = System.Drawing.Color.Transparent;
  5908. this.label310.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5909. this.label310.ForeColor = System.Drawing.Color.Blue;
  5910. this.label310.Location = new System.Drawing.Point(97, 190);
  5911. this.label310.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5912. this.label310.Name = "label310";
  5913. this.label310.Size = new System.Drawing.Size(31, 15);
  5914. this.label310.TabIndex = 14;
  5915. this.label310.Text = "---";
  5916. //
  5917. // label311
  5918. //
  5919. this.label311.AutoSize = true;
  5920. this.label311.BackColor = System.Drawing.Color.Transparent;
  5921. this.label311.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5922. this.label311.ForeColor = System.Drawing.Color.Blue;
  5923. this.label311.Location = new System.Drawing.Point(96, 115);
  5924. this.label311.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5925. this.label311.Name = "label311";
  5926. this.label311.Size = new System.Drawing.Size(31, 15);
  5927. this.label311.TabIndex = 10;
  5928. this.label311.Text = "---";
  5929. //
  5930. // label312
  5931. //
  5932. this.label312.AutoSize = true;
  5933. this.label312.BackColor = System.Drawing.Color.Transparent;
  5934. this.label312.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5935. this.label312.Location = new System.Drawing.Point(3, 115);
  5936. this.label312.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5937. this.label312.Name = "label312";
  5938. this.label312.Size = new System.Drawing.Size(82, 15);
  5939. this.label312.TabIndex = 6;
  5940. this.label312.Text = "工作状态:";
  5941. //
  5942. // label313
  5943. //
  5944. this.label313.AutoSize = true;
  5945. this.label313.BackColor = System.Drawing.Color.Transparent;
  5946. this.label313.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5947. this.label313.Location = new System.Drawing.Point(59, 32);
  5948. this.label313.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5949. this.label313.Name = "label313";
  5950. this.label313.Size = new System.Drawing.Size(64, 20);
  5951. this.label313.TabIndex = 0;
  5952. this.label313.Text = "RGV12";
  5953. //
  5954. // pictureBox29
  5955. //
  5956. this.pictureBox29.BackColor = System.Drawing.Color.Transparent;
  5957. this.pictureBox29.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox29.Image")));
  5958. this.pictureBox29.Location = new System.Drawing.Point(88, -2);
  5959. this.pictureBox29.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5960. this.pictureBox29.Name = "pictureBox29";
  5961. this.pictureBox29.Size = new System.Drawing.Size(35, 32);
  5962. this.pictureBox29.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5963. this.pictureBox29.TabIndex = 65;
  5964. this.pictureBox29.TabStop = false;
  5965. this.pictureBox29.Tag = "1";
  5966. //
  5967. // pictureBox34
  5968. //
  5969. this.pictureBox34.BackColor = System.Drawing.Color.Transparent;
  5970. this.pictureBox34.Location = new System.Drawing.Point(87, -2);
  5971. this.pictureBox34.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5972. this.pictureBox34.Name = "pictureBox34";
  5973. this.pictureBox34.Size = new System.Drawing.Size(35, 32);
  5974. this.pictureBox34.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5975. this.pictureBox34.TabIndex = 5;
  5976. this.pictureBox34.TabStop = false;
  5977. //
  5978. // myPanel16
  5979. //
  5980. this.myPanel16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel16.BackgroundImage")));
  5981. this.myPanel16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5982. this.myPanel16.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5983. this.myPanel16.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  5984. this.myPanel16.Controls.Add(this.label285);
  5985. this.myPanel16.Controls.Add(this.label286);
  5986. this.myPanel16.Controls.Add(this.label287);
  5987. this.myPanel16.Controls.Add(this.label288);
  5988. this.myPanel16.Controls.Add(this.label289);
  5989. this.myPanel16.Controls.Add(this.label290);
  5990. this.myPanel16.Controls.Add(this.label291);
  5991. this.myPanel16.Controls.Add(this.label292);
  5992. this.myPanel16.Controls.Add(this.label293);
  5993. this.myPanel16.Controls.Add(this.label294);
  5994. this.myPanel16.Controls.Add(this.label295);
  5995. this.myPanel16.Controls.Add(this.label296);
  5996. this.myPanel16.Controls.Add(this.label297);
  5997. this.myPanel16.Controls.Add(this.label298);
  5998. this.myPanel16.Controls.Add(this.label299);
  5999. this.myPanel16.Controls.Add(this.label300);
  6000. this.myPanel16.Controls.Add(this.pictureBox32);
  6001. this.myPanel16.Controls.Add(this.pictureBox33);
  6002. this.myPanel16.Location = new System.Drawing.Point(4627, 0);
  6003. this.myPanel16.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6004. this.myPanel16.Name = "myPanel16";
  6005. this.myPanel16.Size = new System.Drawing.Size(217, 312);
  6006. this.myPanel16.TabIndex = 139;
  6007. //
  6008. // label285
  6009. //
  6010. this.label285.AutoSize = true;
  6011. this.label285.BackColor = System.Drawing.Color.Transparent;
  6012. this.label285.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6013. this.label285.Location = new System.Drawing.Point(4, 241);
  6014. this.label285.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6015. this.label285.Name = "label285";
  6016. this.label285.Size = new System.Drawing.Size(82, 15);
  6017. this.label285.TabIndex = 106;
  6018. this.label285.Text = "光电状态:";
  6019. //
  6020. // label286
  6021. //
  6022. this.label286.AutoSize = true;
  6023. this.label286.BackColor = System.Drawing.Color.Transparent;
  6024. this.label286.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6025. this.label286.Location = new System.Drawing.Point(3, 189);
  6026. this.label286.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6027. this.label286.Name = "label286";
  6028. this.label286.Size = new System.Drawing.Size(82, 15);
  6029. this.label286.TabIndex = 105;
  6030. this.label286.Text = "起始地址:";
  6031. //
  6032. // label287
  6033. //
  6034. this.label287.AutoSize = true;
  6035. this.label287.BackColor = System.Drawing.Color.Transparent;
  6036. this.label287.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6037. this.label287.ForeColor = System.Drawing.SystemColors.ControlText;
  6038. this.label287.Location = new System.Drawing.Point(3, 214);
  6039. this.label287.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6040. this.label287.Name = "label287";
  6041. this.label287.Size = new System.Drawing.Size(82, 15);
  6042. this.label287.TabIndex = 104;
  6043. this.label287.Text = "目标地址:";
  6044. //
  6045. // label288
  6046. //
  6047. this.label288.AutoSize = true;
  6048. this.label288.BackColor = System.Drawing.Color.Transparent;
  6049. this.label288.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6050. this.label288.ForeColor = System.Drawing.Color.Blue;
  6051. this.label288.Location = new System.Drawing.Point(96, 166);
  6052. this.label288.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6053. this.label288.Name = "label288";
  6054. this.label288.Size = new System.Drawing.Size(31, 15);
  6055. this.label288.TabIndex = 101;
  6056. this.label288.Text = "---";
  6057. //
  6058. // label289
  6059. //
  6060. this.label289.AutoSize = true;
  6061. this.label289.BackColor = System.Drawing.Color.Transparent;
  6062. this.label289.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6063. this.label289.Location = new System.Drawing.Point(3, 166);
  6064. this.label289.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6065. this.label289.Name = "label289";
  6066. this.label289.Size = new System.Drawing.Size(82, 15);
  6067. this.label289.TabIndex = 100;
  6068. this.label289.Text = "作业类型:";
  6069. //
  6070. // label290
  6071. //
  6072. this.label290.BackColor = System.Drawing.Color.Transparent;
  6073. this.label290.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6074. this.label290.ForeColor = System.Drawing.Color.Red;
  6075. this.label290.Location = new System.Drawing.Point(7, 58);
  6076. this.label290.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6077. this.label290.Name = "label290";
  6078. this.label290.Size = new System.Drawing.Size(201, 30);
  6079. this.label290.TabIndex = 92;
  6080. //
  6081. // label291
  6082. //
  6083. this.label291.AutoSize = true;
  6084. this.label291.BackColor = System.Drawing.Color.Transparent;
  6085. this.label291.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6086. this.label291.ForeColor = System.Drawing.Color.Blue;
  6087. this.label291.Location = new System.Drawing.Point(99, 242);
  6088. this.label291.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6089. this.label291.Name = "label291";
  6090. this.label291.Size = new System.Drawing.Size(31, 15);
  6091. this.label291.TabIndex = 72;
  6092. this.label291.Text = "---";
  6093. //
  6094. // label292
  6095. //
  6096. this.label292.AutoSize = true;
  6097. this.label292.BackColor = System.Drawing.Color.Transparent;
  6098. this.label292.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6099. this.label292.ForeColor = System.Drawing.Color.Blue;
  6100. this.label292.Location = new System.Drawing.Point(96, 92);
  6101. this.label292.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6102. this.label292.Name = "label292";
  6103. this.label292.Size = new System.Drawing.Size(31, 15);
  6104. this.label292.TabIndex = 12;
  6105. this.label292.Text = "---";
  6106. //
  6107. // label293
  6108. //
  6109. this.label293.AutoSize = true;
  6110. this.label293.BackColor = System.Drawing.Color.Transparent;
  6111. this.label293.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6112. this.label293.ForeColor = System.Drawing.Color.Blue;
  6113. this.label293.Location = new System.Drawing.Point(96, 142);
  6114. this.label293.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6115. this.label293.Name = "label293";
  6116. this.label293.Size = new System.Drawing.Size(31, 15);
  6117. this.label293.TabIndex = 64;
  6118. this.label293.Text = "---";
  6119. //
  6120. // label294
  6121. //
  6122. this.label294.AutoSize = true;
  6123. this.label294.BackColor = System.Drawing.Color.Transparent;
  6124. this.label294.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6125. this.label294.Location = new System.Drawing.Point(3, 142);
  6126. this.label294.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6127. this.label294.Name = "label294";
  6128. this.label294.Size = new System.Drawing.Size(82, 15);
  6129. this.label294.TabIndex = 63;
  6130. this.label294.Text = "工作指令:";
  6131. //
  6132. // label295
  6133. //
  6134. this.label295.AutoSize = true;
  6135. this.label295.BackColor = System.Drawing.Color.Transparent;
  6136. this.label295.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6137. this.label295.ForeColor = System.Drawing.Color.Blue;
  6138. this.label295.Location = new System.Drawing.Point(97, 215);
  6139. this.label295.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6140. this.label295.Name = "label295";
  6141. this.label295.Size = new System.Drawing.Size(31, 15);
  6142. this.label295.TabIndex = 16;
  6143. this.label295.Text = "---";
  6144. //
  6145. // label296
  6146. //
  6147. this.label296.AutoSize = true;
  6148. this.label296.BackColor = System.Drawing.Color.Transparent;
  6149. this.label296.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6150. this.label296.Location = new System.Drawing.Point(3, 92);
  6151. this.label296.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6152. this.label296.Name = "label296";
  6153. this.label296.Size = new System.Drawing.Size(82, 15);
  6154. this.label296.TabIndex = 15;
  6155. this.label296.Text = "工作模式:";
  6156. //
  6157. // label297
  6158. //
  6159. this.label297.AutoSize = true;
  6160. this.label297.BackColor = System.Drawing.Color.Transparent;
  6161. this.label297.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6162. this.label297.ForeColor = System.Drawing.Color.Blue;
  6163. this.label297.Location = new System.Drawing.Point(97, 190);
  6164. this.label297.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6165. this.label297.Name = "label297";
  6166. this.label297.Size = new System.Drawing.Size(31, 15);
  6167. this.label297.TabIndex = 14;
  6168. this.label297.Text = "---";
  6169. //
  6170. // label298
  6171. //
  6172. this.label298.AutoSize = true;
  6173. this.label298.BackColor = System.Drawing.Color.Transparent;
  6174. this.label298.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6175. this.label298.ForeColor = System.Drawing.Color.Blue;
  6176. this.label298.Location = new System.Drawing.Point(96, 115);
  6177. this.label298.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6178. this.label298.Name = "label298";
  6179. this.label298.Size = new System.Drawing.Size(31, 15);
  6180. this.label298.TabIndex = 10;
  6181. this.label298.Text = "---";
  6182. //
  6183. // label299
  6184. //
  6185. this.label299.AutoSize = true;
  6186. this.label299.BackColor = System.Drawing.Color.Transparent;
  6187. this.label299.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6188. this.label299.Location = new System.Drawing.Point(3, 115);
  6189. this.label299.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6190. this.label299.Name = "label299";
  6191. this.label299.Size = new System.Drawing.Size(82, 15);
  6192. this.label299.TabIndex = 6;
  6193. this.label299.Text = "工作状态:";
  6194. //
  6195. // label300
  6196. //
  6197. this.label300.AutoSize = true;
  6198. this.label300.BackColor = System.Drawing.Color.Transparent;
  6199. this.label300.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6200. this.label300.Location = new System.Drawing.Point(59, 32);
  6201. this.label300.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6202. this.label300.Name = "label300";
  6203. this.label300.Size = new System.Drawing.Size(64, 20);
  6204. this.label300.TabIndex = 0;
  6205. this.label300.Text = "RGV14";
  6206. //
  6207. // pictureBox32
  6208. //
  6209. this.pictureBox32.BackColor = System.Drawing.Color.Transparent;
  6210. this.pictureBox32.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox32.Image")));
  6211. this.pictureBox32.Location = new System.Drawing.Point(88, -2);
  6212. this.pictureBox32.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6213. this.pictureBox32.Name = "pictureBox32";
  6214. this.pictureBox32.Size = new System.Drawing.Size(35, 32);
  6215. this.pictureBox32.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6216. this.pictureBox32.TabIndex = 65;
  6217. this.pictureBox32.TabStop = false;
  6218. this.pictureBox32.Tag = "1";
  6219. //
  6220. // pictureBox33
  6221. //
  6222. this.pictureBox33.BackColor = System.Drawing.Color.Transparent;
  6223. this.pictureBox33.Location = new System.Drawing.Point(87, -2);
  6224. this.pictureBox33.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6225. this.pictureBox33.Name = "pictureBox33";
  6226. this.pictureBox33.Size = new System.Drawing.Size(35, 32);
  6227. this.pictureBox33.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6228. this.pictureBox33.TabIndex = 5;
  6229. this.pictureBox33.TabStop = false;
  6230. //
  6231. // myPanel15
  6232. //
  6233. this.myPanel15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel15.BackgroundImage")));
  6234. this.myPanel15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6235. this.myPanel15.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6236. this.myPanel15.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6237. this.myPanel15.Controls.Add(this.label269);
  6238. this.myPanel15.Controls.Add(this.label270);
  6239. this.myPanel15.Controls.Add(this.label271);
  6240. this.myPanel15.Controls.Add(this.label272);
  6241. this.myPanel15.Controls.Add(this.label273);
  6242. this.myPanel15.Controls.Add(this.label274);
  6243. this.myPanel15.Controls.Add(this.label275);
  6244. this.myPanel15.Controls.Add(this.label276);
  6245. this.myPanel15.Controls.Add(this.label277);
  6246. this.myPanel15.Controls.Add(this.label278);
  6247. this.myPanel15.Controls.Add(this.label279);
  6248. this.myPanel15.Controls.Add(this.label280);
  6249. this.myPanel15.Controls.Add(this.label281);
  6250. this.myPanel15.Controls.Add(this.label282);
  6251. this.myPanel15.Controls.Add(this.label283);
  6252. this.myPanel15.Controls.Add(this.label284);
  6253. this.myPanel15.Controls.Add(this.pictureBox30);
  6254. this.myPanel15.Controls.Add(this.pictureBox31);
  6255. this.myPanel15.Location = new System.Drawing.Point(3971, 1);
  6256. this.myPanel15.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6257. this.myPanel15.Name = "myPanel15";
  6258. this.myPanel15.Size = new System.Drawing.Size(217, 312);
  6259. this.myPanel15.TabIndex = 138;
  6260. //
  6261. // label269
  6262. //
  6263. this.label269.AutoSize = true;
  6264. this.label269.BackColor = System.Drawing.Color.Transparent;
  6265. this.label269.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6266. this.label269.Location = new System.Drawing.Point(4, 241);
  6267. this.label269.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6268. this.label269.Name = "label269";
  6269. this.label269.Size = new System.Drawing.Size(82, 15);
  6270. this.label269.TabIndex = 106;
  6271. this.label269.Text = "光电状态:";
  6272. //
  6273. // label270
  6274. //
  6275. this.label270.AutoSize = true;
  6276. this.label270.BackColor = System.Drawing.Color.Transparent;
  6277. this.label270.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6278. this.label270.Location = new System.Drawing.Point(3, 189);
  6279. this.label270.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6280. this.label270.Name = "label270";
  6281. this.label270.Size = new System.Drawing.Size(82, 15);
  6282. this.label270.TabIndex = 105;
  6283. this.label270.Text = "起始地址:";
  6284. //
  6285. // label271
  6286. //
  6287. this.label271.AutoSize = true;
  6288. this.label271.BackColor = System.Drawing.Color.Transparent;
  6289. this.label271.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6290. this.label271.ForeColor = System.Drawing.SystemColors.ControlText;
  6291. this.label271.Location = new System.Drawing.Point(3, 214);
  6292. this.label271.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6293. this.label271.Name = "label271";
  6294. this.label271.Size = new System.Drawing.Size(82, 15);
  6295. this.label271.TabIndex = 104;
  6296. this.label271.Text = "目标地址:";
  6297. //
  6298. // label272
  6299. //
  6300. this.label272.AutoSize = true;
  6301. this.label272.BackColor = System.Drawing.Color.Transparent;
  6302. this.label272.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6303. this.label272.ForeColor = System.Drawing.Color.Blue;
  6304. this.label272.Location = new System.Drawing.Point(96, 166);
  6305. this.label272.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6306. this.label272.Name = "label272";
  6307. this.label272.Size = new System.Drawing.Size(31, 15);
  6308. this.label272.TabIndex = 101;
  6309. this.label272.Text = "---";
  6310. //
  6311. // label273
  6312. //
  6313. this.label273.AutoSize = true;
  6314. this.label273.BackColor = System.Drawing.Color.Transparent;
  6315. this.label273.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6316. this.label273.Location = new System.Drawing.Point(3, 166);
  6317. this.label273.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6318. this.label273.Name = "label273";
  6319. this.label273.Size = new System.Drawing.Size(82, 15);
  6320. this.label273.TabIndex = 100;
  6321. this.label273.Text = "作业类型:";
  6322. //
  6323. // label274
  6324. //
  6325. this.label274.BackColor = System.Drawing.Color.Transparent;
  6326. this.label274.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6327. this.label274.ForeColor = System.Drawing.Color.Red;
  6328. this.label274.Location = new System.Drawing.Point(7, 58);
  6329. this.label274.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6330. this.label274.Name = "label274";
  6331. this.label274.Size = new System.Drawing.Size(201, 30);
  6332. this.label274.TabIndex = 92;
  6333. //
  6334. // label275
  6335. //
  6336. this.label275.AutoSize = true;
  6337. this.label275.BackColor = System.Drawing.Color.Transparent;
  6338. this.label275.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6339. this.label275.ForeColor = System.Drawing.Color.Blue;
  6340. this.label275.Location = new System.Drawing.Point(99, 242);
  6341. this.label275.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6342. this.label275.Name = "label275";
  6343. this.label275.Size = new System.Drawing.Size(31, 15);
  6344. this.label275.TabIndex = 72;
  6345. this.label275.Text = "---";
  6346. //
  6347. // label276
  6348. //
  6349. this.label276.AutoSize = true;
  6350. this.label276.BackColor = System.Drawing.Color.Transparent;
  6351. this.label276.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6352. this.label276.ForeColor = System.Drawing.Color.Blue;
  6353. this.label276.Location = new System.Drawing.Point(96, 92);
  6354. this.label276.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6355. this.label276.Name = "label276";
  6356. this.label276.Size = new System.Drawing.Size(31, 15);
  6357. this.label276.TabIndex = 12;
  6358. this.label276.Text = "---";
  6359. //
  6360. // label277
  6361. //
  6362. this.label277.AutoSize = true;
  6363. this.label277.BackColor = System.Drawing.Color.Transparent;
  6364. this.label277.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6365. this.label277.ForeColor = System.Drawing.Color.Blue;
  6366. this.label277.Location = new System.Drawing.Point(96, 142);
  6367. this.label277.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6368. this.label277.Name = "label277";
  6369. this.label277.Size = new System.Drawing.Size(31, 15);
  6370. this.label277.TabIndex = 64;
  6371. this.label277.Text = "---";
  6372. //
  6373. // label278
  6374. //
  6375. this.label278.AutoSize = true;
  6376. this.label278.BackColor = System.Drawing.Color.Transparent;
  6377. this.label278.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6378. this.label278.Location = new System.Drawing.Point(3, 142);
  6379. this.label278.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6380. this.label278.Name = "label278";
  6381. this.label278.Size = new System.Drawing.Size(82, 15);
  6382. this.label278.TabIndex = 63;
  6383. this.label278.Text = "工作指令:";
  6384. //
  6385. // label279
  6386. //
  6387. this.label279.AutoSize = true;
  6388. this.label279.BackColor = System.Drawing.Color.Transparent;
  6389. this.label279.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6390. this.label279.ForeColor = System.Drawing.Color.Blue;
  6391. this.label279.Location = new System.Drawing.Point(97, 215);
  6392. this.label279.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6393. this.label279.Name = "label279";
  6394. this.label279.Size = new System.Drawing.Size(31, 15);
  6395. this.label279.TabIndex = 16;
  6396. this.label279.Text = "---";
  6397. //
  6398. // label280
  6399. //
  6400. this.label280.AutoSize = true;
  6401. this.label280.BackColor = System.Drawing.Color.Transparent;
  6402. this.label280.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6403. this.label280.Location = new System.Drawing.Point(3, 92);
  6404. this.label280.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6405. this.label280.Name = "label280";
  6406. this.label280.Size = new System.Drawing.Size(82, 15);
  6407. this.label280.TabIndex = 15;
  6408. this.label280.Text = "工作模式:";
  6409. //
  6410. // label281
  6411. //
  6412. this.label281.AutoSize = true;
  6413. this.label281.BackColor = System.Drawing.Color.Transparent;
  6414. this.label281.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6415. this.label281.ForeColor = System.Drawing.Color.Blue;
  6416. this.label281.Location = new System.Drawing.Point(97, 190);
  6417. this.label281.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6418. this.label281.Name = "label281";
  6419. this.label281.Size = new System.Drawing.Size(31, 15);
  6420. this.label281.TabIndex = 14;
  6421. this.label281.Text = "---";
  6422. //
  6423. // label282
  6424. //
  6425. this.label282.AutoSize = true;
  6426. this.label282.BackColor = System.Drawing.Color.Transparent;
  6427. this.label282.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6428. this.label282.ForeColor = System.Drawing.Color.Blue;
  6429. this.label282.Location = new System.Drawing.Point(96, 115);
  6430. this.label282.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6431. this.label282.Name = "label282";
  6432. this.label282.Size = new System.Drawing.Size(31, 15);
  6433. this.label282.TabIndex = 10;
  6434. this.label282.Text = "---";
  6435. //
  6436. // label283
  6437. //
  6438. this.label283.AutoSize = true;
  6439. this.label283.BackColor = System.Drawing.Color.Transparent;
  6440. this.label283.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6441. this.label283.Location = new System.Drawing.Point(3, 115);
  6442. this.label283.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6443. this.label283.Name = "label283";
  6444. this.label283.Size = new System.Drawing.Size(82, 15);
  6445. this.label283.TabIndex = 6;
  6446. this.label283.Text = "工作状态:";
  6447. //
  6448. // label284
  6449. //
  6450. this.label284.AutoSize = true;
  6451. this.label284.BackColor = System.Drawing.Color.Transparent;
  6452. this.label284.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6453. this.label284.Location = new System.Drawing.Point(59, 32);
  6454. this.label284.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6455. this.label284.Name = "label284";
  6456. this.label284.Size = new System.Drawing.Size(64, 20);
  6457. this.label284.TabIndex = 0;
  6458. this.label284.Text = "RGV11";
  6459. //
  6460. // pictureBox30
  6461. //
  6462. this.pictureBox30.BackColor = System.Drawing.Color.Transparent;
  6463. this.pictureBox30.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox30.Image")));
  6464. this.pictureBox30.Location = new System.Drawing.Point(88, -2);
  6465. this.pictureBox30.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6466. this.pictureBox30.Name = "pictureBox30";
  6467. this.pictureBox30.Size = new System.Drawing.Size(35, 32);
  6468. this.pictureBox30.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6469. this.pictureBox30.TabIndex = 65;
  6470. this.pictureBox30.TabStop = false;
  6471. this.pictureBox30.Tag = "1";
  6472. //
  6473. // pictureBox31
  6474. //
  6475. this.pictureBox31.BackColor = System.Drawing.Color.Transparent;
  6476. this.pictureBox31.Location = new System.Drawing.Point(87, -2);
  6477. this.pictureBox31.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6478. this.pictureBox31.Name = "pictureBox31";
  6479. this.pictureBox31.Size = new System.Drawing.Size(35, 32);
  6480. this.pictureBox31.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6481. this.pictureBox31.TabIndex = 5;
  6482. this.pictureBox31.TabStop = false;
  6483. //
  6484. // myPanel14
  6485. //
  6486. this.myPanel14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel14.BackgroundImage")));
  6487. this.myPanel14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6488. this.myPanel14.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6489. this.myPanel14.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6490. this.myPanel14.Controls.Add(this.label253);
  6491. this.myPanel14.Controls.Add(this.label254);
  6492. this.myPanel14.Controls.Add(this.label255);
  6493. this.myPanel14.Controls.Add(this.label256);
  6494. this.myPanel14.Controls.Add(this.label257);
  6495. this.myPanel14.Controls.Add(this.label258);
  6496. this.myPanel14.Controls.Add(this.label259);
  6497. this.myPanel14.Controls.Add(this.label260);
  6498. this.myPanel14.Controls.Add(this.label261);
  6499. this.myPanel14.Controls.Add(this.label262);
  6500. this.myPanel14.Controls.Add(this.label263);
  6501. this.myPanel14.Controls.Add(this.label264);
  6502. this.myPanel14.Controls.Add(this.label265);
  6503. this.myPanel14.Controls.Add(this.label266);
  6504. this.myPanel14.Controls.Add(this.label267);
  6505. this.myPanel14.Controls.Add(this.label268);
  6506. this.myPanel14.Controls.Add(this.pictureBox27);
  6507. this.myPanel14.Controls.Add(this.pictureBox28);
  6508. this.myPanel14.Location = new System.Drawing.Point(3753, 2);
  6509. this.myPanel14.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6510. this.myPanel14.Name = "myPanel14";
  6511. this.myPanel14.Size = new System.Drawing.Size(217, 312);
  6512. this.myPanel14.TabIndex = 137;
  6513. //
  6514. // label253
  6515. //
  6516. this.label253.AutoSize = true;
  6517. this.label253.BackColor = System.Drawing.Color.Transparent;
  6518. this.label253.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6519. this.label253.Location = new System.Drawing.Point(4, 241);
  6520. this.label253.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6521. this.label253.Name = "label253";
  6522. this.label253.Size = new System.Drawing.Size(82, 15);
  6523. this.label253.TabIndex = 106;
  6524. this.label253.Text = "光电状态:";
  6525. //
  6526. // label254
  6527. //
  6528. this.label254.AutoSize = true;
  6529. this.label254.BackColor = System.Drawing.Color.Transparent;
  6530. this.label254.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6531. this.label254.Location = new System.Drawing.Point(3, 189);
  6532. this.label254.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6533. this.label254.Name = "label254";
  6534. this.label254.Size = new System.Drawing.Size(82, 15);
  6535. this.label254.TabIndex = 105;
  6536. this.label254.Text = "起始地址:";
  6537. //
  6538. // label255
  6539. //
  6540. this.label255.AutoSize = true;
  6541. this.label255.BackColor = System.Drawing.Color.Transparent;
  6542. this.label255.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6543. this.label255.ForeColor = System.Drawing.SystemColors.ControlText;
  6544. this.label255.Location = new System.Drawing.Point(3, 214);
  6545. this.label255.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6546. this.label255.Name = "label255";
  6547. this.label255.Size = new System.Drawing.Size(82, 15);
  6548. this.label255.TabIndex = 104;
  6549. this.label255.Text = "目标地址:";
  6550. //
  6551. // label256
  6552. //
  6553. this.label256.AutoSize = true;
  6554. this.label256.BackColor = System.Drawing.Color.Transparent;
  6555. this.label256.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6556. this.label256.ForeColor = System.Drawing.Color.Blue;
  6557. this.label256.Location = new System.Drawing.Point(96, 166);
  6558. this.label256.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6559. this.label256.Name = "label256";
  6560. this.label256.Size = new System.Drawing.Size(31, 15);
  6561. this.label256.TabIndex = 101;
  6562. this.label256.Text = "---";
  6563. //
  6564. // label257
  6565. //
  6566. this.label257.AutoSize = true;
  6567. this.label257.BackColor = System.Drawing.Color.Transparent;
  6568. this.label257.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6569. this.label257.Location = new System.Drawing.Point(3, 166);
  6570. this.label257.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6571. this.label257.Name = "label257";
  6572. this.label257.Size = new System.Drawing.Size(82, 15);
  6573. this.label257.TabIndex = 100;
  6574. this.label257.Text = "作业类型:";
  6575. //
  6576. // label258
  6577. //
  6578. this.label258.BackColor = System.Drawing.Color.Transparent;
  6579. this.label258.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6580. this.label258.ForeColor = System.Drawing.Color.Red;
  6581. this.label258.Location = new System.Drawing.Point(7, 58);
  6582. this.label258.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6583. this.label258.Name = "label258";
  6584. this.label258.Size = new System.Drawing.Size(201, 30);
  6585. this.label258.TabIndex = 92;
  6586. //
  6587. // label259
  6588. //
  6589. this.label259.AutoSize = true;
  6590. this.label259.BackColor = System.Drawing.Color.Transparent;
  6591. this.label259.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6592. this.label259.ForeColor = System.Drawing.Color.Blue;
  6593. this.label259.Location = new System.Drawing.Point(99, 242);
  6594. this.label259.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6595. this.label259.Name = "label259";
  6596. this.label259.Size = new System.Drawing.Size(31, 15);
  6597. this.label259.TabIndex = 72;
  6598. this.label259.Text = "---";
  6599. //
  6600. // label260
  6601. //
  6602. this.label260.AutoSize = true;
  6603. this.label260.BackColor = System.Drawing.Color.Transparent;
  6604. this.label260.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6605. this.label260.ForeColor = System.Drawing.Color.Blue;
  6606. this.label260.Location = new System.Drawing.Point(96, 92);
  6607. this.label260.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6608. this.label260.Name = "label260";
  6609. this.label260.Size = new System.Drawing.Size(31, 15);
  6610. this.label260.TabIndex = 12;
  6611. this.label260.Text = "---";
  6612. //
  6613. // label261
  6614. //
  6615. this.label261.AutoSize = true;
  6616. this.label261.BackColor = System.Drawing.Color.Transparent;
  6617. this.label261.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6618. this.label261.ForeColor = System.Drawing.Color.Blue;
  6619. this.label261.Location = new System.Drawing.Point(96, 142);
  6620. this.label261.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6621. this.label261.Name = "label261";
  6622. this.label261.Size = new System.Drawing.Size(31, 15);
  6623. this.label261.TabIndex = 64;
  6624. this.label261.Text = "---";
  6625. //
  6626. // label262
  6627. //
  6628. this.label262.AutoSize = true;
  6629. this.label262.BackColor = System.Drawing.Color.Transparent;
  6630. this.label262.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6631. this.label262.Location = new System.Drawing.Point(3, 142);
  6632. this.label262.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6633. this.label262.Name = "label262";
  6634. this.label262.Size = new System.Drawing.Size(82, 15);
  6635. this.label262.TabIndex = 63;
  6636. this.label262.Text = "工作指令:";
  6637. //
  6638. // label263
  6639. //
  6640. this.label263.AutoSize = true;
  6641. this.label263.BackColor = System.Drawing.Color.Transparent;
  6642. this.label263.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6643. this.label263.ForeColor = System.Drawing.Color.Blue;
  6644. this.label263.Location = new System.Drawing.Point(97, 215);
  6645. this.label263.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6646. this.label263.Name = "label263";
  6647. this.label263.Size = new System.Drawing.Size(31, 15);
  6648. this.label263.TabIndex = 16;
  6649. this.label263.Text = "---";
  6650. //
  6651. // label264
  6652. //
  6653. this.label264.AutoSize = true;
  6654. this.label264.BackColor = System.Drawing.Color.Transparent;
  6655. this.label264.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6656. this.label264.Location = new System.Drawing.Point(3, 92);
  6657. this.label264.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6658. this.label264.Name = "label264";
  6659. this.label264.Size = new System.Drawing.Size(82, 15);
  6660. this.label264.TabIndex = 15;
  6661. this.label264.Text = "工作模式:";
  6662. //
  6663. // label265
  6664. //
  6665. this.label265.AutoSize = true;
  6666. this.label265.BackColor = System.Drawing.Color.Transparent;
  6667. this.label265.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6668. this.label265.ForeColor = System.Drawing.Color.Blue;
  6669. this.label265.Location = new System.Drawing.Point(97, 190);
  6670. this.label265.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6671. this.label265.Name = "label265";
  6672. this.label265.Size = new System.Drawing.Size(31, 15);
  6673. this.label265.TabIndex = 14;
  6674. this.label265.Text = "---";
  6675. //
  6676. // label266
  6677. //
  6678. this.label266.AutoSize = true;
  6679. this.label266.BackColor = System.Drawing.Color.Transparent;
  6680. this.label266.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6681. this.label266.ForeColor = System.Drawing.Color.Blue;
  6682. this.label266.Location = new System.Drawing.Point(96, 115);
  6683. this.label266.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6684. this.label266.Name = "label266";
  6685. this.label266.Size = new System.Drawing.Size(31, 15);
  6686. this.label266.TabIndex = 10;
  6687. this.label266.Text = "---";
  6688. //
  6689. // label267
  6690. //
  6691. this.label267.AutoSize = true;
  6692. this.label267.BackColor = System.Drawing.Color.Transparent;
  6693. this.label267.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6694. this.label267.Location = new System.Drawing.Point(3, 115);
  6695. this.label267.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6696. this.label267.Name = "label267";
  6697. this.label267.Size = new System.Drawing.Size(82, 15);
  6698. this.label267.TabIndex = 6;
  6699. this.label267.Text = "工作状态:";
  6700. //
  6701. // label268
  6702. //
  6703. this.label268.AutoSize = true;
  6704. this.label268.BackColor = System.Drawing.Color.Transparent;
  6705. this.label268.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6706. this.label268.Location = new System.Drawing.Point(59, 32);
  6707. this.label268.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6708. this.label268.Name = "label268";
  6709. this.label268.Size = new System.Drawing.Size(64, 20);
  6710. this.label268.TabIndex = 0;
  6711. this.label268.Text = "RGV10";
  6712. //
  6713. // pictureBox27
  6714. //
  6715. this.pictureBox27.BackColor = System.Drawing.Color.Transparent;
  6716. this.pictureBox27.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox27.Image")));
  6717. this.pictureBox27.Location = new System.Drawing.Point(88, -2);
  6718. this.pictureBox27.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6719. this.pictureBox27.Name = "pictureBox27";
  6720. this.pictureBox27.Size = new System.Drawing.Size(35, 32);
  6721. this.pictureBox27.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6722. this.pictureBox27.TabIndex = 65;
  6723. this.pictureBox27.TabStop = false;
  6724. this.pictureBox27.Tag = "1";
  6725. //
  6726. // pictureBox28
  6727. //
  6728. this.pictureBox28.BackColor = System.Drawing.Color.Transparent;
  6729. this.pictureBox28.Location = new System.Drawing.Point(87, -2);
  6730. this.pictureBox28.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6731. this.pictureBox28.Name = "pictureBox28";
  6732. this.pictureBox28.Size = new System.Drawing.Size(35, 32);
  6733. this.pictureBox28.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6734. this.pictureBox28.TabIndex = 5;
  6735. this.pictureBox28.TabStop = false;
  6736. //
  6737. // myPanel13
  6738. //
  6739. this.myPanel13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel13.BackgroundImage")));
  6740. this.myPanel13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6741. this.myPanel13.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6742. this.myPanel13.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6743. this.myPanel13.Controls.Add(this.label237);
  6744. this.myPanel13.Controls.Add(this.label238);
  6745. this.myPanel13.Controls.Add(this.label239);
  6746. this.myPanel13.Controls.Add(this.label240);
  6747. this.myPanel13.Controls.Add(this.label241);
  6748. this.myPanel13.Controls.Add(this.label242);
  6749. this.myPanel13.Controls.Add(this.label243);
  6750. this.myPanel13.Controls.Add(this.label244);
  6751. this.myPanel13.Controls.Add(this.label245);
  6752. this.myPanel13.Controls.Add(this.label246);
  6753. this.myPanel13.Controls.Add(this.label247);
  6754. this.myPanel13.Controls.Add(this.label248);
  6755. this.myPanel13.Controls.Add(this.label249);
  6756. this.myPanel13.Controls.Add(this.label250);
  6757. this.myPanel13.Controls.Add(this.label251);
  6758. this.myPanel13.Controls.Add(this.label252);
  6759. this.myPanel13.Controls.Add(this.pictureBox25);
  6760. this.myPanel13.Controls.Add(this.pictureBox26);
  6761. this.myPanel13.Location = new System.Drawing.Point(3535, 2);
  6762. this.myPanel13.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6763. this.myPanel13.Name = "myPanel13";
  6764. this.myPanel13.Size = new System.Drawing.Size(217, 312);
  6765. this.myPanel13.TabIndex = 136;
  6766. //
  6767. // label237
  6768. //
  6769. this.label237.AutoSize = true;
  6770. this.label237.BackColor = System.Drawing.Color.Transparent;
  6771. this.label237.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6772. this.label237.Location = new System.Drawing.Point(4, 241);
  6773. this.label237.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6774. this.label237.Name = "label237";
  6775. this.label237.Size = new System.Drawing.Size(82, 15);
  6776. this.label237.TabIndex = 106;
  6777. this.label237.Text = "光电状态:";
  6778. //
  6779. // label238
  6780. //
  6781. this.label238.AutoSize = true;
  6782. this.label238.BackColor = System.Drawing.Color.Transparent;
  6783. this.label238.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6784. this.label238.Location = new System.Drawing.Point(3, 189);
  6785. this.label238.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6786. this.label238.Name = "label238";
  6787. this.label238.Size = new System.Drawing.Size(82, 15);
  6788. this.label238.TabIndex = 105;
  6789. this.label238.Text = "起始地址:";
  6790. //
  6791. // label239
  6792. //
  6793. this.label239.AutoSize = true;
  6794. this.label239.BackColor = System.Drawing.Color.Transparent;
  6795. this.label239.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6796. this.label239.ForeColor = System.Drawing.SystemColors.ControlText;
  6797. this.label239.Location = new System.Drawing.Point(3, 214);
  6798. this.label239.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6799. this.label239.Name = "label239";
  6800. this.label239.Size = new System.Drawing.Size(82, 15);
  6801. this.label239.TabIndex = 104;
  6802. this.label239.Text = "目标地址:";
  6803. //
  6804. // label240
  6805. //
  6806. this.label240.AutoSize = true;
  6807. this.label240.BackColor = System.Drawing.Color.Transparent;
  6808. this.label240.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6809. this.label240.ForeColor = System.Drawing.Color.Blue;
  6810. this.label240.Location = new System.Drawing.Point(96, 166);
  6811. this.label240.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6812. this.label240.Name = "label240";
  6813. this.label240.Size = new System.Drawing.Size(31, 15);
  6814. this.label240.TabIndex = 101;
  6815. this.label240.Text = "---";
  6816. //
  6817. // label241
  6818. //
  6819. this.label241.AutoSize = true;
  6820. this.label241.BackColor = System.Drawing.Color.Transparent;
  6821. this.label241.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6822. this.label241.Location = new System.Drawing.Point(3, 166);
  6823. this.label241.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6824. this.label241.Name = "label241";
  6825. this.label241.Size = new System.Drawing.Size(82, 15);
  6826. this.label241.TabIndex = 100;
  6827. this.label241.Text = "作业类型:";
  6828. //
  6829. // label242
  6830. //
  6831. this.label242.BackColor = System.Drawing.Color.Transparent;
  6832. this.label242.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6833. this.label242.ForeColor = System.Drawing.Color.Red;
  6834. this.label242.Location = new System.Drawing.Point(7, 58);
  6835. this.label242.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6836. this.label242.Name = "label242";
  6837. this.label242.Size = new System.Drawing.Size(201, 30);
  6838. this.label242.TabIndex = 92;
  6839. //
  6840. // label243
  6841. //
  6842. this.label243.AutoSize = true;
  6843. this.label243.BackColor = System.Drawing.Color.Transparent;
  6844. this.label243.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6845. this.label243.ForeColor = System.Drawing.Color.Blue;
  6846. this.label243.Location = new System.Drawing.Point(99, 242);
  6847. this.label243.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6848. this.label243.Name = "label243";
  6849. this.label243.Size = new System.Drawing.Size(31, 15);
  6850. this.label243.TabIndex = 72;
  6851. this.label243.Text = "---";
  6852. //
  6853. // label244
  6854. //
  6855. this.label244.AutoSize = true;
  6856. this.label244.BackColor = System.Drawing.Color.Transparent;
  6857. this.label244.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6858. this.label244.ForeColor = System.Drawing.Color.Blue;
  6859. this.label244.Location = new System.Drawing.Point(96, 92);
  6860. this.label244.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6861. this.label244.Name = "label244";
  6862. this.label244.Size = new System.Drawing.Size(31, 15);
  6863. this.label244.TabIndex = 12;
  6864. this.label244.Text = "---";
  6865. //
  6866. // label245
  6867. //
  6868. this.label245.AutoSize = true;
  6869. this.label245.BackColor = System.Drawing.Color.Transparent;
  6870. this.label245.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6871. this.label245.ForeColor = System.Drawing.Color.Blue;
  6872. this.label245.Location = new System.Drawing.Point(96, 142);
  6873. this.label245.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6874. this.label245.Name = "label245";
  6875. this.label245.Size = new System.Drawing.Size(31, 15);
  6876. this.label245.TabIndex = 64;
  6877. this.label245.Text = "---";
  6878. //
  6879. // label246
  6880. //
  6881. this.label246.AutoSize = true;
  6882. this.label246.BackColor = System.Drawing.Color.Transparent;
  6883. this.label246.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6884. this.label246.Location = new System.Drawing.Point(3, 142);
  6885. this.label246.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6886. this.label246.Name = "label246";
  6887. this.label246.Size = new System.Drawing.Size(82, 15);
  6888. this.label246.TabIndex = 63;
  6889. this.label246.Text = "工作指令:";
  6890. //
  6891. // label247
  6892. //
  6893. this.label247.AutoSize = true;
  6894. this.label247.BackColor = System.Drawing.Color.Transparent;
  6895. this.label247.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6896. this.label247.ForeColor = System.Drawing.Color.Blue;
  6897. this.label247.Location = new System.Drawing.Point(97, 215);
  6898. this.label247.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6899. this.label247.Name = "label247";
  6900. this.label247.Size = new System.Drawing.Size(31, 15);
  6901. this.label247.TabIndex = 16;
  6902. this.label247.Text = "---";
  6903. //
  6904. // label248
  6905. //
  6906. this.label248.AutoSize = true;
  6907. this.label248.BackColor = System.Drawing.Color.Transparent;
  6908. this.label248.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6909. this.label248.Location = new System.Drawing.Point(3, 92);
  6910. this.label248.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6911. this.label248.Name = "label248";
  6912. this.label248.Size = new System.Drawing.Size(82, 15);
  6913. this.label248.TabIndex = 15;
  6914. this.label248.Text = "工作模式:";
  6915. //
  6916. // label249
  6917. //
  6918. this.label249.AutoSize = true;
  6919. this.label249.BackColor = System.Drawing.Color.Transparent;
  6920. this.label249.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6921. this.label249.ForeColor = System.Drawing.Color.Blue;
  6922. this.label249.Location = new System.Drawing.Point(97, 190);
  6923. this.label249.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6924. this.label249.Name = "label249";
  6925. this.label249.Size = new System.Drawing.Size(31, 15);
  6926. this.label249.TabIndex = 14;
  6927. this.label249.Text = "---";
  6928. //
  6929. // label250
  6930. //
  6931. this.label250.AutoSize = true;
  6932. this.label250.BackColor = System.Drawing.Color.Transparent;
  6933. this.label250.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6934. this.label250.ForeColor = System.Drawing.Color.Blue;
  6935. this.label250.Location = new System.Drawing.Point(96, 115);
  6936. this.label250.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6937. this.label250.Name = "label250";
  6938. this.label250.Size = new System.Drawing.Size(31, 15);
  6939. this.label250.TabIndex = 10;
  6940. this.label250.Text = "---";
  6941. //
  6942. // label251
  6943. //
  6944. this.label251.AutoSize = true;
  6945. this.label251.BackColor = System.Drawing.Color.Transparent;
  6946. this.label251.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6947. this.label251.Location = new System.Drawing.Point(3, 115);
  6948. this.label251.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6949. this.label251.Name = "label251";
  6950. this.label251.Size = new System.Drawing.Size(82, 15);
  6951. this.label251.TabIndex = 6;
  6952. this.label251.Text = "工作状态:";
  6953. //
  6954. // label252
  6955. //
  6956. this.label252.AutoSize = true;
  6957. this.label252.BackColor = System.Drawing.Color.Transparent;
  6958. this.label252.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6959. this.label252.Location = new System.Drawing.Point(59, 32);
  6960. this.label252.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6961. this.label252.Name = "label252";
  6962. this.label252.Size = new System.Drawing.Size(53, 20);
  6963. this.label252.TabIndex = 0;
  6964. this.label252.Text = "RGV9";
  6965. //
  6966. // pictureBox25
  6967. //
  6968. this.pictureBox25.BackColor = System.Drawing.Color.Transparent;
  6969. this.pictureBox25.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox25.Image")));
  6970. this.pictureBox25.Location = new System.Drawing.Point(88, -2);
  6971. this.pictureBox25.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6972. this.pictureBox25.Name = "pictureBox25";
  6973. this.pictureBox25.Size = new System.Drawing.Size(35, 32);
  6974. this.pictureBox25.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6975. this.pictureBox25.TabIndex = 65;
  6976. this.pictureBox25.TabStop = false;
  6977. this.pictureBox25.Tag = "1";
  6978. //
  6979. // pictureBox26
  6980. //
  6981. this.pictureBox26.BackColor = System.Drawing.Color.Transparent;
  6982. this.pictureBox26.Location = new System.Drawing.Point(87, -2);
  6983. this.pictureBox26.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6984. this.pictureBox26.Name = "pictureBox26";
  6985. this.pictureBox26.Size = new System.Drawing.Size(35, 32);
  6986. this.pictureBox26.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6987. this.pictureBox26.TabIndex = 5;
  6988. this.pictureBox26.TabStop = false;
  6989. //
  6990. // myPanel12
  6991. //
  6992. this.myPanel12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel12.BackgroundImage")));
  6993. this.myPanel12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6994. this.myPanel12.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6995. this.myPanel12.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6996. this.myPanel12.Controls.Add(this.label221);
  6997. this.myPanel12.Controls.Add(this.label222);
  6998. this.myPanel12.Controls.Add(this.label223);
  6999. this.myPanel12.Controls.Add(this.label224);
  7000. this.myPanel12.Controls.Add(this.label225);
  7001. this.myPanel12.Controls.Add(this.label226);
  7002. this.myPanel12.Controls.Add(this.label227);
  7003. this.myPanel12.Controls.Add(this.label228);
  7004. this.myPanel12.Controls.Add(this.label229);
  7005. this.myPanel12.Controls.Add(this.label230);
  7006. this.myPanel12.Controls.Add(this.label231);
  7007. this.myPanel12.Controls.Add(this.label232);
  7008. this.myPanel12.Controls.Add(this.label233);
  7009. this.myPanel12.Controls.Add(this.label234);
  7010. this.myPanel12.Controls.Add(this.label235);
  7011. this.myPanel12.Controls.Add(this.label236);
  7012. this.myPanel12.Controls.Add(this.pictureBox23);
  7013. this.myPanel12.Controls.Add(this.pictureBox24);
  7014. this.myPanel12.Location = new System.Drawing.Point(3097, 2);
  7015. this.myPanel12.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7016. this.myPanel12.Name = "myPanel12";
  7017. this.myPanel12.Size = new System.Drawing.Size(217, 312);
  7018. this.myPanel12.TabIndex = 135;
  7019. //
  7020. // label221
  7021. //
  7022. this.label221.AutoSize = true;
  7023. this.label221.BackColor = System.Drawing.Color.Transparent;
  7024. this.label221.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7025. this.label221.Location = new System.Drawing.Point(4, 241);
  7026. this.label221.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7027. this.label221.Name = "label221";
  7028. this.label221.Size = new System.Drawing.Size(82, 15);
  7029. this.label221.TabIndex = 106;
  7030. this.label221.Text = "光电状态:";
  7031. //
  7032. // label222
  7033. //
  7034. this.label222.AutoSize = true;
  7035. this.label222.BackColor = System.Drawing.Color.Transparent;
  7036. this.label222.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7037. this.label222.Location = new System.Drawing.Point(3, 189);
  7038. this.label222.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7039. this.label222.Name = "label222";
  7040. this.label222.Size = new System.Drawing.Size(82, 15);
  7041. this.label222.TabIndex = 105;
  7042. this.label222.Text = "起始地址:";
  7043. //
  7044. // label223
  7045. //
  7046. this.label223.AutoSize = true;
  7047. this.label223.BackColor = System.Drawing.Color.Transparent;
  7048. this.label223.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7049. this.label223.ForeColor = System.Drawing.SystemColors.ControlText;
  7050. this.label223.Location = new System.Drawing.Point(3, 214);
  7051. this.label223.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7052. this.label223.Name = "label223";
  7053. this.label223.Size = new System.Drawing.Size(82, 15);
  7054. this.label223.TabIndex = 104;
  7055. this.label223.Text = "目标地址:";
  7056. //
  7057. // label224
  7058. //
  7059. this.label224.AutoSize = true;
  7060. this.label224.BackColor = System.Drawing.Color.Transparent;
  7061. this.label224.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7062. this.label224.ForeColor = System.Drawing.Color.Blue;
  7063. this.label224.Location = new System.Drawing.Point(96, 166);
  7064. this.label224.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7065. this.label224.Name = "label224";
  7066. this.label224.Size = new System.Drawing.Size(31, 15);
  7067. this.label224.TabIndex = 101;
  7068. this.label224.Text = "---";
  7069. //
  7070. // label225
  7071. //
  7072. this.label225.AutoSize = true;
  7073. this.label225.BackColor = System.Drawing.Color.Transparent;
  7074. this.label225.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7075. this.label225.Location = new System.Drawing.Point(3, 166);
  7076. this.label225.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7077. this.label225.Name = "label225";
  7078. this.label225.Size = new System.Drawing.Size(82, 15);
  7079. this.label225.TabIndex = 100;
  7080. this.label225.Text = "作业类型:";
  7081. //
  7082. // label226
  7083. //
  7084. this.label226.BackColor = System.Drawing.Color.Transparent;
  7085. this.label226.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7086. this.label226.ForeColor = System.Drawing.Color.Red;
  7087. this.label226.Location = new System.Drawing.Point(7, 58);
  7088. this.label226.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7089. this.label226.Name = "label226";
  7090. this.label226.Size = new System.Drawing.Size(201, 30);
  7091. this.label226.TabIndex = 92;
  7092. //
  7093. // label227
  7094. //
  7095. this.label227.AutoSize = true;
  7096. this.label227.BackColor = System.Drawing.Color.Transparent;
  7097. this.label227.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7098. this.label227.ForeColor = System.Drawing.Color.Blue;
  7099. this.label227.Location = new System.Drawing.Point(99, 242);
  7100. this.label227.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7101. this.label227.Name = "label227";
  7102. this.label227.Size = new System.Drawing.Size(31, 15);
  7103. this.label227.TabIndex = 72;
  7104. this.label227.Text = "---";
  7105. //
  7106. // label228
  7107. //
  7108. this.label228.AutoSize = true;
  7109. this.label228.BackColor = System.Drawing.Color.Transparent;
  7110. this.label228.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7111. this.label228.ForeColor = System.Drawing.Color.Blue;
  7112. this.label228.Location = new System.Drawing.Point(96, 92);
  7113. this.label228.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7114. this.label228.Name = "label228";
  7115. this.label228.Size = new System.Drawing.Size(31, 15);
  7116. this.label228.TabIndex = 12;
  7117. this.label228.Text = "---";
  7118. //
  7119. // label229
  7120. //
  7121. this.label229.AutoSize = true;
  7122. this.label229.BackColor = System.Drawing.Color.Transparent;
  7123. this.label229.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7124. this.label229.ForeColor = System.Drawing.Color.Blue;
  7125. this.label229.Location = new System.Drawing.Point(96, 142);
  7126. this.label229.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7127. this.label229.Name = "label229";
  7128. this.label229.Size = new System.Drawing.Size(31, 15);
  7129. this.label229.TabIndex = 64;
  7130. this.label229.Text = "---";
  7131. //
  7132. // label230
  7133. //
  7134. this.label230.AutoSize = true;
  7135. this.label230.BackColor = System.Drawing.Color.Transparent;
  7136. this.label230.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7137. this.label230.Location = new System.Drawing.Point(3, 142);
  7138. this.label230.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7139. this.label230.Name = "label230";
  7140. this.label230.Size = new System.Drawing.Size(82, 15);
  7141. this.label230.TabIndex = 63;
  7142. this.label230.Text = "工作指令:";
  7143. //
  7144. // label231
  7145. //
  7146. this.label231.AutoSize = true;
  7147. this.label231.BackColor = System.Drawing.Color.Transparent;
  7148. this.label231.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7149. this.label231.ForeColor = System.Drawing.Color.Blue;
  7150. this.label231.Location = new System.Drawing.Point(97, 215);
  7151. this.label231.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7152. this.label231.Name = "label231";
  7153. this.label231.Size = new System.Drawing.Size(31, 15);
  7154. this.label231.TabIndex = 16;
  7155. this.label231.Text = "---";
  7156. //
  7157. // label232
  7158. //
  7159. this.label232.AutoSize = true;
  7160. this.label232.BackColor = System.Drawing.Color.Transparent;
  7161. this.label232.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7162. this.label232.Location = new System.Drawing.Point(3, 92);
  7163. this.label232.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7164. this.label232.Name = "label232";
  7165. this.label232.Size = new System.Drawing.Size(82, 15);
  7166. this.label232.TabIndex = 15;
  7167. this.label232.Text = "工作模式:";
  7168. //
  7169. // label233
  7170. //
  7171. this.label233.AutoSize = true;
  7172. this.label233.BackColor = System.Drawing.Color.Transparent;
  7173. this.label233.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7174. this.label233.ForeColor = System.Drawing.Color.Blue;
  7175. this.label233.Location = new System.Drawing.Point(97, 190);
  7176. this.label233.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7177. this.label233.Name = "label233";
  7178. this.label233.Size = new System.Drawing.Size(31, 15);
  7179. this.label233.TabIndex = 14;
  7180. this.label233.Text = "---";
  7181. //
  7182. // label234
  7183. //
  7184. this.label234.AutoSize = true;
  7185. this.label234.BackColor = System.Drawing.Color.Transparent;
  7186. this.label234.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7187. this.label234.ForeColor = System.Drawing.Color.Blue;
  7188. this.label234.Location = new System.Drawing.Point(96, 115);
  7189. this.label234.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7190. this.label234.Name = "label234";
  7191. this.label234.Size = new System.Drawing.Size(31, 15);
  7192. this.label234.TabIndex = 10;
  7193. this.label234.Text = "---";
  7194. //
  7195. // label235
  7196. //
  7197. this.label235.AutoSize = true;
  7198. this.label235.BackColor = System.Drawing.Color.Transparent;
  7199. this.label235.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7200. this.label235.Location = new System.Drawing.Point(3, 115);
  7201. this.label235.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7202. this.label235.Name = "label235";
  7203. this.label235.Size = new System.Drawing.Size(82, 15);
  7204. this.label235.TabIndex = 6;
  7205. this.label235.Text = "工作状态:";
  7206. //
  7207. // label236
  7208. //
  7209. this.label236.AutoSize = true;
  7210. this.label236.BackColor = System.Drawing.Color.Transparent;
  7211. this.label236.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7212. this.label236.Location = new System.Drawing.Point(59, 32);
  7213. this.label236.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7214. this.label236.Name = "label236";
  7215. this.label236.Size = new System.Drawing.Size(53, 20);
  7216. this.label236.TabIndex = 0;
  7217. this.label236.Text = "RGV7";
  7218. //
  7219. // pictureBox23
  7220. //
  7221. this.pictureBox23.BackColor = System.Drawing.Color.Transparent;
  7222. this.pictureBox23.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox23.Image")));
  7223. this.pictureBox23.Location = new System.Drawing.Point(88, -2);
  7224. this.pictureBox23.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7225. this.pictureBox23.Name = "pictureBox23";
  7226. this.pictureBox23.Size = new System.Drawing.Size(35, 32);
  7227. this.pictureBox23.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7228. this.pictureBox23.TabIndex = 65;
  7229. this.pictureBox23.TabStop = false;
  7230. this.pictureBox23.Tag = "1";
  7231. //
  7232. // pictureBox24
  7233. //
  7234. this.pictureBox24.BackColor = System.Drawing.Color.Transparent;
  7235. this.pictureBox24.Location = new System.Drawing.Point(87, -2);
  7236. this.pictureBox24.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7237. this.pictureBox24.Name = "pictureBox24";
  7238. this.pictureBox24.Size = new System.Drawing.Size(35, 32);
  7239. this.pictureBox24.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7240. this.pictureBox24.TabIndex = 5;
  7241. this.pictureBox24.TabStop = false;
  7242. //
  7243. // myPanel10
  7244. //
  7245. this.myPanel10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel10.BackgroundImage")));
  7246. this.myPanel10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  7247. this.myPanel10.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  7248. this.myPanel10.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  7249. this.myPanel10.Controls.Add(this.label205);
  7250. this.myPanel10.Controls.Add(this.label206);
  7251. this.myPanel10.Controls.Add(this.label207);
  7252. this.myPanel10.Controls.Add(this.label208);
  7253. this.myPanel10.Controls.Add(this.label209);
  7254. this.myPanel10.Controls.Add(this.label210);
  7255. this.myPanel10.Controls.Add(this.label211);
  7256. this.myPanel10.Controls.Add(this.label212);
  7257. this.myPanel10.Controls.Add(this.label213);
  7258. this.myPanel10.Controls.Add(this.label214);
  7259. this.myPanel10.Controls.Add(this.label215);
  7260. this.myPanel10.Controls.Add(this.label216);
  7261. this.myPanel10.Controls.Add(this.label217);
  7262. this.myPanel10.Controls.Add(this.label218);
  7263. this.myPanel10.Controls.Add(this.label219);
  7264. this.myPanel10.Controls.Add(this.label220);
  7265. this.myPanel10.Controls.Add(this.pictureBox21);
  7266. this.myPanel10.Controls.Add(this.pictureBox22);
  7267. this.myPanel10.Location = new System.Drawing.Point(3315, 2);
  7268. this.myPanel10.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7269. this.myPanel10.Name = "myPanel10";
  7270. this.myPanel10.Size = new System.Drawing.Size(217, 312);
  7271. this.myPanel10.TabIndex = 134;
  7272. //
  7273. // label205
  7274. //
  7275. this.label205.AutoSize = true;
  7276. this.label205.BackColor = System.Drawing.Color.Transparent;
  7277. this.label205.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7278. this.label205.Location = new System.Drawing.Point(4, 241);
  7279. this.label205.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7280. this.label205.Name = "label205";
  7281. this.label205.Size = new System.Drawing.Size(82, 15);
  7282. this.label205.TabIndex = 106;
  7283. this.label205.Text = "光电状态:";
  7284. //
  7285. // label206
  7286. //
  7287. this.label206.AutoSize = true;
  7288. this.label206.BackColor = System.Drawing.Color.Transparent;
  7289. this.label206.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7290. this.label206.Location = new System.Drawing.Point(3, 189);
  7291. this.label206.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7292. this.label206.Name = "label206";
  7293. this.label206.Size = new System.Drawing.Size(82, 15);
  7294. this.label206.TabIndex = 105;
  7295. this.label206.Text = "起始地址:";
  7296. //
  7297. // label207
  7298. //
  7299. this.label207.AutoSize = true;
  7300. this.label207.BackColor = System.Drawing.Color.Transparent;
  7301. this.label207.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7302. this.label207.ForeColor = System.Drawing.SystemColors.ControlText;
  7303. this.label207.Location = new System.Drawing.Point(3, 214);
  7304. this.label207.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7305. this.label207.Name = "label207";
  7306. this.label207.Size = new System.Drawing.Size(82, 15);
  7307. this.label207.TabIndex = 104;
  7308. this.label207.Text = "目标地址:";
  7309. //
  7310. // label208
  7311. //
  7312. this.label208.AutoSize = true;
  7313. this.label208.BackColor = System.Drawing.Color.Transparent;
  7314. this.label208.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7315. this.label208.ForeColor = System.Drawing.Color.Blue;
  7316. this.label208.Location = new System.Drawing.Point(96, 166);
  7317. this.label208.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7318. this.label208.Name = "label208";
  7319. this.label208.Size = new System.Drawing.Size(31, 15);
  7320. this.label208.TabIndex = 101;
  7321. this.label208.Text = "---";
  7322. //
  7323. // label209
  7324. //
  7325. this.label209.AutoSize = true;
  7326. this.label209.BackColor = System.Drawing.Color.Transparent;
  7327. this.label209.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7328. this.label209.Location = new System.Drawing.Point(3, 166);
  7329. this.label209.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7330. this.label209.Name = "label209";
  7331. this.label209.Size = new System.Drawing.Size(82, 15);
  7332. this.label209.TabIndex = 100;
  7333. this.label209.Text = "作业类型:";
  7334. //
  7335. // label210
  7336. //
  7337. this.label210.BackColor = System.Drawing.Color.Transparent;
  7338. this.label210.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7339. this.label210.ForeColor = System.Drawing.Color.Red;
  7340. this.label210.Location = new System.Drawing.Point(7, 58);
  7341. this.label210.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7342. this.label210.Name = "label210";
  7343. this.label210.Size = new System.Drawing.Size(201, 30);
  7344. this.label210.TabIndex = 92;
  7345. //
  7346. // label211
  7347. //
  7348. this.label211.AutoSize = true;
  7349. this.label211.BackColor = System.Drawing.Color.Transparent;
  7350. this.label211.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7351. this.label211.ForeColor = System.Drawing.Color.Blue;
  7352. this.label211.Location = new System.Drawing.Point(99, 242);
  7353. this.label211.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7354. this.label211.Name = "label211";
  7355. this.label211.Size = new System.Drawing.Size(31, 15);
  7356. this.label211.TabIndex = 72;
  7357. this.label211.Text = "---";
  7358. //
  7359. // label212
  7360. //
  7361. this.label212.AutoSize = true;
  7362. this.label212.BackColor = System.Drawing.Color.Transparent;
  7363. this.label212.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7364. this.label212.ForeColor = System.Drawing.Color.Blue;
  7365. this.label212.Location = new System.Drawing.Point(96, 92);
  7366. this.label212.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7367. this.label212.Name = "label212";
  7368. this.label212.Size = new System.Drawing.Size(31, 15);
  7369. this.label212.TabIndex = 12;
  7370. this.label212.Text = "---";
  7371. //
  7372. // label213
  7373. //
  7374. this.label213.AutoSize = true;
  7375. this.label213.BackColor = System.Drawing.Color.Transparent;
  7376. this.label213.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7377. this.label213.ForeColor = System.Drawing.Color.Blue;
  7378. this.label213.Location = new System.Drawing.Point(96, 142);
  7379. this.label213.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7380. this.label213.Name = "label213";
  7381. this.label213.Size = new System.Drawing.Size(31, 15);
  7382. this.label213.TabIndex = 64;
  7383. this.label213.Text = "---";
  7384. //
  7385. // label214
  7386. //
  7387. this.label214.AutoSize = true;
  7388. this.label214.BackColor = System.Drawing.Color.Transparent;
  7389. this.label214.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7390. this.label214.Location = new System.Drawing.Point(3, 142);
  7391. this.label214.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7392. this.label214.Name = "label214";
  7393. this.label214.Size = new System.Drawing.Size(82, 15);
  7394. this.label214.TabIndex = 63;
  7395. this.label214.Text = "工作指令:";
  7396. //
  7397. // label215
  7398. //
  7399. this.label215.AutoSize = true;
  7400. this.label215.BackColor = System.Drawing.Color.Transparent;
  7401. this.label215.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7402. this.label215.ForeColor = System.Drawing.Color.Blue;
  7403. this.label215.Location = new System.Drawing.Point(97, 215);
  7404. this.label215.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7405. this.label215.Name = "label215";
  7406. this.label215.Size = new System.Drawing.Size(31, 15);
  7407. this.label215.TabIndex = 16;
  7408. this.label215.Text = "---";
  7409. //
  7410. // label216
  7411. //
  7412. this.label216.AutoSize = true;
  7413. this.label216.BackColor = System.Drawing.Color.Transparent;
  7414. this.label216.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7415. this.label216.Location = new System.Drawing.Point(3, 92);
  7416. this.label216.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7417. this.label216.Name = "label216";
  7418. this.label216.Size = new System.Drawing.Size(82, 15);
  7419. this.label216.TabIndex = 15;
  7420. this.label216.Text = "工作模式:";
  7421. //
  7422. // label217
  7423. //
  7424. this.label217.AutoSize = true;
  7425. this.label217.BackColor = System.Drawing.Color.Transparent;
  7426. this.label217.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7427. this.label217.ForeColor = System.Drawing.Color.Blue;
  7428. this.label217.Location = new System.Drawing.Point(97, 190);
  7429. this.label217.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7430. this.label217.Name = "label217";
  7431. this.label217.Size = new System.Drawing.Size(31, 15);
  7432. this.label217.TabIndex = 14;
  7433. this.label217.Text = "---";
  7434. //
  7435. // label218
  7436. //
  7437. this.label218.AutoSize = true;
  7438. this.label218.BackColor = System.Drawing.Color.Transparent;
  7439. this.label218.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7440. this.label218.ForeColor = System.Drawing.Color.Blue;
  7441. this.label218.Location = new System.Drawing.Point(96, 115);
  7442. this.label218.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7443. this.label218.Name = "label218";
  7444. this.label218.Size = new System.Drawing.Size(31, 15);
  7445. this.label218.TabIndex = 10;
  7446. this.label218.Text = "---";
  7447. //
  7448. // label219
  7449. //
  7450. this.label219.AutoSize = true;
  7451. this.label219.BackColor = System.Drawing.Color.Transparent;
  7452. this.label219.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7453. this.label219.Location = new System.Drawing.Point(3, 115);
  7454. this.label219.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7455. this.label219.Name = "label219";
  7456. this.label219.Size = new System.Drawing.Size(82, 15);
  7457. this.label219.TabIndex = 6;
  7458. this.label219.Text = "工作状态:";
  7459. //
  7460. // label220
  7461. //
  7462. this.label220.AutoSize = true;
  7463. this.label220.BackColor = System.Drawing.Color.Transparent;
  7464. this.label220.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7465. this.label220.Location = new System.Drawing.Point(59, 32);
  7466. this.label220.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7467. this.label220.Name = "label220";
  7468. this.label220.Size = new System.Drawing.Size(53, 20);
  7469. this.label220.TabIndex = 0;
  7470. this.label220.Text = "RGV8";
  7471. //
  7472. // pictureBox21
  7473. //
  7474. this.pictureBox21.BackColor = System.Drawing.Color.Transparent;
  7475. this.pictureBox21.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox21.Image")));
  7476. this.pictureBox21.Location = new System.Drawing.Point(88, -2);
  7477. this.pictureBox21.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7478. this.pictureBox21.Name = "pictureBox21";
  7479. this.pictureBox21.Size = new System.Drawing.Size(35, 32);
  7480. this.pictureBox21.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7481. this.pictureBox21.TabIndex = 65;
  7482. this.pictureBox21.TabStop = false;
  7483. this.pictureBox21.Tag = "1";
  7484. //
  7485. // pictureBox22
  7486. //
  7487. this.pictureBox22.BackColor = System.Drawing.Color.Transparent;
  7488. this.pictureBox22.Location = new System.Drawing.Point(87, -2);
  7489. this.pictureBox22.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7490. this.pictureBox22.Name = "pictureBox22";
  7491. this.pictureBox22.Size = new System.Drawing.Size(35, 32);
  7492. this.pictureBox22.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7493. this.pictureBox22.TabIndex = 5;
  7494. this.pictureBox22.TabStop = false;
  7495. //
  7496. // myPanel9
  7497. //
  7498. this.myPanel9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel9.BackgroundImage")));
  7499. this.myPanel9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  7500. this.myPanel9.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  7501. this.myPanel9.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  7502. this.myPanel9.Controls.Add(this.label188);
  7503. this.myPanel9.Controls.Add(this.label190);
  7504. this.myPanel9.Controls.Add(this.label191);
  7505. this.myPanel9.Controls.Add(this.label192);
  7506. this.myPanel9.Controls.Add(this.label193);
  7507. this.myPanel9.Controls.Add(this.label194);
  7508. this.myPanel9.Controls.Add(this.label195);
  7509. this.myPanel9.Controls.Add(this.label196);
  7510. this.myPanel9.Controls.Add(this.label197);
  7511. this.myPanel9.Controls.Add(this.label198);
  7512. this.myPanel9.Controls.Add(this.label199);
  7513. this.myPanel9.Controls.Add(this.label200);
  7514. this.myPanel9.Controls.Add(this.label201);
  7515. this.myPanel9.Controls.Add(this.label202);
  7516. this.myPanel9.Controls.Add(this.label203);
  7517. this.myPanel9.Controls.Add(this.label204);
  7518. this.myPanel9.Controls.Add(this.pictureBox19);
  7519. this.myPanel9.Controls.Add(this.pictureBox20);
  7520. this.myPanel9.Location = new System.Drawing.Point(2879, 1);
  7521. this.myPanel9.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7522. this.myPanel9.Name = "myPanel9";
  7523. this.myPanel9.Size = new System.Drawing.Size(217, 312);
  7524. this.myPanel9.TabIndex = 133;
  7525. //
  7526. // label188
  7527. //
  7528. this.label188.AutoSize = true;
  7529. this.label188.BackColor = System.Drawing.Color.Transparent;
  7530. this.label188.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7531. this.label188.Location = new System.Drawing.Point(4, 241);
  7532. this.label188.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7533. this.label188.Name = "label188";
  7534. this.label188.Size = new System.Drawing.Size(82, 15);
  7535. this.label188.TabIndex = 106;
  7536. this.label188.Text = "光电状态:";
  7537. //
  7538. // label190
  7539. //
  7540. this.label190.AutoSize = true;
  7541. this.label190.BackColor = System.Drawing.Color.Transparent;
  7542. this.label190.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7543. this.label190.Location = new System.Drawing.Point(3, 189);
  7544. this.label190.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7545. this.label190.Name = "label190";
  7546. this.label190.Size = new System.Drawing.Size(82, 15);
  7547. this.label190.TabIndex = 105;
  7548. this.label190.Text = "起始地址:";
  7549. //
  7550. // label191
  7551. //
  7552. this.label191.AutoSize = true;
  7553. this.label191.BackColor = System.Drawing.Color.Transparent;
  7554. this.label191.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7555. this.label191.ForeColor = System.Drawing.SystemColors.ControlText;
  7556. this.label191.Location = new System.Drawing.Point(3, 214);
  7557. this.label191.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7558. this.label191.Name = "label191";
  7559. this.label191.Size = new System.Drawing.Size(82, 15);
  7560. this.label191.TabIndex = 104;
  7561. this.label191.Text = "目标地址:";
  7562. //
  7563. // label192
  7564. //
  7565. this.label192.AutoSize = true;
  7566. this.label192.BackColor = System.Drawing.Color.Transparent;
  7567. this.label192.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7568. this.label192.ForeColor = System.Drawing.Color.Blue;
  7569. this.label192.Location = new System.Drawing.Point(96, 166);
  7570. this.label192.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7571. this.label192.Name = "label192";
  7572. this.label192.Size = new System.Drawing.Size(31, 15);
  7573. this.label192.TabIndex = 101;
  7574. this.label192.Text = "---";
  7575. //
  7576. // label193
  7577. //
  7578. this.label193.AutoSize = true;
  7579. this.label193.BackColor = System.Drawing.Color.Transparent;
  7580. this.label193.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7581. this.label193.Location = new System.Drawing.Point(3, 166);
  7582. this.label193.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7583. this.label193.Name = "label193";
  7584. this.label193.Size = new System.Drawing.Size(82, 15);
  7585. this.label193.TabIndex = 100;
  7586. this.label193.Text = "作业类型:";
  7587. //
  7588. // label194
  7589. //
  7590. this.label194.BackColor = System.Drawing.Color.Transparent;
  7591. this.label194.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7592. this.label194.ForeColor = System.Drawing.Color.Red;
  7593. this.label194.Location = new System.Drawing.Point(7, 58);
  7594. this.label194.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7595. this.label194.Name = "label194";
  7596. this.label194.Size = new System.Drawing.Size(201, 30);
  7597. this.label194.TabIndex = 92;
  7598. //
  7599. // label195
  7600. //
  7601. this.label195.AutoSize = true;
  7602. this.label195.BackColor = System.Drawing.Color.Transparent;
  7603. this.label195.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7604. this.label195.ForeColor = System.Drawing.Color.Blue;
  7605. this.label195.Location = new System.Drawing.Point(99, 242);
  7606. this.label195.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7607. this.label195.Name = "label195";
  7608. this.label195.Size = new System.Drawing.Size(31, 15);
  7609. this.label195.TabIndex = 72;
  7610. this.label195.Text = "---";
  7611. //
  7612. // label196
  7613. //
  7614. this.label196.AutoSize = true;
  7615. this.label196.BackColor = System.Drawing.Color.Transparent;
  7616. this.label196.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7617. this.label196.ForeColor = System.Drawing.Color.Blue;
  7618. this.label196.Location = new System.Drawing.Point(96, 92);
  7619. this.label196.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7620. this.label196.Name = "label196";
  7621. this.label196.Size = new System.Drawing.Size(31, 15);
  7622. this.label196.TabIndex = 12;
  7623. this.label196.Text = "---";
  7624. //
  7625. // label197
  7626. //
  7627. this.label197.AutoSize = true;
  7628. this.label197.BackColor = System.Drawing.Color.Transparent;
  7629. this.label197.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7630. this.label197.ForeColor = System.Drawing.Color.Blue;
  7631. this.label197.Location = new System.Drawing.Point(96, 142);
  7632. this.label197.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7633. this.label197.Name = "label197";
  7634. this.label197.Size = new System.Drawing.Size(31, 15);
  7635. this.label197.TabIndex = 64;
  7636. this.label197.Text = "---";
  7637. //
  7638. // label198
  7639. //
  7640. this.label198.AutoSize = true;
  7641. this.label198.BackColor = System.Drawing.Color.Transparent;
  7642. this.label198.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7643. this.label198.Location = new System.Drawing.Point(3, 142);
  7644. this.label198.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7645. this.label198.Name = "label198";
  7646. this.label198.Size = new System.Drawing.Size(82, 15);
  7647. this.label198.TabIndex = 63;
  7648. this.label198.Text = "工作指令:";
  7649. //
  7650. // label199
  7651. //
  7652. this.label199.AutoSize = true;
  7653. this.label199.BackColor = System.Drawing.Color.Transparent;
  7654. this.label199.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7655. this.label199.ForeColor = System.Drawing.Color.Blue;
  7656. this.label199.Location = new System.Drawing.Point(97, 215);
  7657. this.label199.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7658. this.label199.Name = "label199";
  7659. this.label199.Size = new System.Drawing.Size(31, 15);
  7660. this.label199.TabIndex = 16;
  7661. this.label199.Text = "---";
  7662. //
  7663. // label200
  7664. //
  7665. this.label200.AutoSize = true;
  7666. this.label200.BackColor = System.Drawing.Color.Transparent;
  7667. this.label200.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7668. this.label200.Location = new System.Drawing.Point(3, 92);
  7669. this.label200.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7670. this.label200.Name = "label200";
  7671. this.label200.Size = new System.Drawing.Size(82, 15);
  7672. this.label200.TabIndex = 15;
  7673. this.label200.Text = "工作模式:";
  7674. //
  7675. // label201
  7676. //
  7677. this.label201.AutoSize = true;
  7678. this.label201.BackColor = System.Drawing.Color.Transparent;
  7679. this.label201.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7680. this.label201.ForeColor = System.Drawing.Color.Blue;
  7681. this.label201.Location = new System.Drawing.Point(97, 190);
  7682. this.label201.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7683. this.label201.Name = "label201";
  7684. this.label201.Size = new System.Drawing.Size(31, 15);
  7685. this.label201.TabIndex = 14;
  7686. this.label201.Text = "---";
  7687. //
  7688. // label202
  7689. //
  7690. this.label202.AutoSize = true;
  7691. this.label202.BackColor = System.Drawing.Color.Transparent;
  7692. this.label202.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7693. this.label202.ForeColor = System.Drawing.Color.Blue;
  7694. this.label202.Location = new System.Drawing.Point(96, 115);
  7695. this.label202.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7696. this.label202.Name = "label202";
  7697. this.label202.Size = new System.Drawing.Size(31, 15);
  7698. this.label202.TabIndex = 10;
  7699. this.label202.Text = "---";
  7700. //
  7701. // label203
  7702. //
  7703. this.label203.AutoSize = true;
  7704. this.label203.BackColor = System.Drawing.Color.Transparent;
  7705. this.label203.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7706. this.label203.Location = new System.Drawing.Point(3, 115);
  7707. this.label203.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7708. this.label203.Name = "label203";
  7709. this.label203.Size = new System.Drawing.Size(82, 15);
  7710. this.label203.TabIndex = 6;
  7711. this.label203.Text = "工作状态:";
  7712. //
  7713. // label204
  7714. //
  7715. this.label204.AutoSize = true;
  7716. this.label204.BackColor = System.Drawing.Color.Transparent;
  7717. this.label204.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7718. this.label204.Location = new System.Drawing.Point(59, 32);
  7719. this.label204.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7720. this.label204.Name = "label204";
  7721. this.label204.Size = new System.Drawing.Size(53, 20);
  7722. this.label204.TabIndex = 0;
  7723. this.label204.Text = "RGV6";
  7724. //
  7725. // pictureBox19
  7726. //
  7727. this.pictureBox19.BackColor = System.Drawing.Color.Transparent;
  7728. this.pictureBox19.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox19.Image")));
  7729. this.pictureBox19.Location = new System.Drawing.Point(88, -2);
  7730. this.pictureBox19.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7731. this.pictureBox19.Name = "pictureBox19";
  7732. this.pictureBox19.Size = new System.Drawing.Size(35, 32);
  7733. this.pictureBox19.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7734. this.pictureBox19.TabIndex = 65;
  7735. this.pictureBox19.TabStop = false;
  7736. this.pictureBox19.Tag = "1";
  7737. //
  7738. // pictureBox20
  7739. //
  7740. this.pictureBox20.BackColor = System.Drawing.Color.Transparent;
  7741. this.pictureBox20.Location = new System.Drawing.Point(87, -2);
  7742. this.pictureBox20.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7743. this.pictureBox20.Name = "pictureBox20";
  7744. this.pictureBox20.Size = new System.Drawing.Size(35, 32);
  7745. this.pictureBox20.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7746. this.pictureBox20.TabIndex = 5;
  7747. this.pictureBox20.TabStop = false;
  7748. //
  7749. // myPanel8
  7750. //
  7751. this.myPanel8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel8.BackgroundImage")));
  7752. this.myPanel8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  7753. this.myPanel8.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  7754. this.myPanel8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  7755. this.myPanel8.Controls.Add(this.label169);
  7756. this.myPanel8.Controls.Add(this.label170);
  7757. this.myPanel8.Controls.Add(this.label171);
  7758. this.myPanel8.Controls.Add(this.label172);
  7759. this.myPanel8.Controls.Add(this.label174);
  7760. this.myPanel8.Controls.Add(this.label175);
  7761. this.myPanel8.Controls.Add(this.label176);
  7762. this.myPanel8.Controls.Add(this.label177);
  7763. this.myPanel8.Controls.Add(this.label178);
  7764. this.myPanel8.Controls.Add(this.label179);
  7765. this.myPanel8.Controls.Add(this.label180);
  7766. this.myPanel8.Controls.Add(this.label182);
  7767. this.myPanel8.Controls.Add(this.label184);
  7768. this.myPanel8.Controls.Add(this.label185);
  7769. this.myPanel8.Controls.Add(this.label186);
  7770. this.myPanel8.Controls.Add(this.label187);
  7771. this.myPanel8.Controls.Add(this.pictureBox16);
  7772. this.myPanel8.Controls.Add(this.pictureBox18);
  7773. this.myPanel8.Location = new System.Drawing.Point(2660, 2);
  7774. this.myPanel8.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7775. this.myPanel8.Name = "myPanel8";
  7776. this.myPanel8.Size = new System.Drawing.Size(217, 312);
  7777. this.myPanel8.TabIndex = 132;
  7778. //
  7779. // label169
  7780. //
  7781. this.label169.AutoSize = true;
  7782. this.label169.BackColor = System.Drawing.Color.Transparent;
  7783. this.label169.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7784. this.label169.Location = new System.Drawing.Point(4, 241);
  7785. this.label169.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7786. this.label169.Name = "label169";
  7787. this.label169.Size = new System.Drawing.Size(82, 15);
  7788. this.label169.TabIndex = 106;
  7789. this.label169.Text = "光电状态:";
  7790. //
  7791. // label170
  7792. //
  7793. this.label170.AutoSize = true;
  7794. this.label170.BackColor = System.Drawing.Color.Transparent;
  7795. this.label170.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7796. this.label170.Location = new System.Drawing.Point(3, 189);
  7797. this.label170.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7798. this.label170.Name = "label170";
  7799. this.label170.Size = new System.Drawing.Size(82, 15);
  7800. this.label170.TabIndex = 105;
  7801. this.label170.Text = "起始地址:";
  7802. //
  7803. // label171
  7804. //
  7805. this.label171.AutoSize = true;
  7806. this.label171.BackColor = System.Drawing.Color.Transparent;
  7807. this.label171.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7808. this.label171.ForeColor = System.Drawing.SystemColors.ControlText;
  7809. this.label171.Location = new System.Drawing.Point(3, 214);
  7810. this.label171.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7811. this.label171.Name = "label171";
  7812. this.label171.Size = new System.Drawing.Size(82, 15);
  7813. this.label171.TabIndex = 104;
  7814. this.label171.Text = "目标地址:";
  7815. //
  7816. // label172
  7817. //
  7818. this.label172.AutoSize = true;
  7819. this.label172.BackColor = System.Drawing.Color.Transparent;
  7820. this.label172.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7821. this.label172.ForeColor = System.Drawing.Color.Blue;
  7822. this.label172.Location = new System.Drawing.Point(96, 166);
  7823. this.label172.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7824. this.label172.Name = "label172";
  7825. this.label172.Size = new System.Drawing.Size(31, 15);
  7826. this.label172.TabIndex = 101;
  7827. this.label172.Text = "---";
  7828. //
  7829. // label174
  7830. //
  7831. this.label174.AutoSize = true;
  7832. this.label174.BackColor = System.Drawing.Color.Transparent;
  7833. this.label174.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7834. this.label174.Location = new System.Drawing.Point(3, 166);
  7835. this.label174.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7836. this.label174.Name = "label174";
  7837. this.label174.Size = new System.Drawing.Size(82, 15);
  7838. this.label174.TabIndex = 100;
  7839. this.label174.Text = "作业类型:";
  7840. //
  7841. // label175
  7842. //
  7843. this.label175.BackColor = System.Drawing.Color.Transparent;
  7844. this.label175.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7845. this.label175.ForeColor = System.Drawing.Color.Red;
  7846. this.label175.Location = new System.Drawing.Point(7, 58);
  7847. this.label175.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7848. this.label175.Name = "label175";
  7849. this.label175.Size = new System.Drawing.Size(201, 30);
  7850. this.label175.TabIndex = 92;
  7851. //
  7852. // label176
  7853. //
  7854. this.label176.AutoSize = true;
  7855. this.label176.BackColor = System.Drawing.Color.Transparent;
  7856. this.label176.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7857. this.label176.ForeColor = System.Drawing.Color.Blue;
  7858. this.label176.Location = new System.Drawing.Point(99, 242);
  7859. this.label176.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7860. this.label176.Name = "label176";
  7861. this.label176.Size = new System.Drawing.Size(31, 15);
  7862. this.label176.TabIndex = 72;
  7863. this.label176.Text = "---";
  7864. //
  7865. // label177
  7866. //
  7867. this.label177.AutoSize = true;
  7868. this.label177.BackColor = System.Drawing.Color.Transparent;
  7869. this.label177.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7870. this.label177.ForeColor = System.Drawing.Color.Blue;
  7871. this.label177.Location = new System.Drawing.Point(96, 92);
  7872. this.label177.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7873. this.label177.Name = "label177";
  7874. this.label177.Size = new System.Drawing.Size(31, 15);
  7875. this.label177.TabIndex = 12;
  7876. this.label177.Text = "---";
  7877. //
  7878. // label178
  7879. //
  7880. this.label178.AutoSize = true;
  7881. this.label178.BackColor = System.Drawing.Color.Transparent;
  7882. this.label178.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7883. this.label178.ForeColor = System.Drawing.Color.Blue;
  7884. this.label178.Location = new System.Drawing.Point(96, 142);
  7885. this.label178.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7886. this.label178.Name = "label178";
  7887. this.label178.Size = new System.Drawing.Size(31, 15);
  7888. this.label178.TabIndex = 64;
  7889. this.label178.Text = "---";
  7890. //
  7891. // label179
  7892. //
  7893. this.label179.AutoSize = true;
  7894. this.label179.BackColor = System.Drawing.Color.Transparent;
  7895. this.label179.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7896. this.label179.Location = new System.Drawing.Point(3, 142);
  7897. this.label179.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7898. this.label179.Name = "label179";
  7899. this.label179.Size = new System.Drawing.Size(82, 15);
  7900. this.label179.TabIndex = 63;
  7901. this.label179.Text = "工作指令:";
  7902. //
  7903. // label180
  7904. //
  7905. this.label180.AutoSize = true;
  7906. this.label180.BackColor = System.Drawing.Color.Transparent;
  7907. this.label180.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7908. this.label180.ForeColor = System.Drawing.Color.Blue;
  7909. this.label180.Location = new System.Drawing.Point(97, 215);
  7910. this.label180.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7911. this.label180.Name = "label180";
  7912. this.label180.Size = new System.Drawing.Size(31, 15);
  7913. this.label180.TabIndex = 16;
  7914. this.label180.Text = "---";
  7915. //
  7916. // label182
  7917. //
  7918. this.label182.AutoSize = true;
  7919. this.label182.BackColor = System.Drawing.Color.Transparent;
  7920. this.label182.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7921. this.label182.Location = new System.Drawing.Point(3, 92);
  7922. this.label182.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7923. this.label182.Name = "label182";
  7924. this.label182.Size = new System.Drawing.Size(82, 15);
  7925. this.label182.TabIndex = 15;
  7926. this.label182.Text = "工作模式:";
  7927. //
  7928. // label184
  7929. //
  7930. this.label184.AutoSize = true;
  7931. this.label184.BackColor = System.Drawing.Color.Transparent;
  7932. this.label184.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7933. this.label184.ForeColor = System.Drawing.Color.Blue;
  7934. this.label184.Location = new System.Drawing.Point(97, 190);
  7935. this.label184.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7936. this.label184.Name = "label184";
  7937. this.label184.Size = new System.Drawing.Size(31, 15);
  7938. this.label184.TabIndex = 14;
  7939. this.label184.Text = "---";
  7940. //
  7941. // label185
  7942. //
  7943. this.label185.AutoSize = true;
  7944. this.label185.BackColor = System.Drawing.Color.Transparent;
  7945. this.label185.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7946. this.label185.ForeColor = System.Drawing.Color.Blue;
  7947. this.label185.Location = new System.Drawing.Point(96, 115);
  7948. this.label185.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7949. this.label185.Name = "label185";
  7950. this.label185.Size = new System.Drawing.Size(31, 15);
  7951. this.label185.TabIndex = 10;
  7952. this.label185.Text = "---";
  7953. //
  7954. // label186
  7955. //
  7956. this.label186.AutoSize = true;
  7957. this.label186.BackColor = System.Drawing.Color.Transparent;
  7958. this.label186.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7959. this.label186.Location = new System.Drawing.Point(3, 115);
  7960. this.label186.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7961. this.label186.Name = "label186";
  7962. this.label186.Size = new System.Drawing.Size(82, 15);
  7963. this.label186.TabIndex = 6;
  7964. this.label186.Text = "工作状态:";
  7965. //
  7966. // label187
  7967. //
  7968. this.label187.AutoSize = true;
  7969. this.label187.BackColor = System.Drawing.Color.Transparent;
  7970. this.label187.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7971. this.label187.Location = new System.Drawing.Point(59, 32);
  7972. this.label187.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7973. this.label187.Name = "label187";
  7974. this.label187.Size = new System.Drawing.Size(53, 20);
  7975. this.label187.TabIndex = 0;
  7976. this.label187.Text = "RGV5";
  7977. //
  7978. // pictureBox16
  7979. //
  7980. this.pictureBox16.BackColor = System.Drawing.Color.Transparent;
  7981. this.pictureBox16.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox16.Image")));
  7982. this.pictureBox16.Location = new System.Drawing.Point(88, -2);
  7983. this.pictureBox16.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7984. this.pictureBox16.Name = "pictureBox16";
  7985. this.pictureBox16.Size = new System.Drawing.Size(35, 32);
  7986. this.pictureBox16.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7987. this.pictureBox16.TabIndex = 65;
  7988. this.pictureBox16.TabStop = false;
  7989. this.pictureBox16.Tag = "1";
  7990. //
  7991. // pictureBox18
  7992. //
  7993. this.pictureBox18.BackColor = System.Drawing.Color.Transparent;
  7994. this.pictureBox18.Location = new System.Drawing.Point(87, -2);
  7995. this.pictureBox18.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7996. this.pictureBox18.Name = "pictureBox18";
  7997. this.pictureBox18.Size = new System.Drawing.Size(35, 32);
  7998. this.pictureBox18.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7999. this.pictureBox18.TabIndex = 5;
  8000. this.pictureBox18.TabStop = false;
  8001. //
  8002. // myPanel7
  8003. //
  8004. this.myPanel7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel7.BackgroundImage")));
  8005. this.myPanel7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  8006. this.myPanel7.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  8007. this.myPanel7.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  8008. this.myPanel7.Controls.Add(this.lblInStatus8);
  8009. this.myPanel7.Controls.Add(this.lblOutStatus8);
  8010. this.myPanel7.Controls.Add(this.label149);
  8011. this.myPanel7.Controls.Add(this.ddjPosTo8);
  8012. this.myPanel7.Controls.Add(this.ddjPosFrom8);
  8013. this.myPanel7.Controls.Add(this.label152);
  8014. this.myPanel7.Controls.Add(this.label153);
  8015. this.myPanel7.Controls.Add(this.ddjMode8);
  8016. this.myPanel7.Controls.Add(this.ddjOrdId8);
  8017. this.myPanel7.Controls.Add(this.label156);
  8018. this.myPanel7.Controls.Add(this.ddjOptType8);
  8019. this.myPanel7.Controls.Add(this.label158);
  8020. this.myPanel7.Controls.Add(this.ddjTotal_KM8);
  8021. this.myPanel7.Controls.Add(this.label160);
  8022. this.myPanel7.Controls.Add(this.ddjWorkTime8);
  8023. this.myPanel7.Controls.Add(this.label162);
  8024. this.myPanel7.Controls.Add(this.ddjStatus8);
  8025. this.myPanel7.Controls.Add(this.ddjCurrPos8);
  8026. this.myPanel7.Controls.Add(this.label165);
  8027. this.myPanel7.Controls.Add(this.label166);
  8028. this.myPanel7.Controls.Add(this.label167);
  8029. this.myPanel7.Controls.Add(this.lblsrm08);
  8030. this.myPanel7.Controls.Add(this.G8);
  8031. this.myPanel7.Controls.Add(this.pictureBox15);
  8032. this.myPanel7.Location = new System.Drawing.Point(1563, 4);
  8033. this.myPanel7.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8034. this.myPanel7.Name = "myPanel7";
  8035. this.myPanel7.Size = new System.Drawing.Size(217, 312);
  8036. this.myPanel7.TabIndex = 131;
  8037. //
  8038. // lblInStatus8
  8039. //
  8040. this.lblInStatus8.BackColor = System.Drawing.Color.DarkGray;
  8041. this.lblInStatus8.Location = new System.Drawing.Point(7, 2);
  8042. this.lblInStatus8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8043. this.lblInStatus8.Name = "lblInStatus8";
  8044. this.lblInStatus8.Size = new System.Drawing.Size(37, 30);
  8045. this.lblInStatus8.TabIndex = 97;
  8046. this.lblInStatus8.Tag = "4";
  8047. this.lblInStatus8.Text = "入";
  8048. this.lblInStatus8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  8049. //
  8050. // lblOutStatus8
  8051. //
  8052. this.lblOutStatus8.BackColor = System.Drawing.Color.DarkGray;
  8053. this.lblOutStatus8.Location = new System.Drawing.Point(165, 2);
  8054. this.lblOutStatus8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8055. this.lblOutStatus8.Name = "lblOutStatus8";
  8056. this.lblOutStatus8.Size = new System.Drawing.Size(37, 30);
  8057. this.lblOutStatus8.TabIndex = 94;
  8058. this.lblOutStatus8.Text = "出";
  8059. this.lblOutStatus8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  8060. //
  8061. // label149
  8062. //
  8063. this.label149.BackColor = System.Drawing.Color.Transparent;
  8064. this.label149.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8065. this.label149.ForeColor = System.Drawing.Color.Red;
  8066. this.label149.Location = new System.Drawing.Point(7, 58);
  8067. this.label149.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8068. this.label149.Name = "label149";
  8069. this.label149.Size = new System.Drawing.Size(201, 30);
  8070. this.label149.TabIndex = 92;
  8071. //
  8072. // ddjPosTo8
  8073. //
  8074. this.ddjPosTo8.AutoSize = true;
  8075. this.ddjPosTo8.BackColor = System.Drawing.Color.Transparent;
  8076. this.ddjPosTo8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8077. this.ddjPosTo8.ForeColor = System.Drawing.Color.Blue;
  8078. this.ddjPosTo8.Location = new System.Drawing.Point(119, 292);
  8079. this.ddjPosTo8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8080. this.ddjPosTo8.Name = "ddjPosTo8";
  8081. this.ddjPosTo8.Size = new System.Drawing.Size(31, 15);
  8082. this.ddjPosTo8.TabIndex = 73;
  8083. this.ddjPosTo8.Text = "---";
  8084. //
  8085. // ddjPosFrom8
  8086. //
  8087. this.ddjPosFrom8.AutoSize = true;
  8088. this.ddjPosFrom8.BackColor = System.Drawing.Color.Transparent;
  8089. this.ddjPosFrom8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8090. this.ddjPosFrom8.ForeColor = System.Drawing.Color.Blue;
  8091. this.ddjPosFrom8.Location = new System.Drawing.Point(119, 265);
  8092. this.ddjPosFrom8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8093. this.ddjPosFrom8.Name = "ddjPosFrom8";
  8094. this.ddjPosFrom8.Size = new System.Drawing.Size(31, 15);
  8095. this.ddjPosFrom8.TabIndex = 72;
  8096. this.ddjPosFrom8.Text = "---";
  8097. //
  8098. // label152
  8099. //
  8100. this.label152.AutoSize = true;
  8101. this.label152.BackColor = System.Drawing.Color.Transparent;
  8102. this.label152.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8103. this.label152.Location = new System.Drawing.Point(4, 265);
  8104. this.label152.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8105. this.label152.Name = "label152";
  8106. this.label152.Size = new System.Drawing.Size(82, 15);
  8107. this.label152.TabIndex = 71;
  8108. this.label152.Text = "起始位置:";
  8109. //
  8110. // label153
  8111. //
  8112. this.label153.AutoSize = true;
  8113. this.label153.BackColor = System.Drawing.Color.Transparent;
  8114. this.label153.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8115. this.label153.Location = new System.Drawing.Point(4, 292);
  8116. this.label153.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8117. this.label153.Name = "label153";
  8118. this.label153.Size = new System.Drawing.Size(82, 15);
  8119. this.label153.TabIndex = 70;
  8120. this.label153.Text = "目标位置:";
  8121. //
  8122. // ddjMode8
  8123. //
  8124. this.ddjMode8.AutoSize = true;
  8125. this.ddjMode8.BackColor = System.Drawing.Color.Transparent;
  8126. this.ddjMode8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8127. this.ddjMode8.ForeColor = System.Drawing.Color.Blue;
  8128. this.ddjMode8.Location = new System.Drawing.Point(116, 92);
  8129. this.ddjMode8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8130. this.ddjMode8.Name = "ddjMode8";
  8131. this.ddjMode8.Size = new System.Drawing.Size(31, 15);
  8132. this.ddjMode8.TabIndex = 12;
  8133. this.ddjMode8.Text = "---";
  8134. //
  8135. // ddjOrdId8
  8136. //
  8137. this.ddjOrdId8.AutoSize = true;
  8138. this.ddjOrdId8.BackColor = System.Drawing.Color.Transparent;
  8139. this.ddjOrdId8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8140. this.ddjOrdId8.ForeColor = System.Drawing.Color.Blue;
  8141. this.ddjOrdId8.Location = new System.Drawing.Point(116, 142);
  8142. this.ddjOrdId8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8143. this.ddjOrdId8.Name = "ddjOrdId8";
  8144. this.ddjOrdId8.Size = new System.Drawing.Size(31, 15);
  8145. this.ddjOrdId8.TabIndex = 64;
  8146. this.ddjOrdId8.Text = "---";
  8147. //
  8148. // label156
  8149. //
  8150. this.label156.AutoSize = true;
  8151. this.label156.BackColor = System.Drawing.Color.Transparent;
  8152. this.label156.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8153. this.label156.Location = new System.Drawing.Point(3, 142);
  8154. this.label156.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8155. this.label156.Name = "label156";
  8156. this.label156.Size = new System.Drawing.Size(82, 15);
  8157. this.label156.TabIndex = 63;
  8158. this.label156.Text = "工作指令:";
  8159. //
  8160. // ddjOptType8
  8161. //
  8162. this.ddjOptType8.AutoSize = true;
  8163. this.ddjOptType8.BackColor = System.Drawing.Color.Transparent;
  8164. this.ddjOptType8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8165. this.ddjOptType8.ForeColor = System.Drawing.Color.Blue;
  8166. this.ddjOptType8.Location = new System.Drawing.Point(116, 162);
  8167. this.ddjOptType8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8168. this.ddjOptType8.Name = "ddjOptType8";
  8169. this.ddjOptType8.Size = new System.Drawing.Size(31, 15);
  8170. this.ddjOptType8.TabIndex = 62;
  8171. this.ddjOptType8.Text = "---";
  8172. //
  8173. // label158
  8174. //
  8175. this.label158.AutoSize = true;
  8176. this.label158.BackColor = System.Drawing.Color.Transparent;
  8177. this.label158.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8178. this.label158.Location = new System.Drawing.Point(3, 162);
  8179. this.label158.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8180. this.label158.Name = "label158";
  8181. this.label158.Size = new System.Drawing.Size(82, 15);
  8182. this.label158.TabIndex = 61;
  8183. this.label158.Text = "作业类型:";
  8184. //
  8185. // ddjTotal_KM8
  8186. //
  8187. this.ddjTotal_KM8.AutoSize = true;
  8188. this.ddjTotal_KM8.BackColor = System.Drawing.Color.Transparent;
  8189. this.ddjTotal_KM8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8190. this.ddjTotal_KM8.ForeColor = System.Drawing.SystemColors.ControlText;
  8191. this.ddjTotal_KM8.Location = new System.Drawing.Point(117, 238);
  8192. this.ddjTotal_KM8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8193. this.ddjTotal_KM8.Name = "ddjTotal_KM8";
  8194. this.ddjTotal_KM8.Size = new System.Drawing.Size(31, 15);
  8195. this.ddjTotal_KM8.TabIndex = 16;
  8196. this.ddjTotal_KM8.Text = "---";
  8197. //
  8198. // label160
  8199. //
  8200. this.label160.AutoSize = true;
  8201. this.label160.BackColor = System.Drawing.Color.Transparent;
  8202. this.label160.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8203. this.label160.Location = new System.Drawing.Point(3, 92);
  8204. this.label160.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8205. this.label160.Name = "label160";
  8206. this.label160.Size = new System.Drawing.Size(82, 15);
  8207. this.label160.TabIndex = 15;
  8208. this.label160.Text = "工作模式:";
  8209. //
  8210. // ddjWorkTime8
  8211. //
  8212. this.ddjWorkTime8.AutoSize = true;
  8213. this.ddjWorkTime8.BackColor = System.Drawing.Color.Transparent;
  8214. this.ddjWorkTime8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8215. this.ddjWorkTime8.ForeColor = System.Drawing.Color.Red;
  8216. this.ddjWorkTime8.Location = new System.Drawing.Point(117, 212);
  8217. this.ddjWorkTime8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8218. this.ddjWorkTime8.Name = "ddjWorkTime8";
  8219. this.ddjWorkTime8.Size = new System.Drawing.Size(31, 15);
  8220. this.ddjWorkTime8.TabIndex = 14;
  8221. this.ddjWorkTime8.Text = "---";
  8222. //
  8223. // label162
  8224. //
  8225. this.label162.AutoSize = true;
  8226. this.label162.BackColor = System.Drawing.Color.Transparent;
  8227. this.label162.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8228. this.label162.Location = new System.Drawing.Point(3, 212);
  8229. this.label162.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8230. this.label162.Name = "label162";
  8231. this.label162.Size = new System.Drawing.Size(82, 15);
  8232. this.label162.TabIndex = 13;
  8233. this.label162.Text = "运行时长:";
  8234. //
  8235. // ddjStatus8
  8236. //
  8237. this.ddjStatus8.AutoSize = true;
  8238. this.ddjStatus8.BackColor = System.Drawing.Color.Transparent;
  8239. this.ddjStatus8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8240. this.ddjStatus8.ForeColor = System.Drawing.Color.Blue;
  8241. this.ddjStatus8.Location = new System.Drawing.Point(116, 115);
  8242. this.ddjStatus8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8243. this.ddjStatus8.Name = "ddjStatus8";
  8244. this.ddjStatus8.Size = new System.Drawing.Size(31, 15);
  8245. this.ddjStatus8.TabIndex = 10;
  8246. this.ddjStatus8.Text = "---";
  8247. //
  8248. // ddjCurrPos8
  8249. //
  8250. this.ddjCurrPos8.AutoSize = true;
  8251. this.ddjCurrPos8.BackColor = System.Drawing.Color.Transparent;
  8252. this.ddjCurrPos8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8253. this.ddjCurrPos8.ForeColor = System.Drawing.Color.Blue;
  8254. this.ddjCurrPos8.Location = new System.Drawing.Point(117, 188);
  8255. this.ddjCurrPos8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8256. this.ddjCurrPos8.Name = "ddjCurrPos8";
  8257. this.ddjCurrPos8.Size = new System.Drawing.Size(31, 15);
  8258. this.ddjCurrPos8.TabIndex = 9;
  8259. this.ddjCurrPos8.Text = "---";
  8260. //
  8261. // label165
  8262. //
  8263. this.label165.AutoSize = true;
  8264. this.label165.BackColor = System.Drawing.Color.Transparent;
  8265. this.label165.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8266. this.label165.ForeColor = System.Drawing.SystemColors.ControlText;
  8267. this.label165.Location = new System.Drawing.Point(3, 238);
  8268. this.label165.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8269. this.label165.Name = "label165";
  8270. this.label165.Size = new System.Drawing.Size(83, 15);
  8271. this.label165.TabIndex = 8;
  8272. this.label165.Text = "里 程 数:";
  8273. //
  8274. // label166
  8275. //
  8276. this.label166.AutoSize = true;
  8277. this.label166.BackColor = System.Drawing.Color.Transparent;
  8278. this.label166.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8279. this.label166.Location = new System.Drawing.Point(3, 115);
  8280. this.label166.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8281. this.label166.Name = "label166";
  8282. this.label166.Size = new System.Drawing.Size(82, 15);
  8283. this.label166.TabIndex = 6;
  8284. this.label166.Text = "工作状态:";
  8285. //
  8286. // label167
  8287. //
  8288. this.label167.AutoSize = true;
  8289. this.label167.BackColor = System.Drawing.Color.Transparent;
  8290. this.label167.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8291. this.label167.Location = new System.Drawing.Point(3, 188);
  8292. this.label167.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8293. this.label167.Name = "label167";
  8294. this.label167.Size = new System.Drawing.Size(82, 15);
  8295. this.label167.TabIndex = 1;
  8296. this.label167.Text = "当前巷道:";
  8297. //
  8298. // lblsrm08
  8299. //
  8300. this.lblsrm08.AutoSize = true;
  8301. this.lblsrm08.BackColor = System.Drawing.Color.Transparent;
  8302. 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)));
  8303. this.lblsrm08.Location = new System.Drawing.Point(40, 32);
  8304. this.lblsrm08.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8305. this.lblsrm08.Name = "lblsrm08";
  8306. this.lblsrm08.Size = new System.Drawing.Size(115, 20);
  8307. this.lblsrm08.TabIndex = 0;
  8308. this.lblsrm08.Text = "8号 堆垛机";
  8309. //
  8310. // G8
  8311. //
  8312. this.G8.BackColor = System.Drawing.Color.Transparent;
  8313. this.G8.Image = global::WCS_Client.Properties.Resources.离线1;
  8314. this.G8.Location = new System.Drawing.Point(88, -2);
  8315. this.G8.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8316. this.G8.Name = "G8";
  8317. this.G8.Size = new System.Drawing.Size(35, 32);
  8318. this.G8.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8319. this.G8.TabIndex = 65;
  8320. this.G8.TabStop = false;
  8321. this.G8.Tag = "1";
  8322. //
  8323. // pictureBox15
  8324. //
  8325. this.pictureBox15.BackColor = System.Drawing.Color.Transparent;
  8326. this.pictureBox15.Location = new System.Drawing.Point(87, -2);
  8327. this.pictureBox15.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8328. this.pictureBox15.Name = "pictureBox15";
  8329. this.pictureBox15.Size = new System.Drawing.Size(35, 32);
  8330. this.pictureBox15.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8331. this.pictureBox15.TabIndex = 5;
  8332. this.pictureBox15.TabStop = false;
  8333. //
  8334. // myPanel6
  8335. //
  8336. this.myPanel6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel6.BackgroundImage")));
  8337. this.myPanel6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  8338. this.myPanel6.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  8339. this.myPanel6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  8340. this.myPanel6.Controls.Add(this.lblInStatus7);
  8341. this.myPanel6.Controls.Add(this.lblOutStatus7);
  8342. this.myPanel6.Controls.Add(this.label103);
  8343. this.myPanel6.Controls.Add(this.ddjPosTo7);
  8344. this.myPanel6.Controls.Add(this.ddjPosFrom7);
  8345. this.myPanel6.Controls.Add(this.label106);
  8346. this.myPanel6.Controls.Add(this.label107);
  8347. this.myPanel6.Controls.Add(this.ddjMode7);
  8348. this.myPanel6.Controls.Add(this.ddjOrdId7);
  8349. this.myPanel6.Controls.Add(this.label110);
  8350. this.myPanel6.Controls.Add(this.ddjOptType7);
  8351. this.myPanel6.Controls.Add(this.label112);
  8352. this.myPanel6.Controls.Add(this.ddjTotal_KM7);
  8353. this.myPanel6.Controls.Add(this.label114);
  8354. this.myPanel6.Controls.Add(this.ddjWorkTime7);
  8355. this.myPanel6.Controls.Add(this.label116);
  8356. this.myPanel6.Controls.Add(this.ddjStatus7);
  8357. this.myPanel6.Controls.Add(this.ddjCurrPos7);
  8358. this.myPanel6.Controls.Add(this.label119);
  8359. this.myPanel6.Controls.Add(this.label120);
  8360. this.myPanel6.Controls.Add(this.label121);
  8361. this.myPanel6.Controls.Add(this.lblsrm07);
  8362. this.myPanel6.Controls.Add(this.G7);
  8363. this.myPanel6.Controls.Add(this.pictureBox9);
  8364. this.myPanel6.Location = new System.Drawing.Point(1344, 4);
  8365. this.myPanel6.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8366. this.myPanel6.Name = "myPanel6";
  8367. this.myPanel6.Size = new System.Drawing.Size(217, 312);
  8368. this.myPanel6.TabIndex = 130;
  8369. //
  8370. // lblInStatus7
  8371. //
  8372. this.lblInStatus7.BackColor = System.Drawing.Color.DarkGray;
  8373. this.lblInStatus7.Location = new System.Drawing.Point(7, 2);
  8374. this.lblInStatus7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8375. this.lblInStatus7.Name = "lblInStatus7";
  8376. this.lblInStatus7.Size = new System.Drawing.Size(37, 30);
  8377. this.lblInStatus7.TabIndex = 97;
  8378. this.lblInStatus7.Tag = "4";
  8379. this.lblInStatus7.Text = "入";
  8380. this.lblInStatus7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  8381. //
  8382. // lblOutStatus7
  8383. //
  8384. this.lblOutStatus7.BackColor = System.Drawing.Color.DarkGray;
  8385. this.lblOutStatus7.Location = new System.Drawing.Point(165, 2);
  8386. this.lblOutStatus7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8387. this.lblOutStatus7.Name = "lblOutStatus7";
  8388. this.lblOutStatus7.Size = new System.Drawing.Size(37, 30);
  8389. this.lblOutStatus7.TabIndex = 94;
  8390. this.lblOutStatus7.Text = "出";
  8391. this.lblOutStatus7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  8392. //
  8393. // label103
  8394. //
  8395. this.label103.BackColor = System.Drawing.Color.Transparent;
  8396. this.label103.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8397. this.label103.ForeColor = System.Drawing.Color.Red;
  8398. this.label103.Location = new System.Drawing.Point(7, 58);
  8399. this.label103.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8400. this.label103.Name = "label103";
  8401. this.label103.Size = new System.Drawing.Size(201, 30);
  8402. this.label103.TabIndex = 92;
  8403. //
  8404. // ddjPosTo7
  8405. //
  8406. this.ddjPosTo7.AutoSize = true;
  8407. this.ddjPosTo7.BackColor = System.Drawing.Color.Transparent;
  8408. this.ddjPosTo7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8409. this.ddjPosTo7.ForeColor = System.Drawing.Color.Blue;
  8410. this.ddjPosTo7.Location = new System.Drawing.Point(119, 292);
  8411. this.ddjPosTo7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8412. this.ddjPosTo7.Name = "ddjPosTo7";
  8413. this.ddjPosTo7.Size = new System.Drawing.Size(31, 15);
  8414. this.ddjPosTo7.TabIndex = 73;
  8415. this.ddjPosTo7.Text = "---";
  8416. //
  8417. // ddjPosFrom7
  8418. //
  8419. this.ddjPosFrom7.AutoSize = true;
  8420. this.ddjPosFrom7.BackColor = System.Drawing.Color.Transparent;
  8421. this.ddjPosFrom7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8422. this.ddjPosFrom7.ForeColor = System.Drawing.Color.Blue;
  8423. this.ddjPosFrom7.Location = new System.Drawing.Point(119, 265);
  8424. this.ddjPosFrom7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8425. this.ddjPosFrom7.Name = "ddjPosFrom7";
  8426. this.ddjPosFrom7.Size = new System.Drawing.Size(31, 15);
  8427. this.ddjPosFrom7.TabIndex = 72;
  8428. this.ddjPosFrom7.Text = "---";
  8429. //
  8430. // label106
  8431. //
  8432. this.label106.AutoSize = true;
  8433. this.label106.BackColor = System.Drawing.Color.Transparent;
  8434. this.label106.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8435. this.label106.Location = new System.Drawing.Point(4, 265);
  8436. this.label106.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8437. this.label106.Name = "label106";
  8438. this.label106.Size = new System.Drawing.Size(82, 15);
  8439. this.label106.TabIndex = 71;
  8440. this.label106.Text = "起始位置:";
  8441. //
  8442. // label107
  8443. //
  8444. this.label107.AutoSize = true;
  8445. this.label107.BackColor = System.Drawing.Color.Transparent;
  8446. this.label107.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8447. this.label107.Location = new System.Drawing.Point(4, 292);
  8448. this.label107.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8449. this.label107.Name = "label107";
  8450. this.label107.Size = new System.Drawing.Size(82, 15);
  8451. this.label107.TabIndex = 70;
  8452. this.label107.Text = "目标位置:";
  8453. //
  8454. // ddjMode7
  8455. //
  8456. this.ddjMode7.AutoSize = true;
  8457. this.ddjMode7.BackColor = System.Drawing.Color.Transparent;
  8458. this.ddjMode7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8459. this.ddjMode7.ForeColor = System.Drawing.Color.Blue;
  8460. this.ddjMode7.Location = new System.Drawing.Point(116, 92);
  8461. this.ddjMode7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8462. this.ddjMode7.Name = "ddjMode7";
  8463. this.ddjMode7.Size = new System.Drawing.Size(31, 15);
  8464. this.ddjMode7.TabIndex = 12;
  8465. this.ddjMode7.Text = "---";
  8466. //
  8467. // ddjOrdId7
  8468. //
  8469. this.ddjOrdId7.AutoSize = true;
  8470. this.ddjOrdId7.BackColor = System.Drawing.Color.Transparent;
  8471. this.ddjOrdId7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8472. this.ddjOrdId7.ForeColor = System.Drawing.Color.Blue;
  8473. this.ddjOrdId7.Location = new System.Drawing.Point(116, 142);
  8474. this.ddjOrdId7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8475. this.ddjOrdId7.Name = "ddjOrdId7";
  8476. this.ddjOrdId7.Size = new System.Drawing.Size(31, 15);
  8477. this.ddjOrdId7.TabIndex = 64;
  8478. this.ddjOrdId7.Text = "---";
  8479. //
  8480. // label110
  8481. //
  8482. this.label110.AutoSize = true;
  8483. this.label110.BackColor = System.Drawing.Color.Transparent;
  8484. this.label110.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8485. this.label110.Location = new System.Drawing.Point(3, 142);
  8486. this.label110.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8487. this.label110.Name = "label110";
  8488. this.label110.Size = new System.Drawing.Size(82, 15);
  8489. this.label110.TabIndex = 63;
  8490. this.label110.Text = "工作指令:";
  8491. //
  8492. // ddjOptType7
  8493. //
  8494. this.ddjOptType7.AutoSize = true;
  8495. this.ddjOptType7.BackColor = System.Drawing.Color.Transparent;
  8496. this.ddjOptType7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8497. this.ddjOptType7.ForeColor = System.Drawing.Color.Blue;
  8498. this.ddjOptType7.Location = new System.Drawing.Point(116, 162);
  8499. this.ddjOptType7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8500. this.ddjOptType7.Name = "ddjOptType7";
  8501. this.ddjOptType7.Size = new System.Drawing.Size(31, 15);
  8502. this.ddjOptType7.TabIndex = 62;
  8503. this.ddjOptType7.Text = "---";
  8504. //
  8505. // label112
  8506. //
  8507. this.label112.AutoSize = true;
  8508. this.label112.BackColor = System.Drawing.Color.Transparent;
  8509. this.label112.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8510. this.label112.Location = new System.Drawing.Point(3, 162);
  8511. this.label112.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8512. this.label112.Name = "label112";
  8513. this.label112.Size = new System.Drawing.Size(82, 15);
  8514. this.label112.TabIndex = 61;
  8515. this.label112.Text = "作业类型:";
  8516. //
  8517. // ddjTotal_KM7
  8518. //
  8519. this.ddjTotal_KM7.AutoSize = true;
  8520. this.ddjTotal_KM7.BackColor = System.Drawing.Color.Transparent;
  8521. this.ddjTotal_KM7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8522. this.ddjTotal_KM7.ForeColor = System.Drawing.SystemColors.ControlText;
  8523. this.ddjTotal_KM7.Location = new System.Drawing.Point(117, 238);
  8524. this.ddjTotal_KM7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8525. this.ddjTotal_KM7.Name = "ddjTotal_KM7";
  8526. this.ddjTotal_KM7.Size = new System.Drawing.Size(31, 15);
  8527. this.ddjTotal_KM7.TabIndex = 16;
  8528. this.ddjTotal_KM7.Text = "---";
  8529. //
  8530. // label114
  8531. //
  8532. this.label114.AutoSize = true;
  8533. this.label114.BackColor = System.Drawing.Color.Transparent;
  8534. this.label114.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8535. this.label114.Location = new System.Drawing.Point(3, 92);
  8536. this.label114.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8537. this.label114.Name = "label114";
  8538. this.label114.Size = new System.Drawing.Size(82, 15);
  8539. this.label114.TabIndex = 15;
  8540. this.label114.Text = "工作模式:";
  8541. //
  8542. // ddjWorkTime7
  8543. //
  8544. this.ddjWorkTime7.AutoSize = true;
  8545. this.ddjWorkTime7.BackColor = System.Drawing.Color.Transparent;
  8546. this.ddjWorkTime7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8547. this.ddjWorkTime7.ForeColor = System.Drawing.Color.Red;
  8548. this.ddjWorkTime7.Location = new System.Drawing.Point(117, 212);
  8549. this.ddjWorkTime7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8550. this.ddjWorkTime7.Name = "ddjWorkTime7";
  8551. this.ddjWorkTime7.Size = new System.Drawing.Size(31, 15);
  8552. this.ddjWorkTime7.TabIndex = 14;
  8553. this.ddjWorkTime7.Text = "---";
  8554. //
  8555. // label116
  8556. //
  8557. this.label116.AutoSize = true;
  8558. this.label116.BackColor = System.Drawing.Color.Transparent;
  8559. this.label116.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8560. this.label116.Location = new System.Drawing.Point(3, 212);
  8561. this.label116.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8562. this.label116.Name = "label116";
  8563. this.label116.Size = new System.Drawing.Size(82, 15);
  8564. this.label116.TabIndex = 13;
  8565. this.label116.Text = "运行时长:";
  8566. //
  8567. // ddjStatus7
  8568. //
  8569. this.ddjStatus7.AutoSize = true;
  8570. this.ddjStatus7.BackColor = System.Drawing.Color.Transparent;
  8571. this.ddjStatus7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8572. this.ddjStatus7.ForeColor = System.Drawing.Color.Blue;
  8573. this.ddjStatus7.Location = new System.Drawing.Point(116, 115);
  8574. this.ddjStatus7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8575. this.ddjStatus7.Name = "ddjStatus7";
  8576. this.ddjStatus7.Size = new System.Drawing.Size(31, 15);
  8577. this.ddjStatus7.TabIndex = 10;
  8578. this.ddjStatus7.Text = "---";
  8579. //
  8580. // ddjCurrPos7
  8581. //
  8582. this.ddjCurrPos7.AutoSize = true;
  8583. this.ddjCurrPos7.BackColor = System.Drawing.Color.Transparent;
  8584. this.ddjCurrPos7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8585. this.ddjCurrPos7.ForeColor = System.Drawing.Color.Blue;
  8586. this.ddjCurrPos7.Location = new System.Drawing.Point(117, 188);
  8587. this.ddjCurrPos7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8588. this.ddjCurrPos7.Name = "ddjCurrPos7";
  8589. this.ddjCurrPos7.Size = new System.Drawing.Size(31, 15);
  8590. this.ddjCurrPos7.TabIndex = 9;
  8591. this.ddjCurrPos7.Text = "---";
  8592. //
  8593. // label119
  8594. //
  8595. this.label119.AutoSize = true;
  8596. this.label119.BackColor = System.Drawing.Color.Transparent;
  8597. this.label119.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8598. this.label119.ForeColor = System.Drawing.SystemColors.ControlText;
  8599. this.label119.Location = new System.Drawing.Point(3, 238);
  8600. this.label119.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8601. this.label119.Name = "label119";
  8602. this.label119.Size = new System.Drawing.Size(83, 15);
  8603. this.label119.TabIndex = 8;
  8604. this.label119.Text = "里 程 数:";
  8605. //
  8606. // label120
  8607. //
  8608. this.label120.AutoSize = true;
  8609. this.label120.BackColor = System.Drawing.Color.Transparent;
  8610. this.label120.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8611. this.label120.Location = new System.Drawing.Point(3, 115);
  8612. this.label120.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8613. this.label120.Name = "label120";
  8614. this.label120.Size = new System.Drawing.Size(82, 15);
  8615. this.label120.TabIndex = 6;
  8616. this.label120.Text = "工作状态:";
  8617. //
  8618. // label121
  8619. //
  8620. this.label121.AutoSize = true;
  8621. this.label121.BackColor = System.Drawing.Color.Transparent;
  8622. this.label121.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8623. this.label121.Location = new System.Drawing.Point(3, 188);
  8624. this.label121.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8625. this.label121.Name = "label121";
  8626. this.label121.Size = new System.Drawing.Size(82, 15);
  8627. this.label121.TabIndex = 1;
  8628. this.label121.Text = "当前巷道:";
  8629. //
  8630. // lblsrm07
  8631. //
  8632. this.lblsrm07.AutoSize = true;
  8633. this.lblsrm07.BackColor = System.Drawing.Color.Transparent;
  8634. 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)));
  8635. this.lblsrm07.Location = new System.Drawing.Point(40, 32);
  8636. this.lblsrm07.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8637. this.lblsrm07.Name = "lblsrm07";
  8638. this.lblsrm07.Size = new System.Drawing.Size(115, 20);
  8639. this.lblsrm07.TabIndex = 0;
  8640. this.lblsrm07.Text = "7号 堆垛机";
  8641. //
  8642. // G7
  8643. //
  8644. this.G7.BackColor = System.Drawing.Color.Transparent;
  8645. this.G7.Image = global::WCS_Client.Properties.Resources.离线1;
  8646. this.G7.Location = new System.Drawing.Point(88, -2);
  8647. this.G7.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8648. this.G7.Name = "G7";
  8649. this.G7.Size = new System.Drawing.Size(35, 32);
  8650. this.G7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8651. this.G7.TabIndex = 65;
  8652. this.G7.TabStop = false;
  8653. this.G7.Tag = "1";
  8654. //
  8655. // pictureBox9
  8656. //
  8657. this.pictureBox9.BackColor = System.Drawing.Color.Transparent;
  8658. this.pictureBox9.Location = new System.Drawing.Point(87, -2);
  8659. this.pictureBox9.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8660. this.pictureBox9.Name = "pictureBox9";
  8661. this.pictureBox9.Size = new System.Drawing.Size(35, 32);
  8662. this.pictureBox9.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8663. this.pictureBox9.TabIndex = 5;
  8664. this.pictureBox9.TabStop = false;
  8665. //
  8666. // myPanel3
  8667. //
  8668. this.myPanel3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel3.BackgroundImage")));
  8669. this.myPanel3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  8670. this.myPanel3.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  8671. this.myPanel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  8672. this.myPanel3.Controls.Add(this.lblInStatus6);
  8673. this.myPanel3.Controls.Add(this.lblOutStatus6);
  8674. this.myPanel3.Controls.Add(this.label47);
  8675. this.myPanel3.Controls.Add(this.ddjPosTo6);
  8676. this.myPanel3.Controls.Add(this.ddjPosFrom6);
  8677. this.myPanel3.Controls.Add(this.label52);
  8678. this.myPanel3.Controls.Add(this.label54);
  8679. this.myPanel3.Controls.Add(this.ddjMode6);
  8680. this.myPanel3.Controls.Add(this.ddjOrdId6);
  8681. this.myPanel3.Controls.Add(this.label62);
  8682. this.myPanel3.Controls.Add(this.ddjOptType6);
  8683. this.myPanel3.Controls.Add(this.label68);
  8684. this.myPanel3.Controls.Add(this.ddjTotal_KM6);
  8685. this.myPanel3.Controls.Add(this.label76);
  8686. this.myPanel3.Controls.Add(this.ddjWorkTime6);
  8687. this.myPanel3.Controls.Add(this.label82);
  8688. this.myPanel3.Controls.Add(this.ddjStatus6);
  8689. this.myPanel3.Controls.Add(this.ddjCurrPos6);
  8690. this.myPanel3.Controls.Add(this.label95);
  8691. this.myPanel3.Controls.Add(this.label97);
  8692. this.myPanel3.Controls.Add(this.label98);
  8693. this.myPanel3.Controls.Add(this.lblsrm06);
  8694. this.myPanel3.Controls.Add(this.G6);
  8695. this.myPanel3.Controls.Add(this.pictureBox2);
  8696. this.myPanel3.Location = new System.Drawing.Point(1119, 2);
  8697. this.myPanel3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8698. this.myPanel3.Name = "myPanel3";
  8699. this.myPanel3.Size = new System.Drawing.Size(217, 312);
  8700. this.myPanel3.TabIndex = 129;
  8701. //
  8702. // lblInStatus6
  8703. //
  8704. this.lblInStatus6.BackColor = System.Drawing.Color.DarkGray;
  8705. this.lblInStatus6.Location = new System.Drawing.Point(7, 2);
  8706. this.lblInStatus6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8707. this.lblInStatus6.Name = "lblInStatus6";
  8708. this.lblInStatus6.Size = new System.Drawing.Size(37, 30);
  8709. this.lblInStatus6.TabIndex = 97;
  8710. this.lblInStatus6.Tag = "4";
  8711. this.lblInStatus6.Text = "入";
  8712. this.lblInStatus6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  8713. //
  8714. // lblOutStatus6
  8715. //
  8716. this.lblOutStatus6.BackColor = System.Drawing.Color.DarkGray;
  8717. this.lblOutStatus6.Location = new System.Drawing.Point(165, 2);
  8718. this.lblOutStatus6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8719. this.lblOutStatus6.Name = "lblOutStatus6";
  8720. this.lblOutStatus6.Size = new System.Drawing.Size(37, 30);
  8721. this.lblOutStatus6.TabIndex = 94;
  8722. this.lblOutStatus6.Text = "出";
  8723. this.lblOutStatus6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  8724. //
  8725. // label47
  8726. //
  8727. this.label47.BackColor = System.Drawing.Color.Transparent;
  8728. this.label47.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8729. this.label47.ForeColor = System.Drawing.Color.Red;
  8730. this.label47.Location = new System.Drawing.Point(7, 58);
  8731. this.label47.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8732. this.label47.Name = "label47";
  8733. this.label47.Size = new System.Drawing.Size(201, 30);
  8734. this.label47.TabIndex = 92;
  8735. //
  8736. // ddjPosTo6
  8737. //
  8738. this.ddjPosTo6.AutoSize = true;
  8739. this.ddjPosTo6.BackColor = System.Drawing.Color.Transparent;
  8740. this.ddjPosTo6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8741. this.ddjPosTo6.ForeColor = System.Drawing.Color.Blue;
  8742. this.ddjPosTo6.Location = new System.Drawing.Point(119, 292);
  8743. this.ddjPosTo6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8744. this.ddjPosTo6.Name = "ddjPosTo6";
  8745. this.ddjPosTo6.Size = new System.Drawing.Size(31, 15);
  8746. this.ddjPosTo6.TabIndex = 73;
  8747. this.ddjPosTo6.Text = "---";
  8748. //
  8749. // ddjPosFrom6
  8750. //
  8751. this.ddjPosFrom6.AutoSize = true;
  8752. this.ddjPosFrom6.BackColor = System.Drawing.Color.Transparent;
  8753. this.ddjPosFrom6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8754. this.ddjPosFrom6.ForeColor = System.Drawing.Color.Blue;
  8755. this.ddjPosFrom6.Location = new System.Drawing.Point(119, 265);
  8756. this.ddjPosFrom6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8757. this.ddjPosFrom6.Name = "ddjPosFrom6";
  8758. this.ddjPosFrom6.Size = new System.Drawing.Size(31, 15);
  8759. this.ddjPosFrom6.TabIndex = 72;
  8760. this.ddjPosFrom6.Text = "---";
  8761. //
  8762. // label52
  8763. //
  8764. this.label52.AutoSize = true;
  8765. this.label52.BackColor = System.Drawing.Color.Transparent;
  8766. this.label52.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8767. this.label52.Location = new System.Drawing.Point(4, 265);
  8768. this.label52.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8769. this.label52.Name = "label52";
  8770. this.label52.Size = new System.Drawing.Size(82, 15);
  8771. this.label52.TabIndex = 71;
  8772. this.label52.Text = "起始位置:";
  8773. //
  8774. // label54
  8775. //
  8776. this.label54.AutoSize = true;
  8777. this.label54.BackColor = System.Drawing.Color.Transparent;
  8778. this.label54.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8779. this.label54.Location = new System.Drawing.Point(4, 292);
  8780. this.label54.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8781. this.label54.Name = "label54";
  8782. this.label54.Size = new System.Drawing.Size(82, 15);
  8783. this.label54.TabIndex = 70;
  8784. this.label54.Text = "目标位置:";
  8785. //
  8786. // ddjMode6
  8787. //
  8788. this.ddjMode6.AutoSize = true;
  8789. this.ddjMode6.BackColor = System.Drawing.Color.Transparent;
  8790. this.ddjMode6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8791. this.ddjMode6.ForeColor = System.Drawing.Color.Blue;
  8792. this.ddjMode6.Location = new System.Drawing.Point(116, 92);
  8793. this.ddjMode6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8794. this.ddjMode6.Name = "ddjMode6";
  8795. this.ddjMode6.Size = new System.Drawing.Size(31, 15);
  8796. this.ddjMode6.TabIndex = 12;
  8797. this.ddjMode6.Text = "---";
  8798. //
  8799. // ddjOrdId6
  8800. //
  8801. this.ddjOrdId6.AutoSize = true;
  8802. this.ddjOrdId6.BackColor = System.Drawing.Color.Transparent;
  8803. this.ddjOrdId6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8804. this.ddjOrdId6.ForeColor = System.Drawing.Color.Blue;
  8805. this.ddjOrdId6.Location = new System.Drawing.Point(116, 142);
  8806. this.ddjOrdId6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8807. this.ddjOrdId6.Name = "ddjOrdId6";
  8808. this.ddjOrdId6.Size = new System.Drawing.Size(31, 15);
  8809. this.ddjOrdId6.TabIndex = 64;
  8810. this.ddjOrdId6.Text = "---";
  8811. //
  8812. // label62
  8813. //
  8814. this.label62.AutoSize = true;
  8815. this.label62.BackColor = System.Drawing.Color.Transparent;
  8816. this.label62.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8817. this.label62.Location = new System.Drawing.Point(3, 142);
  8818. this.label62.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8819. this.label62.Name = "label62";
  8820. this.label62.Size = new System.Drawing.Size(82, 15);
  8821. this.label62.TabIndex = 63;
  8822. this.label62.Text = "工作指令:";
  8823. //
  8824. // ddjOptType6
  8825. //
  8826. this.ddjOptType6.AutoSize = true;
  8827. this.ddjOptType6.BackColor = System.Drawing.Color.Transparent;
  8828. this.ddjOptType6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8829. this.ddjOptType6.ForeColor = System.Drawing.Color.Blue;
  8830. this.ddjOptType6.Location = new System.Drawing.Point(116, 162);
  8831. this.ddjOptType6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8832. this.ddjOptType6.Name = "ddjOptType6";
  8833. this.ddjOptType6.Size = new System.Drawing.Size(31, 15);
  8834. this.ddjOptType6.TabIndex = 62;
  8835. this.ddjOptType6.Text = "---";
  8836. //
  8837. // label68
  8838. //
  8839. this.label68.AutoSize = true;
  8840. this.label68.BackColor = System.Drawing.Color.Transparent;
  8841. this.label68.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8842. this.label68.Location = new System.Drawing.Point(3, 162);
  8843. this.label68.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8844. this.label68.Name = "label68";
  8845. this.label68.Size = new System.Drawing.Size(82, 15);
  8846. this.label68.TabIndex = 61;
  8847. this.label68.Text = "作业类型:";
  8848. //
  8849. // ddjTotal_KM6
  8850. //
  8851. this.ddjTotal_KM6.AutoSize = true;
  8852. this.ddjTotal_KM6.BackColor = System.Drawing.Color.Transparent;
  8853. this.ddjTotal_KM6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8854. this.ddjTotal_KM6.ForeColor = System.Drawing.SystemColors.ControlText;
  8855. this.ddjTotal_KM6.Location = new System.Drawing.Point(117, 238);
  8856. this.ddjTotal_KM6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8857. this.ddjTotal_KM6.Name = "ddjTotal_KM6";
  8858. this.ddjTotal_KM6.Size = new System.Drawing.Size(31, 15);
  8859. this.ddjTotal_KM6.TabIndex = 16;
  8860. this.ddjTotal_KM6.Text = "---";
  8861. //
  8862. // label76
  8863. //
  8864. this.label76.AutoSize = true;
  8865. this.label76.BackColor = System.Drawing.Color.Transparent;
  8866. this.label76.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8867. this.label76.Location = new System.Drawing.Point(3, 92);
  8868. this.label76.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8869. this.label76.Name = "label76";
  8870. this.label76.Size = new System.Drawing.Size(82, 15);
  8871. this.label76.TabIndex = 15;
  8872. this.label76.Text = "工作模式:";
  8873. //
  8874. // ddjWorkTime6
  8875. //
  8876. this.ddjWorkTime6.AutoSize = true;
  8877. this.ddjWorkTime6.BackColor = System.Drawing.Color.Transparent;
  8878. this.ddjWorkTime6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8879. this.ddjWorkTime6.ForeColor = System.Drawing.Color.Red;
  8880. this.ddjWorkTime6.Location = new System.Drawing.Point(117, 212);
  8881. this.ddjWorkTime6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8882. this.ddjWorkTime6.Name = "ddjWorkTime6";
  8883. this.ddjWorkTime6.Size = new System.Drawing.Size(31, 15);
  8884. this.ddjWorkTime6.TabIndex = 14;
  8885. this.ddjWorkTime6.Text = "---";
  8886. //
  8887. // label82
  8888. //
  8889. this.label82.AutoSize = true;
  8890. this.label82.BackColor = System.Drawing.Color.Transparent;
  8891. this.label82.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8892. this.label82.Location = new System.Drawing.Point(3, 212);
  8893. this.label82.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8894. this.label82.Name = "label82";
  8895. this.label82.Size = new System.Drawing.Size(82, 15);
  8896. this.label82.TabIndex = 13;
  8897. this.label82.Text = "运行时长:";
  8898. //
  8899. // ddjStatus6
  8900. //
  8901. this.ddjStatus6.AutoSize = true;
  8902. this.ddjStatus6.BackColor = System.Drawing.Color.Transparent;
  8903. this.ddjStatus6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8904. this.ddjStatus6.ForeColor = System.Drawing.Color.Blue;
  8905. this.ddjStatus6.Location = new System.Drawing.Point(116, 115);
  8906. this.ddjStatus6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8907. this.ddjStatus6.Name = "ddjStatus6";
  8908. this.ddjStatus6.Size = new System.Drawing.Size(31, 15);
  8909. this.ddjStatus6.TabIndex = 10;
  8910. this.ddjStatus6.Text = "---";
  8911. //
  8912. // ddjCurrPos6
  8913. //
  8914. this.ddjCurrPos6.AutoSize = true;
  8915. this.ddjCurrPos6.BackColor = System.Drawing.Color.Transparent;
  8916. this.ddjCurrPos6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8917. this.ddjCurrPos6.ForeColor = System.Drawing.Color.Blue;
  8918. this.ddjCurrPos6.Location = new System.Drawing.Point(117, 188);
  8919. this.ddjCurrPos6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8920. this.ddjCurrPos6.Name = "ddjCurrPos6";
  8921. this.ddjCurrPos6.Size = new System.Drawing.Size(31, 15);
  8922. this.ddjCurrPos6.TabIndex = 9;
  8923. this.ddjCurrPos6.Text = "---";
  8924. //
  8925. // label95
  8926. //
  8927. this.label95.AutoSize = true;
  8928. this.label95.BackColor = System.Drawing.Color.Transparent;
  8929. this.label95.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8930. this.label95.ForeColor = System.Drawing.SystemColors.ControlText;
  8931. this.label95.Location = new System.Drawing.Point(3, 238);
  8932. this.label95.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8933. this.label95.Name = "label95";
  8934. this.label95.Size = new System.Drawing.Size(83, 15);
  8935. this.label95.TabIndex = 8;
  8936. this.label95.Text = "里 程 数:";
  8937. //
  8938. // label97
  8939. //
  8940. this.label97.AutoSize = true;
  8941. this.label97.BackColor = System.Drawing.Color.Transparent;
  8942. this.label97.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8943. this.label97.Location = new System.Drawing.Point(3, 115);
  8944. this.label97.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8945. this.label97.Name = "label97";
  8946. this.label97.Size = new System.Drawing.Size(82, 15);
  8947. this.label97.TabIndex = 6;
  8948. this.label97.Text = "工作状态:";
  8949. //
  8950. // label98
  8951. //
  8952. this.label98.AutoSize = true;
  8953. this.label98.BackColor = System.Drawing.Color.Transparent;
  8954. this.label98.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8955. this.label98.Location = new System.Drawing.Point(3, 188);
  8956. this.label98.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8957. this.label98.Name = "label98";
  8958. this.label98.Size = new System.Drawing.Size(82, 15);
  8959. this.label98.TabIndex = 1;
  8960. this.label98.Text = "当前巷道:";
  8961. //
  8962. // lblsrm06
  8963. //
  8964. this.lblsrm06.AutoSize = true;
  8965. this.lblsrm06.BackColor = System.Drawing.Color.Transparent;
  8966. 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)));
  8967. this.lblsrm06.Location = new System.Drawing.Point(40, 32);
  8968. this.lblsrm06.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8969. this.lblsrm06.Name = "lblsrm06";
  8970. this.lblsrm06.Size = new System.Drawing.Size(115, 20);
  8971. this.lblsrm06.TabIndex = 0;
  8972. this.lblsrm06.Text = "6号 堆垛机";
  8973. //
  8974. // G6
  8975. //
  8976. this.G6.BackColor = System.Drawing.Color.Transparent;
  8977. this.G6.Image = global::WCS_Client.Properties.Resources.离线1;
  8978. this.G6.Location = new System.Drawing.Point(88, -2);
  8979. this.G6.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8980. this.G6.Name = "G6";
  8981. this.G6.Size = new System.Drawing.Size(35, 32);
  8982. this.G6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8983. this.G6.TabIndex = 65;
  8984. this.G6.TabStop = false;
  8985. this.G6.Tag = "1";
  8986. //
  8987. // pictureBox2
  8988. //
  8989. this.pictureBox2.BackColor = System.Drawing.Color.Transparent;
  8990. this.pictureBox2.Location = new System.Drawing.Point(87, -2);
  8991. this.pictureBox2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8992. this.pictureBox2.Name = "pictureBox2";
  8993. this.pictureBox2.Size = new System.Drawing.Size(35, 32);
  8994. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8995. this.pictureBox2.TabIndex = 5;
  8996. this.pictureBox2.TabStop = false;
  8997. //
  8998. // pnlRGV1089
  8999. //
  9000. this.pnlRGV1089.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlRGV1089.BackgroundImage")));
  9001. this.pnlRGV1089.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  9002. this.pnlRGV1089.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  9003. this.pnlRGV1089.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  9004. this.pnlRGV1089.Controls.Add(this.label7);
  9005. this.pnlRGV1089.Controls.Add(this.label8);
  9006. this.pnlRGV1089.Controls.Add(this.label9);
  9007. this.pnlRGV1089.Controls.Add(this.rgvOptType2);
  9008. this.pnlRGV1089.Controls.Add(this.label31);
  9009. this.pnlRGV1089.Controls.Add(this.lblRGVWarning1089);
  9010. this.pnlRGV1089.Controls.Add(this.rgvPosCurr2);
  9011. this.pnlRGV1089.Controls.Add(this.rgvMode2);
  9012. this.pnlRGV1089.Controls.Add(this.rgvOrdId2);
  9013. this.pnlRGV1089.Controls.Add(this.label50);
  9014. this.pnlRGV1089.Controls.Add(this.rgvPosTo2);
  9015. this.pnlRGV1089.Controls.Add(this.label53);
  9016. this.pnlRGV1089.Controls.Add(this.rgvPosFrom2);
  9017. this.pnlRGV1089.Controls.Add(this.rgvStatus2);
  9018. this.pnlRGV1089.Controls.Add(this.label63);
  9019. this.pnlRGV1089.Controls.Add(this.lblrgv1089);
  9020. this.pnlRGV1089.Controls.Add(this.GV2);
  9021. this.pnlRGV1089.Controls.Add(this.pictureBox4);
  9022. this.pnlRGV1089.Location = new System.Drawing.Point(2222, 3);
  9023. this.pnlRGV1089.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9024. this.pnlRGV1089.Name = "pnlRGV1089";
  9025. this.pnlRGV1089.Size = new System.Drawing.Size(217, 312);
  9026. this.pnlRGV1089.TabIndex = 128;
  9027. //
  9028. // label7
  9029. //
  9030. this.label7.AutoSize = true;
  9031. this.label7.BackColor = System.Drawing.Color.Transparent;
  9032. this.label7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9033. this.label7.Location = new System.Drawing.Point(5, 244);
  9034. this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9035. this.label7.Name = "label7";
  9036. this.label7.Size = new System.Drawing.Size(82, 15);
  9037. this.label7.TabIndex = 106;
  9038. this.label7.Text = "光电状态:";
  9039. //
  9040. // label8
  9041. //
  9042. this.label8.AutoSize = true;
  9043. this.label8.BackColor = System.Drawing.Color.Transparent;
  9044. this.label8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9045. this.label8.Location = new System.Drawing.Point(4, 191);
  9046. this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9047. this.label8.Name = "label8";
  9048. this.label8.Size = new System.Drawing.Size(82, 15);
  9049. this.label8.TabIndex = 105;
  9050. this.label8.Text = "起始地址:";
  9051. //
  9052. // label9
  9053. //
  9054. this.label9.AutoSize = true;
  9055. this.label9.BackColor = System.Drawing.Color.Transparent;
  9056. this.label9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9057. this.label9.ForeColor = System.Drawing.SystemColors.ControlText;
  9058. this.label9.Location = new System.Drawing.Point(4, 216);
  9059. this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9060. this.label9.Name = "label9";
  9061. this.label9.Size = new System.Drawing.Size(82, 15);
  9062. this.label9.TabIndex = 104;
  9063. this.label9.Text = "目标地址:";
  9064. //
  9065. // rgvOptType2
  9066. //
  9067. this.rgvOptType2.AutoSize = true;
  9068. this.rgvOptType2.BackColor = System.Drawing.Color.Transparent;
  9069. this.rgvOptType2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9070. this.rgvOptType2.ForeColor = System.Drawing.Color.Blue;
  9071. this.rgvOptType2.Location = new System.Drawing.Point(96, 166);
  9072. this.rgvOptType2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9073. this.rgvOptType2.Name = "rgvOptType2";
  9074. this.rgvOptType2.Size = new System.Drawing.Size(31, 15);
  9075. this.rgvOptType2.TabIndex = 101;
  9076. this.rgvOptType2.Text = "---";
  9077. //
  9078. // label31
  9079. //
  9080. this.label31.AutoSize = true;
  9081. this.label31.BackColor = System.Drawing.Color.Transparent;
  9082. this.label31.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9083. this.label31.Location = new System.Drawing.Point(3, 166);
  9084. this.label31.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9085. this.label31.Name = "label31";
  9086. this.label31.Size = new System.Drawing.Size(82, 15);
  9087. this.label31.TabIndex = 100;
  9088. this.label31.Text = "作业类型:";
  9089. //
  9090. // lblRGVWarning1089
  9091. //
  9092. this.lblRGVWarning1089.BackColor = System.Drawing.Color.Transparent;
  9093. this.lblRGVWarning1089.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9094. this.lblRGVWarning1089.ForeColor = System.Drawing.Color.Red;
  9095. this.lblRGVWarning1089.Location = new System.Drawing.Point(7, 58);
  9096. this.lblRGVWarning1089.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9097. this.lblRGVWarning1089.Name = "lblRGVWarning1089";
  9098. this.lblRGVWarning1089.Size = new System.Drawing.Size(201, 30);
  9099. this.lblRGVWarning1089.TabIndex = 92;
  9100. //
  9101. // rgvPosCurr2
  9102. //
  9103. this.rgvPosCurr2.AutoSize = true;
  9104. this.rgvPosCurr2.BackColor = System.Drawing.Color.Transparent;
  9105. this.rgvPosCurr2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9106. this.rgvPosCurr2.ForeColor = System.Drawing.Color.Blue;
  9107. this.rgvPosCurr2.Location = new System.Drawing.Point(95, 244);
  9108. this.rgvPosCurr2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9109. this.rgvPosCurr2.Name = "rgvPosCurr2";
  9110. this.rgvPosCurr2.Size = new System.Drawing.Size(31, 15);
  9111. this.rgvPosCurr2.TabIndex = 72;
  9112. this.rgvPosCurr2.Text = "---";
  9113. //
  9114. // rgvMode2
  9115. //
  9116. this.rgvMode2.AutoSize = true;
  9117. this.rgvMode2.BackColor = System.Drawing.Color.Transparent;
  9118. this.rgvMode2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9119. this.rgvMode2.ForeColor = System.Drawing.Color.Blue;
  9120. this.rgvMode2.Location = new System.Drawing.Point(96, 92);
  9121. this.rgvMode2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9122. this.rgvMode2.Name = "rgvMode2";
  9123. this.rgvMode2.Size = new System.Drawing.Size(31, 15);
  9124. this.rgvMode2.TabIndex = 12;
  9125. this.rgvMode2.Text = "---";
  9126. //
  9127. // rgvOrdId2
  9128. //
  9129. this.rgvOrdId2.AutoSize = true;
  9130. this.rgvOrdId2.BackColor = System.Drawing.Color.Transparent;
  9131. this.rgvOrdId2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9132. this.rgvOrdId2.ForeColor = System.Drawing.Color.Blue;
  9133. this.rgvOrdId2.Location = new System.Drawing.Point(96, 142);
  9134. this.rgvOrdId2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9135. this.rgvOrdId2.Name = "rgvOrdId2";
  9136. this.rgvOrdId2.Size = new System.Drawing.Size(31, 15);
  9137. this.rgvOrdId2.TabIndex = 64;
  9138. this.rgvOrdId2.Text = "---";
  9139. //
  9140. // label50
  9141. //
  9142. this.label50.AutoSize = true;
  9143. this.label50.BackColor = System.Drawing.Color.Transparent;
  9144. this.label50.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9145. this.label50.Location = new System.Drawing.Point(3, 142);
  9146. this.label50.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9147. this.label50.Name = "label50";
  9148. this.label50.Size = new System.Drawing.Size(82, 15);
  9149. this.label50.TabIndex = 63;
  9150. this.label50.Text = "工作指令:";
  9151. //
  9152. // rgvPosTo2
  9153. //
  9154. this.rgvPosTo2.AutoSize = true;
  9155. this.rgvPosTo2.BackColor = System.Drawing.Color.Transparent;
  9156. this.rgvPosTo2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9157. this.rgvPosTo2.ForeColor = System.Drawing.Color.Blue;
  9158. this.rgvPosTo2.Location = new System.Drawing.Point(93, 216);
  9159. this.rgvPosTo2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9160. this.rgvPosTo2.Name = "rgvPosTo2";
  9161. this.rgvPosTo2.Size = new System.Drawing.Size(31, 15);
  9162. this.rgvPosTo2.TabIndex = 16;
  9163. this.rgvPosTo2.Text = "---";
  9164. //
  9165. // label53
  9166. //
  9167. this.label53.AutoSize = true;
  9168. this.label53.BackColor = System.Drawing.Color.Transparent;
  9169. this.label53.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9170. this.label53.Location = new System.Drawing.Point(3, 92);
  9171. this.label53.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9172. this.label53.Name = "label53";
  9173. this.label53.Size = new System.Drawing.Size(82, 15);
  9174. this.label53.TabIndex = 15;
  9175. this.label53.Text = "工作模式:";
  9176. //
  9177. // rgvPosFrom2
  9178. //
  9179. this.rgvPosFrom2.AutoSize = true;
  9180. this.rgvPosFrom2.BackColor = System.Drawing.Color.Transparent;
  9181. this.rgvPosFrom2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9182. this.rgvPosFrom2.ForeColor = System.Drawing.Color.Blue;
  9183. this.rgvPosFrom2.Location = new System.Drawing.Point(93, 191);
  9184. this.rgvPosFrom2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9185. this.rgvPosFrom2.Name = "rgvPosFrom2";
  9186. this.rgvPosFrom2.Size = new System.Drawing.Size(31, 15);
  9187. this.rgvPosFrom2.TabIndex = 14;
  9188. this.rgvPosFrom2.Text = "---";
  9189. //
  9190. // rgvStatus2
  9191. //
  9192. this.rgvStatus2.AutoSize = true;
  9193. this.rgvStatus2.BackColor = System.Drawing.Color.Transparent;
  9194. this.rgvStatus2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9195. this.rgvStatus2.ForeColor = System.Drawing.Color.Blue;
  9196. this.rgvStatus2.Location = new System.Drawing.Point(96, 115);
  9197. this.rgvStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9198. this.rgvStatus2.Name = "rgvStatus2";
  9199. this.rgvStatus2.Size = new System.Drawing.Size(31, 15);
  9200. this.rgvStatus2.TabIndex = 10;
  9201. this.rgvStatus2.Text = "---";
  9202. //
  9203. // label63
  9204. //
  9205. this.label63.AutoSize = true;
  9206. this.label63.BackColor = System.Drawing.Color.Transparent;
  9207. this.label63.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9208. this.label63.Location = new System.Drawing.Point(3, 115);
  9209. this.label63.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9210. this.label63.Name = "label63";
  9211. this.label63.Size = new System.Drawing.Size(82, 15);
  9212. this.label63.TabIndex = 6;
  9213. this.label63.Text = "工作状态:";
  9214. //
  9215. // lblrgv1089
  9216. //
  9217. this.lblrgv1089.AutoSize = true;
  9218. this.lblrgv1089.BackColor = System.Drawing.Color.Transparent;
  9219. this.lblrgv1089.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9220. this.lblrgv1089.Location = new System.Drawing.Point(59, 32);
  9221. this.lblrgv1089.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9222. this.lblrgv1089.Name = "lblrgv1089";
  9223. this.lblrgv1089.Size = new System.Drawing.Size(53, 20);
  9224. this.lblrgv1089.TabIndex = 0;
  9225. this.lblrgv1089.Text = "RGV3";
  9226. //
  9227. // GV2
  9228. //
  9229. this.GV2.BackColor = System.Drawing.Color.Transparent;
  9230. this.GV2.Image = ((System.Drawing.Image)(resources.GetObject("GV2.Image")));
  9231. this.GV2.Location = new System.Drawing.Point(88, -2);
  9232. this.GV2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9233. this.GV2.Name = "GV2";
  9234. this.GV2.Size = new System.Drawing.Size(35, 32);
  9235. this.GV2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  9236. this.GV2.TabIndex = 65;
  9237. this.GV2.TabStop = false;
  9238. this.GV2.Tag = "1";
  9239. //
  9240. // pictureBox4
  9241. //
  9242. this.pictureBox4.BackColor = System.Drawing.Color.Transparent;
  9243. this.pictureBox4.Location = new System.Drawing.Point(87, -2);
  9244. this.pictureBox4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9245. this.pictureBox4.Name = "pictureBox4";
  9246. this.pictureBox4.Size = new System.Drawing.Size(35, 32);
  9247. this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  9248. this.pictureBox4.TabIndex = 5;
  9249. this.pictureBox4.TabStop = false;
  9250. //
  9251. // myPanel2
  9252. //
  9253. this.myPanel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel2.BackgroundImage")));
  9254. this.myPanel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  9255. this.myPanel2.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  9256. this.myPanel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  9257. this.myPanel2.Controls.Add(this.myPanel4);
  9258. this.myPanel2.Controls.Add(this.rgvOptType1);
  9259. this.myPanel2.Controls.Add(this.label23);
  9260. this.myPanel2.Controls.Add(this.lblRGVWarning1444);
  9261. this.myPanel2.Controls.Add(this.rgvPosCurr1);
  9262. this.myPanel2.Controls.Add(this.label45);
  9263. this.myPanel2.Controls.Add(this.rgvMode1);
  9264. this.myPanel2.Controls.Add(this.rgvOrdId1);
  9265. this.myPanel2.Controls.Add(this.label58);
  9266. this.myPanel2.Controls.Add(this.rgvPosTo1);
  9267. this.myPanel2.Controls.Add(this.label69);
  9268. this.myPanel2.Controls.Add(this.rgvPosFrom1);
  9269. this.myPanel2.Controls.Add(this.label73);
  9270. this.myPanel2.Controls.Add(this.rgvStatus1);
  9271. this.myPanel2.Controls.Add(this.label80);
  9272. this.myPanel2.Controls.Add(this.label92);
  9273. this.myPanel2.Controls.Add(this.lblrgv1444);
  9274. this.myPanel2.Controls.Add(this.GV1);
  9275. this.myPanel2.Controls.Add(this.pictureBox5);
  9276. this.myPanel2.Location = new System.Drawing.Point(1999, 4);
  9277. this.myPanel2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9278. this.myPanel2.Name = "myPanel2";
  9279. this.myPanel2.Size = new System.Drawing.Size(217, 312);
  9280. this.myPanel2.TabIndex = 114;
  9281. //
  9282. // myPanel4
  9283. //
  9284. this.myPanel4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel4.BackgroundImage")));
  9285. this.myPanel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  9286. this.myPanel4.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  9287. this.myPanel4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  9288. this.myPanel4.Controls.Add(this.label124);
  9289. this.myPanel4.Controls.Add(this.label125);
  9290. this.myPanel4.Controls.Add(this.label126);
  9291. this.myPanel4.Controls.Add(this.label127);
  9292. this.myPanel4.Controls.Add(this.label128);
  9293. this.myPanel4.Controls.Add(this.label129);
  9294. this.myPanel4.Controls.Add(this.label130);
  9295. this.myPanel4.Controls.Add(this.label131);
  9296. this.myPanel4.Controls.Add(this.label132);
  9297. this.myPanel4.Controls.Add(this.label133);
  9298. this.myPanel4.Controls.Add(this.label134);
  9299. this.myPanel4.Controls.Add(this.label135);
  9300. this.myPanel4.Controls.Add(this.label136);
  9301. this.myPanel4.Controls.Add(this.label138);
  9302. this.myPanel4.Controls.Add(this.label140);
  9303. this.myPanel4.Controls.Add(this.label141);
  9304. this.myPanel4.Controls.Add(this.label142);
  9305. this.myPanel4.Controls.Add(this.label143);
  9306. this.myPanel4.Controls.Add(this.label144);
  9307. this.myPanel4.Controls.Add(this.label145);
  9308. this.myPanel4.Controls.Add(this.label146);
  9309. this.myPanel4.Controls.Add(this.label147);
  9310. this.myPanel4.Controls.Add(this.pictureBox11);
  9311. this.myPanel4.Controls.Add(this.pictureBox12);
  9312. this.myPanel4.Location = new System.Drawing.Point(252, -2);
  9313. this.myPanel4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9314. this.myPanel4.Name = "myPanel4";
  9315. this.myPanel4.Size = new System.Drawing.Size(244, 324);
  9316. this.myPanel4.TabIndex = 106;
  9317. //
  9318. // label124
  9319. //
  9320. this.label124.BackColor = System.Drawing.Color.DarkGray;
  9321. this.label124.Location = new System.Drawing.Point(163, 4);
  9322. this.label124.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9323. this.label124.Name = "label124";
  9324. this.label124.Size = new System.Drawing.Size(37, 30);
  9325. this.label124.TabIndex = 103;
  9326. this.label124.Text = "出";
  9327. this.label124.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  9328. //
  9329. // label125
  9330. //
  9331. this.label125.BackColor = System.Drawing.Color.DarkGray;
  9332. this.label125.Location = new System.Drawing.Point(8, 4);
  9333. this.label125.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9334. this.label125.Name = "label125";
  9335. this.label125.Size = new System.Drawing.Size(37, 30);
  9336. this.label125.TabIndex = 102;
  9337. this.label125.Tag = "4";
  9338. this.label125.Text = "入";
  9339. this.label125.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  9340. //
  9341. // label126
  9342. //
  9343. this.label126.AutoSize = true;
  9344. this.label126.BackColor = System.Drawing.Color.Transparent;
  9345. this.label126.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9346. this.label126.ForeColor = System.Drawing.Color.Blue;
  9347. this.label126.Location = new System.Drawing.Point(116, 166);
  9348. this.label126.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9349. this.label126.Name = "label126";
  9350. this.label126.Size = new System.Drawing.Size(31, 15);
  9351. this.label126.TabIndex = 101;
  9352. this.label126.Text = "---";
  9353. //
  9354. // label127
  9355. //
  9356. this.label127.AutoSize = true;
  9357. this.label127.BackColor = System.Drawing.Color.Transparent;
  9358. this.label127.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9359. this.label127.Location = new System.Drawing.Point(3, 166);
  9360. this.label127.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9361. this.label127.Name = "label127";
  9362. this.label127.Size = new System.Drawing.Size(82, 15);
  9363. this.label127.TabIndex = 100;
  9364. this.label127.Text = "作业类型:";
  9365. //
  9366. // label128
  9367. //
  9368. this.label128.BackColor = System.Drawing.Color.Transparent;
  9369. this.label128.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9370. this.label128.ForeColor = System.Drawing.Color.Red;
  9371. this.label128.Location = new System.Drawing.Point(7, 58);
  9372. this.label128.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9373. this.label128.Name = "label128";
  9374. this.label128.Size = new System.Drawing.Size(201, 30);
  9375. this.label128.TabIndex = 92;
  9376. //
  9377. // label129
  9378. //
  9379. this.label129.AutoSize = true;
  9380. this.label129.BackColor = System.Drawing.Color.Transparent;
  9381. this.label129.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9382. this.label129.ForeColor = System.Drawing.Color.Blue;
  9383. this.label129.Location = new System.Drawing.Point(119, 295);
  9384. this.label129.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9385. this.label129.Name = "label129";
  9386. this.label129.Size = new System.Drawing.Size(31, 15);
  9387. this.label129.TabIndex = 73;
  9388. this.label129.Text = "---";
  9389. //
  9390. // label130
  9391. //
  9392. this.label130.AutoSize = true;
  9393. this.label130.BackColor = System.Drawing.Color.Transparent;
  9394. this.label130.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9395. this.label130.ForeColor = System.Drawing.Color.Blue;
  9396. this.label130.Location = new System.Drawing.Point(119, 268);
  9397. this.label130.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9398. this.label130.Name = "label130";
  9399. this.label130.Size = new System.Drawing.Size(31, 15);
  9400. this.label130.TabIndex = 72;
  9401. this.label130.Text = "---";
  9402. //
  9403. // label131
  9404. //
  9405. this.label131.AutoSize = true;
  9406. this.label131.BackColor = System.Drawing.Color.Transparent;
  9407. this.label131.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9408. this.label131.Location = new System.Drawing.Point(4, 268);
  9409. this.label131.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9410. this.label131.Name = "label131";
  9411. this.label131.Size = new System.Drawing.Size(82, 15);
  9412. this.label131.TabIndex = 71;
  9413. this.label131.Text = "起始位置:";
  9414. //
  9415. // label132
  9416. //
  9417. this.label132.AutoSize = true;
  9418. this.label132.BackColor = System.Drawing.Color.Transparent;
  9419. this.label132.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9420. this.label132.Location = new System.Drawing.Point(4, 295);
  9421. this.label132.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9422. this.label132.Name = "label132";
  9423. this.label132.Size = new System.Drawing.Size(82, 15);
  9424. this.label132.TabIndex = 70;
  9425. this.label132.Text = "目标位置:";
  9426. //
  9427. // label133
  9428. //
  9429. this.label133.AutoSize = true;
  9430. this.label133.BackColor = System.Drawing.Color.Transparent;
  9431. this.label133.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9432. this.label133.ForeColor = System.Drawing.Color.Blue;
  9433. this.label133.Location = new System.Drawing.Point(116, 92);
  9434. this.label133.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9435. this.label133.Name = "label133";
  9436. this.label133.Size = new System.Drawing.Size(31, 15);
  9437. this.label133.TabIndex = 12;
  9438. this.label133.Text = "---";
  9439. //
  9440. // label134
  9441. //
  9442. this.label134.AutoSize = true;
  9443. this.label134.BackColor = System.Drawing.Color.Transparent;
  9444. this.label134.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9445. this.label134.ForeColor = System.Drawing.Color.Blue;
  9446. this.label134.Location = new System.Drawing.Point(116, 142);
  9447. this.label134.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9448. this.label134.Name = "label134";
  9449. this.label134.Size = new System.Drawing.Size(31, 15);
  9450. this.label134.TabIndex = 64;
  9451. this.label134.Text = "---";
  9452. //
  9453. // label135
  9454. //
  9455. this.label135.AutoSize = true;
  9456. this.label135.BackColor = System.Drawing.Color.Transparent;
  9457. this.label135.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9458. this.label135.Location = new System.Drawing.Point(3, 142);
  9459. this.label135.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9460. this.label135.Name = "label135";
  9461. this.label135.Size = new System.Drawing.Size(82, 15);
  9462. this.label135.TabIndex = 63;
  9463. this.label135.Text = "工作指令:";
  9464. //
  9465. // label136
  9466. //
  9467. this.label136.AutoSize = true;
  9468. this.label136.BackColor = System.Drawing.Color.Transparent;
  9469. this.label136.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9470. this.label136.ForeColor = System.Drawing.SystemColors.ControlText;
  9471. this.label136.Location = new System.Drawing.Point(117, 240);
  9472. this.label136.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9473. this.label136.Name = "label136";
  9474. this.label136.Size = new System.Drawing.Size(31, 15);
  9475. this.label136.TabIndex = 16;
  9476. this.label136.Text = "---";
  9477. //
  9478. // label138
  9479. //
  9480. this.label138.AutoSize = true;
  9481. this.label138.BackColor = System.Drawing.Color.Transparent;
  9482. this.label138.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9483. this.label138.Location = new System.Drawing.Point(3, 92);
  9484. this.label138.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9485. this.label138.Name = "label138";
  9486. this.label138.Size = new System.Drawing.Size(82, 15);
  9487. this.label138.TabIndex = 15;
  9488. this.label138.Text = "工作模式:";
  9489. //
  9490. // label140
  9491. //
  9492. this.label140.AutoSize = true;
  9493. this.label140.BackColor = System.Drawing.Color.Transparent;
  9494. this.label140.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9495. this.label140.ForeColor = System.Drawing.Color.Red;
  9496. this.label140.Location = new System.Drawing.Point(117, 215);
  9497. this.label140.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9498. this.label140.Name = "label140";
  9499. this.label140.Size = new System.Drawing.Size(31, 15);
  9500. this.label140.TabIndex = 14;
  9501. this.label140.Text = "---";
  9502. //
  9503. // label141
  9504. //
  9505. this.label141.AutoSize = true;
  9506. this.label141.BackColor = System.Drawing.Color.Transparent;
  9507. this.label141.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9508. this.label141.Location = new System.Drawing.Point(3, 215);
  9509. this.label141.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9510. this.label141.Name = "label141";
  9511. this.label141.Size = new System.Drawing.Size(82, 15);
  9512. this.label141.TabIndex = 13;
  9513. this.label141.Text = "运行时长:";
  9514. //
  9515. // label142
  9516. //
  9517. this.label142.AutoSize = true;
  9518. this.label142.BackColor = System.Drawing.Color.Transparent;
  9519. this.label142.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9520. this.label142.ForeColor = System.Drawing.Color.Blue;
  9521. this.label142.Location = new System.Drawing.Point(116, 115);
  9522. this.label142.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9523. this.label142.Name = "label142";
  9524. this.label142.Size = new System.Drawing.Size(31, 15);
  9525. this.label142.TabIndex = 10;
  9526. this.label142.Text = "---";
  9527. //
  9528. // label143
  9529. //
  9530. this.label143.AutoSize = true;
  9531. this.label143.BackColor = System.Drawing.Color.Transparent;
  9532. this.label143.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9533. this.label143.ForeColor = System.Drawing.Color.Blue;
  9534. this.label143.Location = new System.Drawing.Point(117, 190);
  9535. this.label143.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9536. this.label143.Name = "label143";
  9537. this.label143.Size = new System.Drawing.Size(31, 15);
  9538. this.label143.TabIndex = 9;
  9539. this.label143.Text = "---";
  9540. //
  9541. // label144
  9542. //
  9543. this.label144.AutoSize = true;
  9544. this.label144.BackColor = System.Drawing.Color.Transparent;
  9545. this.label144.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9546. this.label144.ForeColor = System.Drawing.SystemColors.ControlText;
  9547. this.label144.Location = new System.Drawing.Point(3, 240);
  9548. this.label144.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9549. this.label144.Name = "label144";
  9550. this.label144.Size = new System.Drawing.Size(83, 15);
  9551. this.label144.TabIndex = 8;
  9552. this.label144.Text = "里 程 数:";
  9553. //
  9554. // label145
  9555. //
  9556. this.label145.AutoSize = true;
  9557. this.label145.BackColor = System.Drawing.Color.Transparent;
  9558. this.label145.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9559. this.label145.Location = new System.Drawing.Point(3, 115);
  9560. this.label145.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9561. this.label145.Name = "label145";
  9562. this.label145.Size = new System.Drawing.Size(82, 15);
  9563. this.label145.TabIndex = 6;
  9564. this.label145.Text = "工作状态:";
  9565. //
  9566. // label146
  9567. //
  9568. this.label146.AutoSize = true;
  9569. this.label146.BackColor = System.Drawing.Color.Transparent;
  9570. this.label146.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9571. this.label146.Location = new System.Drawing.Point(3, 190);
  9572. this.label146.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9573. this.label146.Name = "label146";
  9574. this.label146.Size = new System.Drawing.Size(82, 15);
  9575. this.label146.TabIndex = 1;
  9576. this.label146.Text = "当前位置:";
  9577. //
  9578. // label147
  9579. //
  9580. this.label147.AutoSize = true;
  9581. this.label147.BackColor = System.Drawing.Color.Transparent;
  9582. 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)));
  9583. this.label147.Location = new System.Drawing.Point(59, 32);
  9584. this.label147.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9585. this.label147.Name = "label147";
  9586. this.label147.Size = new System.Drawing.Size(86, 20);
  9587. this.label147.TabIndex = 0;
  9588. this.label147.Text = "RGV1091";
  9589. //
  9590. // pictureBox11
  9591. //
  9592. this.pictureBox11.BackColor = System.Drawing.Color.Transparent;
  9593. this.pictureBox11.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox11.Image")));
  9594. this.pictureBox11.Location = new System.Drawing.Point(88, -2);
  9595. this.pictureBox11.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9596. this.pictureBox11.Name = "pictureBox11";
  9597. this.pictureBox11.Size = new System.Drawing.Size(35, 32);
  9598. this.pictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  9599. this.pictureBox11.TabIndex = 65;
  9600. this.pictureBox11.TabStop = false;
  9601. this.pictureBox11.Tag = "1";
  9602. //
  9603. // pictureBox12
  9604. //
  9605. this.pictureBox12.BackColor = System.Drawing.Color.Transparent;
  9606. this.pictureBox12.Location = new System.Drawing.Point(87, -2);
  9607. this.pictureBox12.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9608. this.pictureBox12.Name = "pictureBox12";
  9609. this.pictureBox12.Size = new System.Drawing.Size(35, 32);
  9610. this.pictureBox12.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  9611. this.pictureBox12.TabIndex = 5;
  9612. this.pictureBox12.TabStop = false;
  9613. //
  9614. // rgvOptType1
  9615. //
  9616. this.rgvOptType1.AutoSize = true;
  9617. this.rgvOptType1.BackColor = System.Drawing.Color.Transparent;
  9618. this.rgvOptType1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9619. this.rgvOptType1.ForeColor = System.Drawing.Color.Blue;
  9620. this.rgvOptType1.Location = new System.Drawing.Point(96, 166);
  9621. this.rgvOptType1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9622. this.rgvOptType1.Name = "rgvOptType1";
  9623. this.rgvOptType1.Size = new System.Drawing.Size(31, 15);
  9624. this.rgvOptType1.TabIndex = 101;
  9625. this.rgvOptType1.Text = "---";
  9626. //
  9627. // label23
  9628. //
  9629. this.label23.AutoSize = true;
  9630. this.label23.BackColor = System.Drawing.Color.Transparent;
  9631. this.label23.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9632. this.label23.Location = new System.Drawing.Point(3, 166);
  9633. this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9634. this.label23.Name = "label23";
  9635. this.label23.Size = new System.Drawing.Size(82, 15);
  9636. this.label23.TabIndex = 100;
  9637. this.label23.Text = "作业类型:";
  9638. //
  9639. // lblRGVWarning1444
  9640. //
  9641. this.lblRGVWarning1444.BackColor = System.Drawing.Color.Transparent;
  9642. this.lblRGVWarning1444.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9643. this.lblRGVWarning1444.ForeColor = System.Drawing.Color.Red;
  9644. this.lblRGVWarning1444.Location = new System.Drawing.Point(7, 58);
  9645. this.lblRGVWarning1444.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9646. this.lblRGVWarning1444.Name = "lblRGVWarning1444";
  9647. this.lblRGVWarning1444.Size = new System.Drawing.Size(201, 30);
  9648. this.lblRGVWarning1444.TabIndex = 92;
  9649. //
  9650. // rgvPosCurr1
  9651. //
  9652. this.rgvPosCurr1.AutoSize = true;
  9653. this.rgvPosCurr1.BackColor = System.Drawing.Color.Transparent;
  9654. this.rgvPosCurr1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9655. this.rgvPosCurr1.ForeColor = System.Drawing.Color.Blue;
  9656. this.rgvPosCurr1.Location = new System.Drawing.Point(99, 242);
  9657. this.rgvPosCurr1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9658. this.rgvPosCurr1.Name = "rgvPosCurr1";
  9659. this.rgvPosCurr1.Size = new System.Drawing.Size(31, 15);
  9660. this.rgvPosCurr1.TabIndex = 72;
  9661. this.rgvPosCurr1.Text = "---";
  9662. //
  9663. // label45
  9664. //
  9665. this.label45.AutoSize = true;
  9666. this.label45.BackColor = System.Drawing.Color.Transparent;
  9667. this.label45.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9668. this.label45.Location = new System.Drawing.Point(4, 242);
  9669. this.label45.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9670. this.label45.Name = "label45";
  9671. this.label45.Size = new System.Drawing.Size(82, 15);
  9672. this.label45.TabIndex = 71;
  9673. this.label45.Text = "光电状态:";
  9674. //
  9675. // rgvMode1
  9676. //
  9677. this.rgvMode1.AutoSize = true;
  9678. this.rgvMode1.BackColor = System.Drawing.Color.Transparent;
  9679. this.rgvMode1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9680. this.rgvMode1.ForeColor = System.Drawing.Color.Blue;
  9681. this.rgvMode1.Location = new System.Drawing.Point(96, 92);
  9682. this.rgvMode1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9683. this.rgvMode1.Name = "rgvMode1";
  9684. this.rgvMode1.Size = new System.Drawing.Size(31, 15);
  9685. this.rgvMode1.TabIndex = 12;
  9686. this.rgvMode1.Text = "---";
  9687. //
  9688. // rgvOrdId1
  9689. //
  9690. this.rgvOrdId1.AutoSize = true;
  9691. this.rgvOrdId1.BackColor = System.Drawing.Color.Transparent;
  9692. this.rgvOrdId1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9693. this.rgvOrdId1.ForeColor = System.Drawing.Color.Blue;
  9694. this.rgvOrdId1.Location = new System.Drawing.Point(96, 142);
  9695. this.rgvOrdId1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9696. this.rgvOrdId1.Name = "rgvOrdId1";
  9697. this.rgvOrdId1.Size = new System.Drawing.Size(31, 15);
  9698. this.rgvOrdId1.TabIndex = 64;
  9699. this.rgvOrdId1.Text = "---";
  9700. //
  9701. // label58
  9702. //
  9703. this.label58.AutoSize = true;
  9704. this.label58.BackColor = System.Drawing.Color.Transparent;
  9705. this.label58.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9706. this.label58.Location = new System.Drawing.Point(3, 142);
  9707. this.label58.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9708. this.label58.Name = "label58";
  9709. this.label58.Size = new System.Drawing.Size(82, 15);
  9710. this.label58.TabIndex = 63;
  9711. this.label58.Text = "工作指令:";
  9712. //
  9713. // rgvPosTo1
  9714. //
  9715. this.rgvPosTo1.AutoSize = true;
  9716. this.rgvPosTo1.BackColor = System.Drawing.Color.Transparent;
  9717. this.rgvPosTo1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9718. this.rgvPosTo1.ForeColor = System.Drawing.Color.Blue;
  9719. this.rgvPosTo1.Location = new System.Drawing.Point(97, 215);
  9720. this.rgvPosTo1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9721. this.rgvPosTo1.Name = "rgvPosTo1";
  9722. this.rgvPosTo1.Size = new System.Drawing.Size(31, 15);
  9723. this.rgvPosTo1.TabIndex = 16;
  9724. this.rgvPosTo1.Text = "---";
  9725. //
  9726. // label69
  9727. //
  9728. this.label69.AutoSize = true;
  9729. this.label69.BackColor = System.Drawing.Color.Transparent;
  9730. this.label69.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9731. this.label69.Location = new System.Drawing.Point(3, 92);
  9732. this.label69.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9733. this.label69.Name = "label69";
  9734. this.label69.Size = new System.Drawing.Size(82, 15);
  9735. this.label69.TabIndex = 15;
  9736. this.label69.Text = "工作模式:";
  9737. //
  9738. // rgvPosFrom1
  9739. //
  9740. this.rgvPosFrom1.AutoSize = true;
  9741. this.rgvPosFrom1.BackColor = System.Drawing.Color.Transparent;
  9742. this.rgvPosFrom1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9743. this.rgvPosFrom1.ForeColor = System.Drawing.Color.Blue;
  9744. this.rgvPosFrom1.Location = new System.Drawing.Point(97, 190);
  9745. this.rgvPosFrom1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9746. this.rgvPosFrom1.Name = "rgvPosFrom1";
  9747. this.rgvPosFrom1.Size = new System.Drawing.Size(31, 15);
  9748. this.rgvPosFrom1.TabIndex = 14;
  9749. this.rgvPosFrom1.Text = "---";
  9750. //
  9751. // label73
  9752. //
  9753. this.label73.AutoSize = true;
  9754. this.label73.BackColor = System.Drawing.Color.Transparent;
  9755. this.label73.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9756. this.label73.Location = new System.Drawing.Point(3, 190);
  9757. this.label73.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9758. this.label73.Name = "label73";
  9759. this.label73.Size = new System.Drawing.Size(82, 15);
  9760. this.label73.TabIndex = 13;
  9761. this.label73.Text = "起始地址:";
  9762. //
  9763. // rgvStatus1
  9764. //
  9765. this.rgvStatus1.AutoSize = true;
  9766. this.rgvStatus1.BackColor = System.Drawing.Color.Transparent;
  9767. this.rgvStatus1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9768. this.rgvStatus1.ForeColor = System.Drawing.Color.Blue;
  9769. this.rgvStatus1.Location = new System.Drawing.Point(96, 115);
  9770. this.rgvStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9771. this.rgvStatus1.Name = "rgvStatus1";
  9772. this.rgvStatus1.Size = new System.Drawing.Size(31, 15);
  9773. this.rgvStatus1.TabIndex = 10;
  9774. this.rgvStatus1.Text = "---";
  9775. //
  9776. // label80
  9777. //
  9778. this.label80.AutoSize = true;
  9779. this.label80.BackColor = System.Drawing.Color.Transparent;
  9780. this.label80.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9781. this.label80.ForeColor = System.Drawing.SystemColors.ControlText;
  9782. this.label80.Location = new System.Drawing.Point(3, 215);
  9783. this.label80.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9784. this.label80.Name = "label80";
  9785. this.label80.Size = new System.Drawing.Size(82, 15);
  9786. this.label80.TabIndex = 8;
  9787. this.label80.Text = "目标地址:";
  9788. //
  9789. // label92
  9790. //
  9791. this.label92.AutoSize = true;
  9792. this.label92.BackColor = System.Drawing.Color.Transparent;
  9793. this.label92.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9794. this.label92.Location = new System.Drawing.Point(3, 115);
  9795. this.label92.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9796. this.label92.Name = "label92";
  9797. this.label92.Size = new System.Drawing.Size(82, 15);
  9798. this.label92.TabIndex = 6;
  9799. this.label92.Text = "工作状态:";
  9800. //
  9801. // lblrgv1444
  9802. //
  9803. this.lblrgv1444.AutoSize = true;
  9804. this.lblrgv1444.BackColor = System.Drawing.Color.Transparent;
  9805. this.lblrgv1444.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9806. this.lblrgv1444.Location = new System.Drawing.Point(59, 32);
  9807. this.lblrgv1444.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9808. this.lblrgv1444.Name = "lblrgv1444";
  9809. this.lblrgv1444.Size = new System.Drawing.Size(53, 20);
  9810. this.lblrgv1444.TabIndex = 0;
  9811. this.lblrgv1444.Text = "RGV2";
  9812. //
  9813. // GV1
  9814. //
  9815. this.GV1.BackColor = System.Drawing.Color.Transparent;
  9816. this.GV1.Image = ((System.Drawing.Image)(resources.GetObject("GV1.Image")));
  9817. this.GV1.Location = new System.Drawing.Point(88, -2);
  9818. this.GV1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9819. this.GV1.Name = "GV1";
  9820. this.GV1.Size = new System.Drawing.Size(35, 32);
  9821. this.GV1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  9822. this.GV1.TabIndex = 65;
  9823. this.GV1.TabStop = false;
  9824. this.GV1.Tag = "1";
  9825. //
  9826. // pictureBox5
  9827. //
  9828. this.pictureBox5.BackColor = System.Drawing.Color.Transparent;
  9829. this.pictureBox5.Location = new System.Drawing.Point(87, -2);
  9830. this.pictureBox5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9831. this.pictureBox5.Name = "pictureBox5";
  9832. this.pictureBox5.Size = new System.Drawing.Size(35, 32);
  9833. this.pictureBox5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  9834. this.pictureBox5.TabIndex = 5;
  9835. this.pictureBox5.TabStop = false;
  9836. //
  9837. // tableLayoutPanel1
  9838. //
  9839. this.tableLayoutPanel1.AutoScroll = true;
  9840. this.tableLayoutPanel1.ColumnCount = 1;
  9841. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
  9842. this.tableLayoutPanel1.Controls.Add(this.tabControl1, 0, 0);
  9843. this.tableLayoutPanel1.Controls.Add(this.pnlBottom, 0, 1);
  9844. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  9845. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  9846. this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  9847. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  9848. this.tableLayoutPanel1.RowCount = 2;
  9849. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 70F));
  9850. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 30F));
  9851. this.tableLayoutPanel1.Size = new System.Drawing.Size(1710, 879);
  9852. this.tableLayoutPanel1.TabIndex = 127;
  9853. //
  9854. // Frm_YongGuanMontior
  9855. //
  9856. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  9857. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  9858. this.ClientSize = new System.Drawing.Size(1710, 879);
  9859. this.Controls.Add(this.tableLayoutPanel1);
  9860. this.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9861. this.Name = "Frm_YongGuanMontior";
  9862. this.Text = "Frm_YongGuanMontior";
  9863. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_YongGuanMontior_FormClosing);
  9864. this.Load += new System.EventHandler(this.Frm_YongGuanMontior_Load);
  9865. this.tabControl1.ResumeLayout(false);
  9866. this.tabPage1.ResumeLayout(false);
  9867. this.myTableLayoutPanel1.ResumeLayout(false);
  9868. this.myTableLayoutPanel1.PerformLayout();
  9869. this.pnlDDJ1.ResumeLayout(false);
  9870. this.pnlDDJ1.PerformLayout();
  9871. ((System.ComponentModel.ISupportInitialize)(this.G1)).EndInit();
  9872. ((System.ComponentModel.ISupportInitialize)(this.R1)).EndInit();
  9873. this.pnlDDJ2.ResumeLayout(false);
  9874. this.pnlDDJ2.PerformLayout();
  9875. ((System.ComponentModel.ISupportInitialize)(this.G2)).EndInit();
  9876. ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
  9877. this.pnlDDJ3.ResumeLayout(false);
  9878. this.pnlDDJ3.PerformLayout();
  9879. ((System.ComponentModel.ISupportInitialize)(this.G3)).EndInit();
  9880. ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit();
  9881. this.pnlDDJ4.ResumeLayout(false);
  9882. this.pnlDDJ4.PerformLayout();
  9883. ((System.ComponentModel.ISupportInitialize)(this.G4)).EndInit();
  9884. ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).EndInit();
  9885. this.myPanel1.ResumeLayout(false);
  9886. this.myPanel1.PerformLayout();
  9887. ((System.ComponentModel.ISupportInitialize)(this.G5)).EndInit();
  9888. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
  9889. this.pnlRGV1091.ResumeLayout(false);
  9890. this.pnlRGV1091.PerformLayout();
  9891. ((System.ComponentModel.ISupportInitialize)(this.GV3)).EndInit();
  9892. ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit();
  9893. this.myPanel5.ResumeLayout(false);
  9894. this.myPanel5.PerformLayout();
  9895. ((System.ComponentModel.ISupportInitialize)(this.GV4)).EndInit();
  9896. ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).EndInit();
  9897. this.pnlBottom.ResumeLayout(false);
  9898. this.myPanel17.ResumeLayout(false);
  9899. this.myPanel17.PerformLayout();
  9900. ((System.ComponentModel.ISupportInitialize)(this.pictureBox35)).EndInit();
  9901. ((System.ComponentModel.ISupportInitialize)(this.pictureBox36)).EndInit();
  9902. this.myPanel11.ResumeLayout(false);
  9903. this.myPanel11.PerformLayout();
  9904. ((System.ComponentModel.ISupportInitialize)(this.pictureBox29)).EndInit();
  9905. ((System.ComponentModel.ISupportInitialize)(this.pictureBox34)).EndInit();
  9906. this.myPanel16.ResumeLayout(false);
  9907. this.myPanel16.PerformLayout();
  9908. ((System.ComponentModel.ISupportInitialize)(this.pictureBox32)).EndInit();
  9909. ((System.ComponentModel.ISupportInitialize)(this.pictureBox33)).EndInit();
  9910. this.myPanel15.ResumeLayout(false);
  9911. this.myPanel15.PerformLayout();
  9912. ((System.ComponentModel.ISupportInitialize)(this.pictureBox30)).EndInit();
  9913. ((System.ComponentModel.ISupportInitialize)(this.pictureBox31)).EndInit();
  9914. this.myPanel14.ResumeLayout(false);
  9915. this.myPanel14.PerformLayout();
  9916. ((System.ComponentModel.ISupportInitialize)(this.pictureBox27)).EndInit();
  9917. ((System.ComponentModel.ISupportInitialize)(this.pictureBox28)).EndInit();
  9918. this.myPanel13.ResumeLayout(false);
  9919. this.myPanel13.PerformLayout();
  9920. ((System.ComponentModel.ISupportInitialize)(this.pictureBox25)).EndInit();
  9921. ((System.ComponentModel.ISupportInitialize)(this.pictureBox26)).EndInit();
  9922. this.myPanel12.ResumeLayout(false);
  9923. this.myPanel12.PerformLayout();
  9924. ((System.ComponentModel.ISupportInitialize)(this.pictureBox23)).EndInit();
  9925. ((System.ComponentModel.ISupportInitialize)(this.pictureBox24)).EndInit();
  9926. this.myPanel10.ResumeLayout(false);
  9927. this.myPanel10.PerformLayout();
  9928. ((System.ComponentModel.ISupportInitialize)(this.pictureBox21)).EndInit();
  9929. ((System.ComponentModel.ISupportInitialize)(this.pictureBox22)).EndInit();
  9930. this.myPanel9.ResumeLayout(false);
  9931. this.myPanel9.PerformLayout();
  9932. ((System.ComponentModel.ISupportInitialize)(this.pictureBox19)).EndInit();
  9933. ((System.ComponentModel.ISupportInitialize)(this.pictureBox20)).EndInit();
  9934. this.myPanel8.ResumeLayout(false);
  9935. this.myPanel8.PerformLayout();
  9936. ((System.ComponentModel.ISupportInitialize)(this.pictureBox16)).EndInit();
  9937. ((System.ComponentModel.ISupportInitialize)(this.pictureBox18)).EndInit();
  9938. this.myPanel7.ResumeLayout(false);
  9939. this.myPanel7.PerformLayout();
  9940. ((System.ComponentModel.ISupportInitialize)(this.G8)).EndInit();
  9941. ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).EndInit();
  9942. this.myPanel6.ResumeLayout(false);
  9943. this.myPanel6.PerformLayout();
  9944. ((System.ComponentModel.ISupportInitialize)(this.G7)).EndInit();
  9945. ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit();
  9946. this.myPanel3.ResumeLayout(false);
  9947. this.myPanel3.PerformLayout();
  9948. ((System.ComponentModel.ISupportInitialize)(this.G6)).EndInit();
  9949. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  9950. this.pnlRGV1089.ResumeLayout(false);
  9951. this.pnlRGV1089.PerformLayout();
  9952. ((System.ComponentModel.ISupportInitialize)(this.GV2)).EndInit();
  9953. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
  9954. this.myPanel2.ResumeLayout(false);
  9955. this.myPanel2.PerformLayout();
  9956. this.myPanel4.ResumeLayout(false);
  9957. this.myPanel4.PerformLayout();
  9958. ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit();
  9959. ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit();
  9960. ((System.ComponentModel.ISupportInitialize)(this.GV1)).EndInit();
  9961. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
  9962. this.tableLayoutPanel1.ResumeLayout(false);
  9963. this.ResumeLayout(false);
  9964. }
  9965. #endregion
  9966. private System.Windows.Forms.TabControl tabControl1;
  9967. private System.Windows.Forms.TabPage tabPage1;
  9968. private MyConrols.MyPanel pnlDDJ1;
  9969. private System.Windows.Forms.Label lblInStatus1;
  9970. private System.Windows.Forms.Label lblOutStatus1;
  9971. private System.Windows.Forms.Label lblDDJWarning1;
  9972. public System.Windows.Forms.Label ddjPosTo1;
  9973. public System.Windows.Forms.Label ddjPosFrom1;
  9974. private System.Windows.Forms.Label label84;
  9975. private System.Windows.Forms.Label label85;
  9976. public System.Windows.Forms.Label ddjMode1;
  9977. public System.Windows.Forms.Label ddjOrdId1;
  9978. private System.Windows.Forms.Label label137;
  9979. public System.Windows.Forms.Label ddjOptType1;
  9980. private System.Windows.Forms.Label label139;
  9981. public System.Windows.Forms.Label ddjTotal_KM1;
  9982. private System.Windows.Forms.Label label13;
  9983. public System.Windows.Forms.Label ddjWorkTime1;
  9984. private System.Windows.Forms.Label label10;
  9985. public System.Windows.Forms.Label ddjStatus1;
  9986. public System.Windows.Forms.Label ddjPosCurr1;
  9987. private System.Windows.Forms.Label label5;
  9988. private System.Windows.Forms.Label label3;
  9989. private System.Windows.Forms.Label label2;
  9990. private System.Windows.Forms.Label lblsrm01;
  9991. public System.Windows.Forms.PictureBox G1;
  9992. public System.Windows.Forms.PictureBox R1;
  9993. private MyConrols.MyPanel pnlDDJ2;
  9994. private System.Windows.Forms.Label lblInStatus2;
  9995. private System.Windows.Forms.Label lblOutStatus2;
  9996. private System.Windows.Forms.Label lblDDJWarning2;
  9997. public System.Windows.Forms.Label ddjPosTo2;
  9998. public System.Windows.Forms.Label ddjPosFrom2;
  9999. private System.Windows.Forms.Label label15;
  10000. private System.Windows.Forms.Label label16;
  10001. public System.Windows.Forms.Label ddjMode2;
  10002. public System.Windows.Forms.Label ddjOrdId2;
  10003. private System.Windows.Forms.Label label22;
  10004. public System.Windows.Forms.Label ddjOptType2;
  10005. private System.Windows.Forms.Label label26;
  10006. public System.Windows.Forms.Label ddjTotal_KM2;
  10007. private System.Windows.Forms.Label label29;
  10008. public System.Windows.Forms.Label ddjWorkTime2;
  10009. private System.Windows.Forms.Label label32;
  10010. public System.Windows.Forms.Label ddjStatus2;
  10011. public System.Windows.Forms.Label ddjPosCurr2;
  10012. private System.Windows.Forms.Label label83;
  10013. private System.Windows.Forms.Label label86;
  10014. private System.Windows.Forms.Label label87;
  10015. private System.Windows.Forms.Label lblsrm02;
  10016. public System.Windows.Forms.PictureBox G2;
  10017. public System.Windows.Forms.PictureBox pictureBox6;
  10018. private MyConrols.MyPanel pnlDDJ3;
  10019. private System.Windows.Forms.Label lblInStatus3;
  10020. private System.Windows.Forms.Label lblOutStatus3;
  10021. private System.Windows.Forms.Label lblDDJWarning3;
  10022. public System.Windows.Forms.Label ddjPosTo3;
  10023. public System.Windows.Forms.Label ddjPosFrom3;
  10024. private System.Windows.Forms.Label label43;
  10025. private System.Windows.Forms.Label label51;
  10026. public System.Windows.Forms.Label ddjMode3;
  10027. public System.Windows.Forms.Label ddjOrdId3;
  10028. private System.Windows.Forms.Label label55;
  10029. public System.Windows.Forms.Label ddjOptType3;
  10030. private System.Windows.Forms.Label label57;
  10031. public System.Windows.Forms.Label ddjTotal_KM3;
  10032. private System.Windows.Forms.Label label59;
  10033. public System.Windows.Forms.Label ddjWorkTime3;
  10034. private System.Windows.Forms.Label label61;
  10035. public System.Windows.Forms.Label ddjStatus3;
  10036. public System.Windows.Forms.Label ddjPosCurr3;
  10037. private System.Windows.Forms.Label label64;
  10038. private System.Windows.Forms.Label label65;
  10039. private System.Windows.Forms.Label label66;
  10040. private System.Windows.Forms.Label lblsrm03;
  10041. public System.Windows.Forms.PictureBox G3;
  10042. public System.Windows.Forms.PictureBox pictureBox10;
  10043. private MyConrols.MyPanel pnlDDJ4;
  10044. private System.Windows.Forms.Label lblInStatus4;
  10045. private System.Windows.Forms.Label lblOutStatus4;
  10046. private System.Windows.Forms.Label lblDDJWarning4;
  10047. public System.Windows.Forms.Label ddjPosTo4;
  10048. public System.Windows.Forms.Label ddjPosFrom4;
  10049. private System.Windows.Forms.Label label71;
  10050. private System.Windows.Forms.Label label72;
  10051. public System.Windows.Forms.Label ddjMode4;
  10052. public System.Windows.Forms.Label ddjOrdId4;
  10053. private System.Windows.Forms.Label label75;
  10054. public System.Windows.Forms.Label ddjOptType4;
  10055. private System.Windows.Forms.Label label77;
  10056. public System.Windows.Forms.Label ddjTotal_KM4;
  10057. private System.Windows.Forms.Label label79;
  10058. public System.Windows.Forms.Label ddjWorkTime4;
  10059. private System.Windows.Forms.Label label81;
  10060. public System.Windows.Forms.Label ddjStatus4;
  10061. public System.Windows.Forms.Label ddjPosCurr4;
  10062. private System.Windows.Forms.Label label89;
  10063. private System.Windows.Forms.Label label90;
  10064. private System.Windows.Forms.Label label91;
  10065. private System.Windows.Forms.Label lblsrm04;
  10066. public System.Windows.Forms.PictureBox G4;
  10067. public System.Windows.Forms.PictureBox pictureBox14;
  10068. private MyConrols.MyPanel myPanel1;
  10069. private System.Windows.Forms.Label lblInStatus5;
  10070. private System.Windows.Forms.Label lblOutStatus5;
  10071. private System.Windows.Forms.Label label11;
  10072. public System.Windows.Forms.Label ddjPosTo5;
  10073. public System.Windows.Forms.Label ddjPosFrom5;
  10074. private System.Windows.Forms.Label label17;
  10075. private System.Windows.Forms.Label label18;
  10076. public System.Windows.Forms.Label ddjMode5;
  10077. public System.Windows.Forms.Label ddjOrdId5;
  10078. private System.Windows.Forms.Label label21;
  10079. public System.Windows.Forms.Label ddjOptType5;
  10080. private System.Windows.Forms.Label label24;
  10081. public System.Windows.Forms.Label ddjTotal_KM5;
  10082. private System.Windows.Forms.Label label27;
  10083. public System.Windows.Forms.Label ddjWorkTime5;
  10084. private System.Windows.Forms.Label label30;
  10085. public System.Windows.Forms.Label ddjStatus5;
  10086. public System.Windows.Forms.Label ddjPosCurr5;
  10087. private System.Windows.Forms.Label label36;
  10088. private System.Windows.Forms.Label label37;
  10089. private System.Windows.Forms.Label label38;
  10090. private System.Windows.Forms.Label lblsrm05;
  10091. public System.Windows.Forms.PictureBox G5;
  10092. public System.Windows.Forms.PictureBox pictureBox3;
  10093. private MyConrols.MyPanel pnlRGV1091;
  10094. private System.Windows.Forms.Label label14;
  10095. private System.Windows.Forms.Label label19;
  10096. private System.Windows.Forms.Label label20;
  10097. public System.Windows.Forms.Label rgvOptType3;
  10098. private System.Windows.Forms.Label label74;
  10099. private System.Windows.Forms.Label lblRGVWarning1091;
  10100. public System.Windows.Forms.Label rgvPosCurr3;
  10101. public System.Windows.Forms.Label rgvMode3;
  10102. public System.Windows.Forms.Label rgvOrdId3;
  10103. private System.Windows.Forms.Label label94;
  10104. public System.Windows.Forms.Label rgvPosTo3;
  10105. private System.Windows.Forms.Label label96;
  10106. public System.Windows.Forms.Label rgvPosFrom3;
  10107. public System.Windows.Forms.Label rgvStatus3;
  10108. private System.Windows.Forms.Label label102;
  10109. private System.Windows.Forms.Label lblrgv1091;
  10110. public System.Windows.Forms.PictureBox GV3;
  10111. public System.Windows.Forms.PictureBox pictureBox7;
  10112. private MyConrols.MyPanel myPanel5;
  10113. private System.Windows.Forms.Label label25;
  10114. private System.Windows.Forms.Label label35;
  10115. private System.Windows.Forms.Label label39;
  10116. public System.Windows.Forms.Label rgvOptType4;
  10117. private System.Windows.Forms.Label label173;
  10118. private System.Windows.Forms.Label lblRGVWarning1007;
  10119. public System.Windows.Forms.Label rgvPosCurr4;
  10120. public System.Windows.Forms.Label rgvMode4;
  10121. public System.Windows.Forms.Label rgvOrdId4;
  10122. private System.Windows.Forms.Label label181;
  10123. public System.Windows.Forms.Label rgvPosTo4;
  10124. private System.Windows.Forms.Label label183;
  10125. public System.Windows.Forms.Label rgvPosFrom4;
  10126. public System.Windows.Forms.Label rgvStatus4;
  10127. private System.Windows.Forms.Label label189;
  10128. private System.Windows.Forms.Label lblrgv1007;
  10129. public System.Windows.Forms.PictureBox GV4;
  10130. public System.Windows.Forms.PictureBox pictureBox17;
  10131. private MyConrols.MyPanel pnlBottom;
  10132. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  10133. private MyConrols.MyPanel myPanel17;
  10134. private System.Windows.Forms.Label label314;
  10135. private System.Windows.Forms.Label label315;
  10136. private System.Windows.Forms.Label label316;
  10137. public System.Windows.Forms.Label label317;
  10138. private System.Windows.Forms.Label label318;
  10139. private System.Windows.Forms.Label label319;
  10140. public System.Windows.Forms.Label label320;
  10141. public System.Windows.Forms.Label label321;
  10142. public System.Windows.Forms.Label label322;
  10143. private System.Windows.Forms.Label label323;
  10144. public System.Windows.Forms.Label label324;
  10145. private System.Windows.Forms.Label label325;
  10146. public System.Windows.Forms.Label label326;
  10147. public System.Windows.Forms.Label label327;
  10148. private System.Windows.Forms.Label label328;
  10149. private System.Windows.Forms.Label label329;
  10150. public System.Windows.Forms.PictureBox pictureBox35;
  10151. public System.Windows.Forms.PictureBox pictureBox36;
  10152. private MyConrols.MyPanel myPanel11;
  10153. private System.Windows.Forms.Label label40;
  10154. private System.Windows.Forms.Label label41;
  10155. private System.Windows.Forms.Label label42;
  10156. public System.Windows.Forms.Label label301;
  10157. private System.Windows.Forms.Label label302;
  10158. private System.Windows.Forms.Label label303;
  10159. public System.Windows.Forms.Label label304;
  10160. public System.Windows.Forms.Label label305;
  10161. public System.Windows.Forms.Label label306;
  10162. private System.Windows.Forms.Label label307;
  10163. public System.Windows.Forms.Label label308;
  10164. private System.Windows.Forms.Label label309;
  10165. public System.Windows.Forms.Label label310;
  10166. public System.Windows.Forms.Label label311;
  10167. private System.Windows.Forms.Label label312;
  10168. private System.Windows.Forms.Label label313;
  10169. public System.Windows.Forms.PictureBox pictureBox29;
  10170. public System.Windows.Forms.PictureBox pictureBox34;
  10171. private MyConrols.MyPanel myPanel16;
  10172. private System.Windows.Forms.Label label285;
  10173. private System.Windows.Forms.Label label286;
  10174. private System.Windows.Forms.Label label287;
  10175. public System.Windows.Forms.Label label288;
  10176. private System.Windows.Forms.Label label289;
  10177. private System.Windows.Forms.Label label290;
  10178. public System.Windows.Forms.Label label291;
  10179. public System.Windows.Forms.Label label292;
  10180. public System.Windows.Forms.Label label293;
  10181. private System.Windows.Forms.Label label294;
  10182. public System.Windows.Forms.Label label295;
  10183. private System.Windows.Forms.Label label296;
  10184. public System.Windows.Forms.Label label297;
  10185. public System.Windows.Forms.Label label298;
  10186. private System.Windows.Forms.Label label299;
  10187. private System.Windows.Forms.Label label300;
  10188. public System.Windows.Forms.PictureBox pictureBox32;
  10189. public System.Windows.Forms.PictureBox pictureBox33;
  10190. private MyConrols.MyPanel myPanel15;
  10191. private System.Windows.Forms.Label label269;
  10192. private System.Windows.Forms.Label label270;
  10193. private System.Windows.Forms.Label label271;
  10194. public System.Windows.Forms.Label label272;
  10195. private System.Windows.Forms.Label label273;
  10196. private System.Windows.Forms.Label label274;
  10197. public System.Windows.Forms.Label label275;
  10198. public System.Windows.Forms.Label label276;
  10199. public System.Windows.Forms.Label label277;
  10200. private System.Windows.Forms.Label label278;
  10201. public System.Windows.Forms.Label label279;
  10202. private System.Windows.Forms.Label label280;
  10203. public System.Windows.Forms.Label label281;
  10204. public System.Windows.Forms.Label label282;
  10205. private System.Windows.Forms.Label label283;
  10206. private System.Windows.Forms.Label label284;
  10207. public System.Windows.Forms.PictureBox pictureBox30;
  10208. public System.Windows.Forms.PictureBox pictureBox31;
  10209. private MyConrols.MyPanel myPanel14;
  10210. private System.Windows.Forms.Label label253;
  10211. private System.Windows.Forms.Label label254;
  10212. private System.Windows.Forms.Label label255;
  10213. public System.Windows.Forms.Label label256;
  10214. private System.Windows.Forms.Label label257;
  10215. private System.Windows.Forms.Label label258;
  10216. public System.Windows.Forms.Label label259;
  10217. public System.Windows.Forms.Label label260;
  10218. public System.Windows.Forms.Label label261;
  10219. private System.Windows.Forms.Label label262;
  10220. public System.Windows.Forms.Label label263;
  10221. private System.Windows.Forms.Label label264;
  10222. public System.Windows.Forms.Label label265;
  10223. public System.Windows.Forms.Label label266;
  10224. private System.Windows.Forms.Label label267;
  10225. private System.Windows.Forms.Label label268;
  10226. public System.Windows.Forms.PictureBox pictureBox27;
  10227. public System.Windows.Forms.PictureBox pictureBox28;
  10228. private MyConrols.MyPanel myPanel13;
  10229. private System.Windows.Forms.Label label237;
  10230. private System.Windows.Forms.Label label238;
  10231. private System.Windows.Forms.Label label239;
  10232. public System.Windows.Forms.Label label240;
  10233. private System.Windows.Forms.Label label241;
  10234. private System.Windows.Forms.Label label242;
  10235. public System.Windows.Forms.Label label243;
  10236. public System.Windows.Forms.Label label244;
  10237. public System.Windows.Forms.Label label245;
  10238. private System.Windows.Forms.Label label246;
  10239. public System.Windows.Forms.Label label247;
  10240. private System.Windows.Forms.Label label248;
  10241. public System.Windows.Forms.Label label249;
  10242. public System.Windows.Forms.Label label250;
  10243. private System.Windows.Forms.Label label251;
  10244. private System.Windows.Forms.Label label252;
  10245. public System.Windows.Forms.PictureBox pictureBox25;
  10246. public System.Windows.Forms.PictureBox pictureBox26;
  10247. private MyConrols.MyPanel myPanel12;
  10248. private System.Windows.Forms.Label label221;
  10249. private System.Windows.Forms.Label label222;
  10250. private System.Windows.Forms.Label label223;
  10251. public System.Windows.Forms.Label label224;
  10252. private System.Windows.Forms.Label label225;
  10253. private System.Windows.Forms.Label label226;
  10254. public System.Windows.Forms.Label label227;
  10255. public System.Windows.Forms.Label label228;
  10256. public System.Windows.Forms.Label label229;
  10257. private System.Windows.Forms.Label label230;
  10258. public System.Windows.Forms.Label label231;
  10259. private System.Windows.Forms.Label label232;
  10260. public System.Windows.Forms.Label label233;
  10261. public System.Windows.Forms.Label label234;
  10262. private System.Windows.Forms.Label label235;
  10263. private System.Windows.Forms.Label label236;
  10264. public System.Windows.Forms.PictureBox pictureBox23;
  10265. public System.Windows.Forms.PictureBox pictureBox24;
  10266. private MyConrols.MyPanel myPanel10;
  10267. private System.Windows.Forms.Label label205;
  10268. private System.Windows.Forms.Label label206;
  10269. private System.Windows.Forms.Label label207;
  10270. public System.Windows.Forms.Label label208;
  10271. private System.Windows.Forms.Label label209;
  10272. private System.Windows.Forms.Label label210;
  10273. public System.Windows.Forms.Label label211;
  10274. public System.Windows.Forms.Label label212;
  10275. public System.Windows.Forms.Label label213;
  10276. private System.Windows.Forms.Label label214;
  10277. public System.Windows.Forms.Label label215;
  10278. private System.Windows.Forms.Label label216;
  10279. public System.Windows.Forms.Label label217;
  10280. public System.Windows.Forms.Label label218;
  10281. private System.Windows.Forms.Label label219;
  10282. private System.Windows.Forms.Label label220;
  10283. public System.Windows.Forms.PictureBox pictureBox21;
  10284. public System.Windows.Forms.PictureBox pictureBox22;
  10285. private MyConrols.MyPanel myPanel9;
  10286. private System.Windows.Forms.Label label188;
  10287. private System.Windows.Forms.Label label190;
  10288. private System.Windows.Forms.Label label191;
  10289. public System.Windows.Forms.Label label192;
  10290. private System.Windows.Forms.Label label193;
  10291. private System.Windows.Forms.Label label194;
  10292. public System.Windows.Forms.Label label195;
  10293. public System.Windows.Forms.Label label196;
  10294. public System.Windows.Forms.Label label197;
  10295. private System.Windows.Forms.Label label198;
  10296. public System.Windows.Forms.Label label199;
  10297. private System.Windows.Forms.Label label200;
  10298. public System.Windows.Forms.Label label201;
  10299. public System.Windows.Forms.Label label202;
  10300. private System.Windows.Forms.Label label203;
  10301. private System.Windows.Forms.Label label204;
  10302. public System.Windows.Forms.PictureBox pictureBox19;
  10303. public System.Windows.Forms.PictureBox pictureBox20;
  10304. private MyConrols.MyPanel myPanel8;
  10305. private System.Windows.Forms.Label label169;
  10306. private System.Windows.Forms.Label label170;
  10307. private System.Windows.Forms.Label label171;
  10308. public System.Windows.Forms.Label label172;
  10309. private System.Windows.Forms.Label label174;
  10310. private System.Windows.Forms.Label label175;
  10311. public System.Windows.Forms.Label label176;
  10312. public System.Windows.Forms.Label label177;
  10313. public System.Windows.Forms.Label label178;
  10314. private System.Windows.Forms.Label label179;
  10315. public System.Windows.Forms.Label label180;
  10316. private System.Windows.Forms.Label label182;
  10317. public System.Windows.Forms.Label label184;
  10318. public System.Windows.Forms.Label label185;
  10319. private System.Windows.Forms.Label label186;
  10320. private System.Windows.Forms.Label label187;
  10321. public System.Windows.Forms.PictureBox pictureBox16;
  10322. public System.Windows.Forms.PictureBox pictureBox18;
  10323. private MyConrols.MyPanel myPanel7;
  10324. private System.Windows.Forms.Label lblInStatus8;
  10325. private System.Windows.Forms.Label lblOutStatus8;
  10326. private System.Windows.Forms.Label label149;
  10327. public System.Windows.Forms.Label ddjPosTo8;
  10328. public System.Windows.Forms.Label ddjPosFrom8;
  10329. private System.Windows.Forms.Label label152;
  10330. private System.Windows.Forms.Label label153;
  10331. public System.Windows.Forms.Label ddjMode8;
  10332. public System.Windows.Forms.Label ddjOrdId8;
  10333. private System.Windows.Forms.Label label156;
  10334. public System.Windows.Forms.Label ddjOptType8;
  10335. private System.Windows.Forms.Label label158;
  10336. public System.Windows.Forms.Label ddjTotal_KM8;
  10337. private System.Windows.Forms.Label label160;
  10338. public System.Windows.Forms.Label ddjWorkTime8;
  10339. private System.Windows.Forms.Label label162;
  10340. public System.Windows.Forms.Label ddjStatus8;
  10341. public System.Windows.Forms.Label ddjCurrPos8;
  10342. private System.Windows.Forms.Label label165;
  10343. private System.Windows.Forms.Label label166;
  10344. private System.Windows.Forms.Label label167;
  10345. private System.Windows.Forms.Label lblsrm08;
  10346. public System.Windows.Forms.PictureBox G8;
  10347. public System.Windows.Forms.PictureBox pictureBox15;
  10348. private MyConrols.MyPanel myPanel6;
  10349. private System.Windows.Forms.Label lblInStatus7;
  10350. private System.Windows.Forms.Label lblOutStatus7;
  10351. private System.Windows.Forms.Label label103;
  10352. public System.Windows.Forms.Label ddjPosTo7;
  10353. public System.Windows.Forms.Label ddjPosFrom7;
  10354. private System.Windows.Forms.Label label106;
  10355. private System.Windows.Forms.Label label107;
  10356. public System.Windows.Forms.Label ddjMode7;
  10357. public System.Windows.Forms.Label ddjOrdId7;
  10358. private System.Windows.Forms.Label label110;
  10359. public System.Windows.Forms.Label ddjOptType7;
  10360. private System.Windows.Forms.Label label112;
  10361. public System.Windows.Forms.Label ddjTotal_KM7;
  10362. private System.Windows.Forms.Label label114;
  10363. public System.Windows.Forms.Label ddjWorkTime7;
  10364. private System.Windows.Forms.Label label116;
  10365. public System.Windows.Forms.Label ddjStatus7;
  10366. public System.Windows.Forms.Label ddjCurrPos7;
  10367. private System.Windows.Forms.Label label119;
  10368. private System.Windows.Forms.Label label120;
  10369. private System.Windows.Forms.Label label121;
  10370. private System.Windows.Forms.Label lblsrm07;
  10371. public System.Windows.Forms.PictureBox G7;
  10372. public System.Windows.Forms.PictureBox pictureBox9;
  10373. private MyConrols.MyPanel myPanel3;
  10374. private System.Windows.Forms.Label lblInStatus6;
  10375. private System.Windows.Forms.Label lblOutStatus6;
  10376. private System.Windows.Forms.Label label47;
  10377. public System.Windows.Forms.Label ddjPosTo6;
  10378. public System.Windows.Forms.Label ddjPosFrom6;
  10379. private System.Windows.Forms.Label label52;
  10380. private System.Windows.Forms.Label label54;
  10381. public System.Windows.Forms.Label ddjMode6;
  10382. public System.Windows.Forms.Label ddjOrdId6;
  10383. private System.Windows.Forms.Label label62;
  10384. public System.Windows.Forms.Label ddjOptType6;
  10385. private System.Windows.Forms.Label label68;
  10386. public System.Windows.Forms.Label ddjTotal_KM6;
  10387. private System.Windows.Forms.Label label76;
  10388. public System.Windows.Forms.Label ddjWorkTime6;
  10389. private System.Windows.Forms.Label label82;
  10390. public System.Windows.Forms.Label ddjStatus6;
  10391. public System.Windows.Forms.Label ddjCurrPos6;
  10392. private System.Windows.Forms.Label label95;
  10393. private System.Windows.Forms.Label label97;
  10394. private System.Windows.Forms.Label label98;
  10395. private System.Windows.Forms.Label lblsrm06;
  10396. public System.Windows.Forms.PictureBox G6;
  10397. public System.Windows.Forms.PictureBox pictureBox2;
  10398. private MyConrols.MyPanel pnlRGV1089;
  10399. private System.Windows.Forms.Label label7;
  10400. private System.Windows.Forms.Label label8;
  10401. private System.Windows.Forms.Label label9;
  10402. public System.Windows.Forms.Label rgvOptType2;
  10403. private System.Windows.Forms.Label label31;
  10404. private System.Windows.Forms.Label lblRGVWarning1089;
  10405. public System.Windows.Forms.Label rgvPosCurr2;
  10406. public System.Windows.Forms.Label rgvMode2;
  10407. public System.Windows.Forms.Label rgvOrdId2;
  10408. private System.Windows.Forms.Label label50;
  10409. public System.Windows.Forms.Label rgvPosTo2;
  10410. private System.Windows.Forms.Label label53;
  10411. public System.Windows.Forms.Label rgvPosFrom2;
  10412. public System.Windows.Forms.Label rgvStatus2;
  10413. private System.Windows.Forms.Label label63;
  10414. private System.Windows.Forms.Label lblrgv1089;
  10415. public System.Windows.Forms.PictureBox GV2;
  10416. public System.Windows.Forms.PictureBox pictureBox4;
  10417. private MyConrols.MyPanel myPanel2;
  10418. private MyConrols.MyPanel myPanel4;
  10419. private System.Windows.Forms.Label label124;
  10420. private System.Windows.Forms.Label label125;
  10421. public System.Windows.Forms.Label label126;
  10422. private System.Windows.Forms.Label label127;
  10423. private System.Windows.Forms.Label label128;
  10424. public System.Windows.Forms.Label label129;
  10425. public System.Windows.Forms.Label label130;
  10426. private System.Windows.Forms.Label label131;
  10427. private System.Windows.Forms.Label label132;
  10428. public System.Windows.Forms.Label label133;
  10429. public System.Windows.Forms.Label label134;
  10430. private System.Windows.Forms.Label label135;
  10431. public System.Windows.Forms.Label label136;
  10432. private System.Windows.Forms.Label label138;
  10433. public System.Windows.Forms.Label label140;
  10434. private System.Windows.Forms.Label label141;
  10435. public System.Windows.Forms.Label label142;
  10436. public System.Windows.Forms.Label label143;
  10437. private System.Windows.Forms.Label label144;
  10438. private System.Windows.Forms.Label label145;
  10439. private System.Windows.Forms.Label label146;
  10440. private System.Windows.Forms.Label label147;
  10441. public System.Windows.Forms.PictureBox pictureBox11;
  10442. public System.Windows.Forms.PictureBox pictureBox12;
  10443. public System.Windows.Forms.Label rgvOptType1;
  10444. private System.Windows.Forms.Label label23;
  10445. private System.Windows.Forms.Label lblRGVWarning1444;
  10446. public System.Windows.Forms.Label rgvPosCurr1;
  10447. private System.Windows.Forms.Label label45;
  10448. public System.Windows.Forms.Label rgvMode1;
  10449. public System.Windows.Forms.Label rgvOrdId1;
  10450. private System.Windows.Forms.Label label58;
  10451. public System.Windows.Forms.Label rgvPosTo1;
  10452. private System.Windows.Forms.Label label69;
  10453. public System.Windows.Forms.Label rgvPosFrom1;
  10454. private System.Windows.Forms.Label label73;
  10455. public System.Windows.Forms.Label rgvStatus1;
  10456. private System.Windows.Forms.Label label80;
  10457. private System.Windows.Forms.Label label92;
  10458. private System.Windows.Forms.Label lblrgv1444;
  10459. public System.Windows.Forms.PictureBox GV1;
  10460. public System.Windows.Forms.PictureBox pictureBox5;
  10461. private From.MyTableLayoutPanel myTableLayoutPanel1;
  10462. private From.From_Montior.Conveyor_R con2282;
  10463. private From.From_Montior.Conveyor_R con2279;
  10464. private From.From_Montior.Conveyor_R con2058;
  10465. private From.From_Montior.Conveyor_R con2053;
  10466. private From.From_Montior.Conveyor_R con2051;
  10467. private From.From_Montior.Conveyor_R con2039;
  10468. private From.From_Montior.Conveyor_R con2034;
  10469. private From.From_Montior.Conveyor_R con2028;
  10470. private From.From_Montior.Conveyor_R con2027;
  10471. private From.From_Montior.Conveyor_R con2022;
  10472. private From.From_Montior.Conveyor_R con2021;
  10473. private From.TableCellLabel tableCellLabel1;
  10474. private From.TableCellLabel tableCellLabel3;
  10475. private From.From_Montior.Conveyor3_A con2173;
  10476. private From.From_Montior.Conveyor_R con2147;
  10477. private From.From_Montior.Conveyor_R con2146;
  10478. private From.From_Montior.Conveyor_R con2148;
  10479. private From.From_Montior.Conveyor_R con2150;
  10480. private From.From_Montior.Conveyor_R con2161;
  10481. private From.From_Montior.Conveyor_R con2104;
  10482. private From.From_Montior.Conveyor_R con2102;
  10483. private From.From_Montior.Conveyor_R con2101;
  10484. private From.From_Montior.Conveyor_R con2103;
  10485. private From.From_Montior.Conveyor_R con2108;
  10486. private From.From_Montior.Conveyor_R con2107;
  10487. private From.From_Montior.Conveyor_R con2106;
  10488. private From.From_Montior.Conveyor_R con2105;
  10489. private From.From_Montior.Conveyor_R con2060;
  10490. private From.From_Montior.Conveyor_R con2079;
  10491. private From.From_Montior.Conveyor_R con2075;
  10492. private From.From_Montior.Conveyor_R con2080;
  10493. private From.From_Montior.Conveyor_R con2074;
  10494. private From.From_Montior.Conveyor_R con2078;
  10495. private From.From_Montior.Conveyor_R con2077;
  10496. private From.From_Montior.Conveyor_R con2325;
  10497. private From.From_Montior.Conveyor_R con2073;
  10498. private From.From_Montior.Conveyor_R con2071;
  10499. private From.From_Montior.Conveyor_R con2072;
  10500. private From.From_Montior.Conveyor_R con2076;
  10501. private From.From_Montior.Conveyor_R con2355;
  10502. private From.From_Montior.Conveyor_R con2037;
  10503. private From.From_Montior.Conveyor_R con2044;
  10504. private From.From_Montior.Conveyor_R con2046;
  10505. private From.From_Montior.Conveyor_R con2031;
  10506. private From.From_Montior.Conveyor_R con2029;
  10507. private From.From_Montior.Conveyor_R con2036;
  10508. private From.From_Montior.Conveyor_R con2017;
  10509. private From.From_Montior.Conveyor_R con2019;
  10510. private From.From_Montior.Conveyor_R con2024;
  10511. private From.From_Montior.Conveyor_R con2324;
  10512. private From.From_Montior.Conveyor_R con2353;
  10513. private From.From_Montior.Conveyor_R con2016;
  10514. private From.From_Montior.LocationPos locationPos37;
  10515. private From.From_Montior.Conveyor_R con2011;
  10516. private From.From_Montior.Conveyor_L con2302;
  10517. private System.Windows.Forms.Label label33;
  10518. private From.TableCellLabel tableCellLabel31;
  10519. private From.From_Montior.LocationPos locationPos38;
  10520. private From.From_Montior.LocationPos locationPos49;
  10521. private From.From_Montior.LocationPos locationPos53;
  10522. private From.From_Montior.srm srm15;
  10523. private From.From_Montior.LocationPos locationPos55;
  10524. private From.From_Montior.Conveyor_R con2308;
  10525. private From.From_Montior.Conveyor_R con2280;
  10526. private From.From_Montior.Conveyor_R con2035;
  10527. private From.From_Montior.srm srm14;
  10528. private From.From_Montior.LocationPos locationPos48;
  10529. private From.From_Montior.LocationPos locationPos36;
  10530. private From.From_Montior.Conveyor_R con2042;
  10531. private From.From_Montior.Conveyor_R con2041;
  10532. private From.TableCellLabel tableCellLabel30;
  10533. private From.From_Montior.LocationPos locationPos47;
  10534. private From.From_Montior.Conveyor_R con2277;
  10535. private From.From_Montior.Conveyor_R con2049;
  10536. private From.From_Montior.Conveyor_R con2050;
  10537. private From.From_Montior.LocationPos locationPos45;
  10538. private From.From_Montior.Conveyor_R con2281;
  10539. private From.From_Montior.srm srm13;
  10540. private From.From_Montior.LocationPos locationPos46;
  10541. private From.From_Montior.Conveyor_R con2276;
  10542. private From.From_Montior.Conveyor_R con2056;
  10543. private From.From_Montior.LocationPos locationPos42;
  10544. private From.From_Montior.Conveyor_R con2057;
  10545. private From.From_Montior.Conveyor_R con2275;
  10546. private From.TableCellLabel tableCellLabel29;
  10547. private From.From_Montior.LocationPos locationPos54;
  10548. private From.From_Montior.Conveyor_R con2062;
  10549. private From.From_Montior.Conveyor3_A con2263;
  10550. private From.From_Montior.Conveyor3_A con2201;
  10551. private From.From_Montior.Conveyor_R con2364;
  10552. private From.From_Montior.Conveyor_R con2362;
  10553. private From.From_Montior.Conveyor3_A con2360;
  10554. private From.From_Montior.Conveyor con2359;
  10555. private From.From_Montior.Conveyor con2135;
  10556. private From.From_Montior.Conveyor_L con2138;
  10557. private From.From_Montior.Conveyor_L con2116;
  10558. private From.From_Montior.Conveyor_L con2117;
  10559. private From.From_Montior.Conveyor_L con2328;
  10560. private From.TableCellLabel tableCellLabel2;
  10561. private From.From_Montior.Conveyor_R con2307;
  10562. private From.From_Montior.Conveyor_R con2003;
  10563. private From.From_Montior.Conveyor3_B con2312;
  10564. private From.From_Montior.Conveyor3_B con2313;
  10565. private From.From_Montior.Conveyor3_B con2314;
  10566. private From.From_Montior.Conveyor3_B con2315;
  10567. private From.From_Montior.Conveyor3_B con2316;
  10568. private From.From_Montior.LocationPos locationPos1;
  10569. private From.From_Montior.LocationPos locationPos2;
  10570. private From.From_Montior.LocationPos locationPos3;
  10571. private From.From_Montior.LocationPos locationPos4;
  10572. private From.TableCellLabel tableCellLabel5;
  10573. private From.TableCellLabel tableCellLabel6;
  10574. private From.From_Montior.Conveyor_L conveyor_L1;
  10575. private From.From_Montior.Conveyor_L conveyor_L2;
  10576. private From.From_Montior.Conveyor3_B conveyor3_B1;
  10577. private From.From_Montior.Conveyor_L conveyor_L3;
  10578. private From.From_Montior.Conveyor conveyor1;
  10579. private From.From_Montior.Conveyor_R conveyor_R1;
  10580. private From.From_Montior.Conveyor3_A conveyor3_A1;
  10581. private From.From_Montior.Conveyor_R conveyor_R2;
  10582. private From.From_Montior.Conveyor conveyor4;
  10583. private From.From_Montior.Conveyor_L conveyor_L4;
  10584. private From.From_Montior.Conveyor3_B conveyor3_B2;
  10585. private From.From_Montior.Conveyor_L conveyor_L5;
  10586. private From.From_Montior.Conveyor conveyor5;
  10587. private From.From_Montior.Conveyor3_A conveyor3_A2;
  10588. private From.From_Montior.Conveyor_R conveyor_R3;
  10589. private From.From_Montior.Conveyor conveyor6;
  10590. private From.From_Montior.Conveyor_L conveyor_L6;
  10591. private From.From_Montior.Conveyor3_B conveyor3_B3;
  10592. private From.From_Montior.Conveyor_L conveyor_L7;
  10593. private From.From_Montior.Conveyor conveyor7;
  10594. private From.From_Montior.Conveyor_R conveyor_R4;
  10595. private From.From_Montior.Conveyor_R conveyor_R5;
  10596. private From.From_Montior.Conveyor conveyor8;
  10597. private From.From_Montior.Conveyor_L conveyor_L8;
  10598. private From.From_Montior.Conveyor_R conveyor_R6;
  10599. private From.From_Montior.Conveyor conveyor9;
  10600. private From.From_Montior.Conveyor3_A conveyor3_A3;
  10601. private From.From_Montior.Conveyor3_B conveyor3_B4;
  10602. private From.From_Montior.Conveyor3_A conveyor3_A4;
  10603. private From.From_Montior.Conveyor conveyor10;
  10604. private From.From_Montior.Conveyor conveyor11;
  10605. private From.From_Montior.Conveyor conveyor12;
  10606. private From.From_Montior.Conveyor conveyor13;
  10607. private From.From_Montior.Conveyor conveyor14;
  10608. private From.From_Montior.Conveyor conveyor15;
  10609. private From.From_Montior.TableCellLabel2 tableCellLabel21;
  10610. private From.From_Montior.TableCellLabel2 tableCellLabel23;
  10611. private From.From_Montior.TableCellLabel2 tableCellLabel24;
  10612. private From.From_Montior.TableCellLabel2 tableCellLabel25;
  10613. private From.From_Montior.TableCellLabel2 tableCellLabel22;
  10614. private From.From_Montior.TableCellLabel2 tableCellLabel26;
  10615. private From.From_Montior.TableCellLabel2 tableCellLabel27;
  10616. private From.From_Montior.TableCellLabel2 tableCellLabel28;
  10617. private From.From_Montior.Conveyor3_B conveyor3_B5;
  10618. private From.From_Montior.Conveyor3_B conveyor3_B6;
  10619. private From.From_Montior.Conveyor3_B conveyor3_B7;
  10620. private From.From_Montior.Conveyor3_B conveyor3_B8;
  10621. private From.From_Montior.Conveyor3_B conveyor3_B9;
  10622. private From.From_Montior.Conveyor3_B conveyor3_B10;
  10623. private From.From_Montior.Conveyor3_B conveyor3_B11;
  10624. private From.From_Montior.Conveyor3_B conveyor3_B12;
  10625. private From.From_Montior.Conveyor3_B conveyor3_B13;
  10626. private From.From_Montior.Conveyor3_B conveyor3_B14;
  10627. private System.Windows.Forms.Label label1;
  10628. private System.Windows.Forms.Label lable4;
  10629. private From.From_Montior.Conveyor3_B conveyor3_B15;
  10630. private From.From_Montior.Conveyor3_B conveyor3_B16;
  10631. private From.From_Montior.Conveyor3_B conveyor3_B17;
  10632. private From.From_Montior.Conveyor3_B conveyor3_B18;
  10633. }
  10634. }