Frm_YongGuanMontior.Designer.cs 516 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176
  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.con2281 = new WCS_Client.From.From_Montior.Conveyor_R();
  33. this.con2282 = new WCS_Client.From.From_Montior.Conveyor_R();
  34. this.con2010 = new WCS_Client.From.From_Montior.Conveyor_R();
  35. this.con2014 = new WCS_Client.From.From_Montior.Conveyor_R();
  36. this.con2083 = new WCS_Client.From.From_Montior.Conveyor_R();
  37. this.con2137 = new WCS_Client.From.From_Montior.Conveyor_L();
  38. this.con2125 = new WCS_Client.From.From_Montior.Conveyor_L();
  39. this.con2116 = new WCS_Client.From.From_Montior.Conveyor_L();
  40. this.con2275 = new WCS_Client.From.From_Montior.Conveyor_R();
  41. this.con2276 = new WCS_Client.From.From_Montior.Conveyor_R();
  42. this.con2277 = new WCS_Client.From.From_Montior.Conveyor_R();
  43. this.con2278 = new WCS_Client.From.From_Montior.Conveyor_R();
  44. this.con2279 = new WCS_Client.From.From_Montior.Conveyor_R();
  45. this.con2280 = new WCS_Client.From.From_Montior.Conveyor_R();
  46. this.con2202 = new WCS_Client.From.From_Montior.Conveyor3_A();
  47. this.con2062 = new WCS_Client.From.From_Montior.Conveyor_R();
  48. this.con2058 = new WCS_Client.From.From_Montior.Conveyor_R();
  49. this.con2053 = new WCS_Client.From.From_Montior.Conveyor_R();
  50. this.con2057 = new WCS_Client.From.From_Montior.Conveyor_R();
  51. this.con2055 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  52. this.tableCellLabel17 = new WCS_Client.From.TableCellLabel();
  53. this.tableCellLabel18 = new WCS_Client.From.TableCellLabel();
  54. this.con2056 = new WCS_Client.From.From_Montior.Conveyor_R();
  55. this.con2051 = new WCS_Client.From.From_Montior.Conveyor_R();
  56. this.con2050 = new WCS_Client.From.From_Montior.Conveyor_R();
  57. this.con2048 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  58. this.tableCellLabel14 = new WCS_Client.From.TableCellLabel();
  59. this.tableCellLabel16 = new WCS_Client.From.TableCellLabel();
  60. this.con2049 = new WCS_Client.From.From_Montior.Conveyor_R();
  61. this.con2041 = new WCS_Client.From.From_Montior.Conveyor_R();
  62. this.con2039 = new WCS_Client.From.From_Montior.Conveyor_R();
  63. this.con2042 = new WCS_Client.From.From_Montior.Conveyor_R();
  64. this.con2035 = new WCS_Client.From.From_Montior.Conveyor_R();
  65. this.con2033 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  66. this.tableCellLabel12 = new WCS_Client.From.TableCellLabel();
  67. this.tableCellLabel13 = new WCS_Client.From.TableCellLabel();
  68. this.con2034 = new WCS_Client.From.From_Montior.Conveyor_R();
  69. this.con2028 = new WCS_Client.From.From_Montior.Conveyor_R();
  70. this.con2026 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  71. this.tableCellLabel10 = new WCS_Client.From.TableCellLabel();
  72. this.tableCellLabel11 = new WCS_Client.From.TableCellLabel();
  73. this.con2027 = new WCS_Client.From.From_Montior.Conveyor_R();
  74. this.con2022 = new WCS_Client.From.From_Montior.Conveyor_R();
  75. this.con2021 = new WCS_Client.From.From_Montior.Conveyor_R();
  76. this.con2309 = new WCS_Client.From.From_Montior.Conveyor3_A();
  77. this.con2310 = new WCS_Client.From.From_Montior.Conveyor3_A();
  78. this.con2261 = new WCS_Client.From.From_Montior.Conveyor3_A();
  79. this.con2262 = new WCS_Client.From.From_Montior.Conveyor3_A();
  80. this.con2260 = new WCS_Client.From.From_Montior.Conveyor3_A();
  81. this.con2259 = new WCS_Client.From.From_Montior.Conveyor3_A();
  82. this.conveyor3_A17 = new WCS_Client.From.From_Montior.Conveyor3_A();
  83. this.con2263 = new WCS_Client.From.From_Montior.Conveyor3_A();
  84. this.con2264 = new WCS_Client.From.From_Montior.Conveyor3_A();
  85. this.con2265 = new WCS_Client.From.From_Montior.Conveyor3_A();
  86. this.tableCellLabel23 = new WCS_Client.From.TableCellLabel();
  87. this.tableCellLabel24 = new WCS_Client.From.TableCellLabel();
  88. this.conrgv1 = new WCS_Client.From.From_Montior.Conveyor6();
  89. this.con2256 = new WCS_Client.From.From_Montior.Conveyor3_B();
  90. this.con2252 = new WCS_Client.From.From_Montior.Conveyor3_A();
  91. this.con2253 = new WCS_Client.From.From_Montior.Conveyor3_B();
  92. this.con2254 = new WCS_Client.From.From_Montior.Conveyor3_A();
  93. this.con2251 = new WCS_Client.From.From_Montior.Conveyor3_B();
  94. this.con2255 = new WCS_Client.From.From_Montior.Conveyor3_A();
  95. this.con2198 = new WCS_Client.From.From_Montior.Conveyor3_A();
  96. this.con2192 = new WCS_Client.From.From_Montior.Conveyor3_A();
  97. this.con2195 = new WCS_Client.From.From_Montior.Conveyor3_A();
  98. this.con2201 = new WCS_Client.From.From_Montior.Conveyor3_A();
  99. this.con2203 = new WCS_Client.From.From_Montior.Conveyor3_A();
  100. this.con2206 = new WCS_Client.From.From_Montior.Conveyor3_A();
  101. this.con2204 = new WCS_Client.From.From_Montior.Conveyor3_A();
  102. this.con2205 = new WCS_Client.From.From_Montior.Conveyor3_A();
  103. this.con2153 = new WCS_Client.From.From_Montior.Conveyor3_A();
  104. this.con2207 = new WCS_Client.From.From_Montior.Conveyor3_A();
  105. this.con2208 = new WCS_Client.From.From_Montior.Conveyor3_A();
  106. this.con2209 = new WCS_Client.From.From_Montior.Conveyor3_A();
  107. this.conrgv3 = new WCS_Client.From.From_Montior.Conveyor6();
  108. this.tableCellLabel1 = new WCS_Client.From.TableCellLabel();
  109. this.tableCellLabel2 = new WCS_Client.From.TableCellLabel();
  110. this.con2187 = new WCS_Client.From.From_Montior.Conveyor3_A();
  111. this.con2182 = new WCS_Client.From.From_Montior.Conveyor3_A();
  112. this.con2181 = new WCS_Client.From.From_Montior.Conveyor3_A();
  113. this.con2180 = new WCS_Client.From.From_Montior.Conveyor3_A();
  114. this.con2271 = new WCS_Client.From.From_Montior.Conveyor3_A();
  115. this.con2211 = new WCS_Client.From.From_Montior.Conveyor3_A();
  116. this.con2152 = new WCS_Client.From.From_Montior.Conveyor3_A();
  117. this.con2210 = new WCS_Client.From.From_Montior.Conveyor3_A();
  118. this.tableCellLabel3 = new WCS_Client.From.TableCellLabel();
  119. this.tableCellLabel4 = new WCS_Client.From.TableCellLabel();
  120. this.conrgv2 = new WCS_Client.From.From_Montior.Conveyor6();
  121. this.tableCellLabel6 = new WCS_Client.From.TableCellLabel();
  122. this.tableCellLabel8 = new WCS_Client.From.TableCellLabel();
  123. this.con2172 = new WCS_Client.From.From_Montior.Conveyor3_B();
  124. this.con2173 = new WCS_Client.From.From_Montior.Conveyor3_A();
  125. this.con2174 = new WCS_Client.From.From_Montior.Conveyor3_B();
  126. this.con2175 = new WCS_Client.From.From_Montior.Conveyor3_A();
  127. this.con2176 = new WCS_Client.From.From_Montior.Conveyor3_B();
  128. this.con2177 = new WCS_Client.From.From_Montior.Conveyor3_A();
  129. this.con2147 = new WCS_Client.From.From_Montior.Conveyor_R();
  130. this.con2146 = new WCS_Client.From.From_Montior.Conveyor_R();
  131. this.con2148 = new WCS_Client.From.From_Montior.Conveyor_R();
  132. this.con2144 = new WCS_Client.From.From_Montior.Conveyor_R();
  133. this.con2145 = new WCS_Client.From.From_Montior.Conveyor_R();
  134. this.con2150 = new WCS_Client.From.From_Montior.Conveyor_R();
  135. this.con2161 = new WCS_Client.From.From_Montior.Conveyor_R();
  136. this.con2378 = new WCS_Client.From.From_Montior.Conveyor3_A();
  137. this.con2384 = new WCS_Client.From.From_Montior.Conveyor3_A();
  138. this.con2381 = new WCS_Client.From.From_Montior.Conveyor3_A();
  139. this.con2380 = new WCS_Client.From.From_Montior.Conveyor3_A();
  140. this.con2379 = new WCS_Client.From.From_Montior.Conveyor3_A();
  141. this.con2141 = new WCS_Client.From.From_Montior.Conveyor_L();
  142. this.con2274 = new WCS_Client.From.From_Montior.Conveyor_L();
  143. this.con2140 = new WCS_Client.From.From_Montior.Conveyor3_B();
  144. this.con2143 = new WCS_Client.From.From_Montior.Conveyor3_B();
  145. this.label1 = new System.Windows.Forms.Label();
  146. this.con2138 = new WCS_Client.From.From_Montior.Conveyor_L();
  147. this.con2326 = new WCS_Client.From.From_Montior.Conveyor_L();
  148. this.con2135 = new WCS_Client.From.From_Montior.Conveyor();
  149. this.con2273 = new WCS_Client.From.From_Montior.Conveyor3_B();
  150. this.con2129 = new WCS_Client.From.From_Montior.Conveyor3_B();
  151. this.con2128 = new WCS_Client.From.From_Montior.Conveyor3_B();
  152. this.con2131 = new WCS_Client.From.From_Montior.Conveyor3_B();
  153. this.label4 = new System.Windows.Forms.Label();
  154. this.con2126 = new WCS_Client.From.From_Montior.Conveyor_L();
  155. this.con2327 = new WCS_Client.From.From_Montior.Conveyor_L();
  156. this.con2123 = new WCS_Client.From.From_Montior.Conveyor();
  157. this.con2377 = new WCS_Client.From.From_Montior.Conveyor3_A();
  158. this.con2374 = new WCS_Client.From.From_Montior.Conveyor3_A();
  159. this.con2385 = new WCS_Client.From.From_Montior.Conveyor3_A();
  160. this.con2386 = new WCS_Client.From.From_Montior.Conveyor3_A();
  161. this.con2375 = new WCS_Client.From.From_Montior.Conveyor3_A();
  162. this.con2376 = new WCS_Client.From.From_Montior.Conveyor3_A();
  163. this.con2382 = new WCS_Client.From.From_Montior.Conveyor3_A();
  164. this.con2387 = new WCS_Client.From.From_Montior.Conveyor3_A();
  165. this.con2372 = new WCS_Client.From.From_Montior.Conveyor3_A();
  166. this.con2370 = new WCS_Client.From.From_Montior.Conveyor3_A();
  167. this.con2371 = new WCS_Client.From.From_Montior.Conveyor3_A();
  168. this.con2388 = new WCS_Client.From.From_Montior.Conveyor3_A();
  169. this.con2368 = new WCS_Client.From.From_Montior.Conveyor3_A();
  170. this.con2369 = new WCS_Client.From.From_Montior.Conveyor3_A();
  171. this.con2365 = new WCS_Client.From.From_Montior.Conveyor3_A();
  172. this.con2366 = new WCS_Client.From.From_Montior.Conveyor3_A();
  173. this.con2364 = new WCS_Client.From.From_Montior.Conveyor_R();
  174. this.con2362 = new WCS_Client.From.From_Montior.Conveyor_R();
  175. this.con2120 = new WCS_Client.From.From_Montior.Conveyor3_B();
  176. this.con2119 = new WCS_Client.From.From_Montior.Conveyor3_B();
  177. this.con2122 = new WCS_Client.From.From_Montior.Conveyor3_B();
  178. this.con2272 = new WCS_Client.From.From_Montior.Conveyor3_B();
  179. this.tableCellLabel9 = new WCS_Client.From.TableCellLabel();
  180. this.con2104 = new WCS_Client.From.From_Montior.Conveyor_R();
  181. this.con2102 = new WCS_Client.From.From_Montior.Conveyor_R();
  182. this.con2101 = new WCS_Client.From.From_Montior.Conveyor_R();
  183. this.con2103 = new WCS_Client.From.From_Montior.Conveyor_R();
  184. this.con2108 = new WCS_Client.From.From_Montior.Conveyor_R();
  185. this.con2107 = new WCS_Client.From.From_Montior.Conveyor_R();
  186. this.con2106 = new WCS_Client.From.From_Montior.Conveyor_R();
  187. this.con2105 = new WCS_Client.From.From_Montior.Conveyor_R();
  188. this.con2060 = new WCS_Client.From.From_Montior.Conveyor_R();
  189. this.con2079 = new WCS_Client.From.From_Montior.Conveyor_R();
  190. this.con2075 = new WCS_Client.From.From_Montior.Conveyor_R();
  191. this.con2080 = new WCS_Client.From.From_Montior.Conveyor_R();
  192. this.con2074 = new WCS_Client.From.From_Montior.Conveyor_R();
  193. this.con2078 = new WCS_Client.From.From_Montior.Conveyor_R();
  194. this.con2077 = new WCS_Client.From.From_Montior.Conveyor_R();
  195. this.con2325 = new WCS_Client.From.From_Montior.Conveyor_R();
  196. this.con2073 = new WCS_Client.From.From_Montior.Conveyor_R();
  197. this.con2071 = new WCS_Client.From.From_Montior.Conveyor_R();
  198. this.con2072 = new WCS_Client.From.From_Montior.Conveyor_R();
  199. this.con2076 = new WCS_Client.From.From_Montior.Conveyor_R();
  200. this.con2355 = new WCS_Client.From.From_Montior.Conveyor_R();
  201. this.con2037 = new WCS_Client.From.From_Montior.Conveyor_R();
  202. this.con2044 = new WCS_Client.From.From_Montior.Conveyor_R();
  203. this.con2046 = new WCS_Client.From.From_Montior.Conveyor_R();
  204. this.con2031 = new WCS_Client.From.From_Montior.Conveyor_R();
  205. this.con2029 = new WCS_Client.From.From_Montior.Conveyor_R();
  206. this.con2036 = new WCS_Client.From.From_Montior.Conveyor_R();
  207. this.con2017 = new WCS_Client.From.From_Montior.Conveyor_R();
  208. this.con2019 = new WCS_Client.From.From_Montior.Conveyor_R();
  209. this.con2024 = new WCS_Client.From.From_Montior.Conveyor_R();
  210. this.con2324 = new WCS_Client.From.From_Montior.Conveyor_R();
  211. this.con2353 = new WCS_Client.From.From_Montior.Conveyor_R();
  212. this.con2016 = new WCS_Client.From.From_Montior.Conveyor_R();
  213. this.locationPos35 = new WCS_Client.From.From_Montior.LocationPos();
  214. this.tableCellLabel15 = new WCS_Client.From.TableCellLabel();
  215. this.tableCellLabel29 = new WCS_Client.From.TableCellLabel();
  216. this.tableCellLabel30 = new WCS_Client.From.TableCellLabel();
  217. this.locationPos36 = new WCS_Client.From.From_Montior.LocationPos();
  218. this.locationPos37 = new WCS_Client.From.From_Montior.LocationPos();
  219. this.con2084 = new WCS_Client.From.From_Montior.Conveyor3_A();
  220. this.con2086 = new WCS_Client.From.From_Montior.Conveyor3_A();
  221. this.con2081 = new WCS_Client.From.From_Montior.Conveyor_R();
  222. this.con2088 = new WCS_Client.From.From_Montior.Conveyor_R();
  223. this.label6 = new System.Windows.Forms.Label();
  224. this.con2015 = new WCS_Client.From.From_Montior.Conveyor_R();
  225. this.con2012 = new WCS_Client.From.From_Montior.Conveyor_R();
  226. this.label12 = new System.Windows.Forms.Label();
  227. this.con2008 = new WCS_Client.From.From_Montior.Conveyor_R();
  228. this.con2011 = new WCS_Client.From.From_Montior.Conveyor_R();
  229. this.label28 = new System.Windows.Forms.Label();
  230. this.con2323 = new WCS_Client.From.From_Montior.Conveyor_L();
  231. this.con2322 = new WCS_Client.From.From_Montior.Conveyor_L();
  232. this.con2311 = new WCS_Client.From.From_Montior.Conveyor3_B();
  233. this.con2317 = new WCS_Client.From.From_Montior.Conveyor3_B();
  234. this.con2315 = new WCS_Client.From.From_Montior.Conveyor3_B();
  235. this.conv2314 = new WCS_Client.From.From_Montior.Conveyor3_B();
  236. this.con2312 = new WCS_Client.From.From_Montior.Conveyor3_B();
  237. this.con2313 = new WCS_Client.From.From_Montior.Conveyor3_B();
  238. this.con2316 = new WCS_Client.From.From_Montior.Conveyor3_B();
  239. this.con2319 = new WCS_Client.From.From_Montior.Conveyor3_B();
  240. this.con2320 = new WCS_Client.From.From_Montior.Conveyor3_B();
  241. this.con2318 = new WCS_Client.From.From_Montior.Conveyor3_B();
  242. this.con2005 = new WCS_Client.From.From_Montior.Conveyor_L();
  243. this.con2302 = new WCS_Client.From.From_Montior.Conveyor_L();
  244. this.con2004 = new WCS_Client.From.From_Montior.Conveyor_L();
  245. this.label33 = new System.Windows.Forms.Label();
  246. this.con2304 = new WCS_Client.From.From_Montior.Conveyor_R();
  247. this.con2003 = new WCS_Client.From.From_Montior.Conveyor_R();
  248. this.con2308 = new WCS_Client.From.From_Montior.Conveyor_R();
  249. this.con2307 = new WCS_Client.From.From_Montior.Conveyor_R();
  250. this.con2305 = new WCS_Client.From.From_Montior.Conveyor_R();
  251. this.label34 = new System.Windows.Forms.Label();
  252. this.tableCellLabel31 = new WCS_Client.From.TableCellLabel();
  253. this.locationPos38 = new WCS_Client.From.From_Montior.LocationPos();
  254. this.locationPos39 = new WCS_Client.From.From_Montior.LocationPos();
  255. this.locationPos40 = new WCS_Client.From.From_Montior.LocationPos();
  256. this.locationPos41 = new WCS_Client.From.From_Montior.LocationPos();
  257. this.srm11 = new WCS_Client.From.From_Montior.srm();
  258. this.con2328 = new WCS_Client.From.From_Montior.Conveyor_L();
  259. this.con2117 = new WCS_Client.From.From_Montior.Conveyor_L();
  260. this.locationPos42 = new WCS_Client.From.From_Montior.LocationPos();
  261. this.locationPos43 = new WCS_Client.From.From_Montior.LocationPos();
  262. this.srm12 = new WCS_Client.From.From_Montior.srm();
  263. this.locationPos44 = new WCS_Client.From.From_Montior.LocationPos();
  264. this.locationPos45 = new WCS_Client.From.From_Montior.LocationPos();
  265. this.locationPos46 = new WCS_Client.From.From_Montior.LocationPos();
  266. this.locationPos47 = new WCS_Client.From.From_Montior.LocationPos();
  267. this.srm13 = new WCS_Client.From.From_Montior.srm();
  268. this.locationPos48 = new WCS_Client.From.From_Montior.LocationPos();
  269. this.locationPos49 = new WCS_Client.From.From_Montior.LocationPos();
  270. this.srm14 = new WCS_Client.From.From_Montior.srm();
  271. this.locationPos53 = new WCS_Client.From.From_Montior.LocationPos();
  272. this.locationPos54 = new WCS_Client.From.From_Montior.LocationPos();
  273. this.srm15 = new WCS_Client.From.From_Montior.srm();
  274. this.locationPos55 = new WCS_Client.From.From_Montior.LocationPos();
  275. this.con2114 = new WCS_Client.From.From_Montior.Conveyor();
  276. this.conrgv4 = new WCS_Client.From.From_Montior.Conveyor5();
  277. this.con2359 = new WCS_Client.From.From_Montior.Conveyor();
  278. this.con2360 = new WCS_Client.From.From_Montior.Conveyor3_A();
  279. this.tableCellLabel32 = new WCS_Client.From.TableCellLabel();
  280. this.tableCellLabel33 = new WCS_Client.From.TableCellLabel();
  281. this.tableCellLabel34 = new WCS_Client.From.TableCellLabel();
  282. this.conrgv5 = new WCS_Client.From.From_Montior.Conveyor5();
  283. this.pnlDDJ1 = new MyConrols.MyPanel();
  284. this.lblInStatus1 = new System.Windows.Forms.Label();
  285. this.lblOutStatus1 = new System.Windows.Forms.Label();
  286. this.lblDDJWarning1 = new System.Windows.Forms.Label();
  287. this.ddjPosTo1 = new System.Windows.Forms.Label();
  288. this.ddjPosFrom1 = new System.Windows.Forms.Label();
  289. this.label84 = new System.Windows.Forms.Label();
  290. this.label85 = new System.Windows.Forms.Label();
  291. this.ddjMode1 = new System.Windows.Forms.Label();
  292. this.ddjOrdId1 = new System.Windows.Forms.Label();
  293. this.label137 = new System.Windows.Forms.Label();
  294. this.ddjOptType1 = new System.Windows.Forms.Label();
  295. this.label139 = new System.Windows.Forms.Label();
  296. this.ddjTotal_KM1 = new System.Windows.Forms.Label();
  297. this.label13 = new System.Windows.Forms.Label();
  298. this.ddjWorkTime1 = new System.Windows.Forms.Label();
  299. this.label10 = new System.Windows.Forms.Label();
  300. this.ddjStatus1 = new System.Windows.Forms.Label();
  301. this.ddjPosCurr1 = new System.Windows.Forms.Label();
  302. this.label5 = new System.Windows.Forms.Label();
  303. this.label3 = new System.Windows.Forms.Label();
  304. this.label2 = new System.Windows.Forms.Label();
  305. this.lblsrm01 = new System.Windows.Forms.Label();
  306. this.G1 = new System.Windows.Forms.PictureBox();
  307. this.R1 = new System.Windows.Forms.PictureBox();
  308. this.pnlDDJ2 = new MyConrols.MyPanel();
  309. this.lblInStatus2 = new System.Windows.Forms.Label();
  310. this.lblOutStatus2 = new System.Windows.Forms.Label();
  311. this.lblDDJWarning2 = new System.Windows.Forms.Label();
  312. this.ddjPosTo2 = new System.Windows.Forms.Label();
  313. this.ddjPosFrom2 = new System.Windows.Forms.Label();
  314. this.label15 = new System.Windows.Forms.Label();
  315. this.label16 = new System.Windows.Forms.Label();
  316. this.ddjMode2 = new System.Windows.Forms.Label();
  317. this.ddjOrdId2 = new System.Windows.Forms.Label();
  318. this.label22 = new System.Windows.Forms.Label();
  319. this.ddjOptType2 = new System.Windows.Forms.Label();
  320. this.label26 = new System.Windows.Forms.Label();
  321. this.ddjTotal_KM2 = new System.Windows.Forms.Label();
  322. this.label29 = new System.Windows.Forms.Label();
  323. this.ddjWorkTime2 = new System.Windows.Forms.Label();
  324. this.label32 = new System.Windows.Forms.Label();
  325. this.ddjStatus2 = new System.Windows.Forms.Label();
  326. this.ddjPosCurr2 = new System.Windows.Forms.Label();
  327. this.label83 = new System.Windows.Forms.Label();
  328. this.label86 = new System.Windows.Forms.Label();
  329. this.label87 = new System.Windows.Forms.Label();
  330. this.lblsrm02 = new System.Windows.Forms.Label();
  331. this.G2 = new System.Windows.Forms.PictureBox();
  332. this.pictureBox6 = new System.Windows.Forms.PictureBox();
  333. this.pnlDDJ3 = new MyConrols.MyPanel();
  334. this.lblInStatus3 = new System.Windows.Forms.Label();
  335. this.lblOutStatus3 = new System.Windows.Forms.Label();
  336. this.lblDDJWarning3 = new System.Windows.Forms.Label();
  337. this.ddjPosTo3 = new System.Windows.Forms.Label();
  338. this.ddjPosFrom3 = new System.Windows.Forms.Label();
  339. this.label43 = new System.Windows.Forms.Label();
  340. this.label51 = new System.Windows.Forms.Label();
  341. this.ddjMode3 = new System.Windows.Forms.Label();
  342. this.ddjOrdId3 = new System.Windows.Forms.Label();
  343. this.label55 = new System.Windows.Forms.Label();
  344. this.ddjOptType3 = new System.Windows.Forms.Label();
  345. this.label57 = new System.Windows.Forms.Label();
  346. this.ddjTotal_KM3 = new System.Windows.Forms.Label();
  347. this.label59 = new System.Windows.Forms.Label();
  348. this.ddjWorkTime3 = new System.Windows.Forms.Label();
  349. this.label61 = new System.Windows.Forms.Label();
  350. this.ddjStatus3 = new System.Windows.Forms.Label();
  351. this.ddjPosCurr3 = new System.Windows.Forms.Label();
  352. this.label64 = new System.Windows.Forms.Label();
  353. this.label65 = new System.Windows.Forms.Label();
  354. this.label66 = new System.Windows.Forms.Label();
  355. this.lblsrm03 = new System.Windows.Forms.Label();
  356. this.G3 = new System.Windows.Forms.PictureBox();
  357. this.pictureBox10 = new System.Windows.Forms.PictureBox();
  358. this.pnlDDJ4 = new MyConrols.MyPanel();
  359. this.lblInStatus4 = new System.Windows.Forms.Label();
  360. this.lblOutStatus4 = new System.Windows.Forms.Label();
  361. this.lblDDJWarning4 = new System.Windows.Forms.Label();
  362. this.ddjPosTo4 = new System.Windows.Forms.Label();
  363. this.ddjPosFrom4 = new System.Windows.Forms.Label();
  364. this.label71 = new System.Windows.Forms.Label();
  365. this.label72 = new System.Windows.Forms.Label();
  366. this.ddjMode4 = new System.Windows.Forms.Label();
  367. this.ddjOrdId4 = new System.Windows.Forms.Label();
  368. this.label75 = new System.Windows.Forms.Label();
  369. this.ddjOptType4 = new System.Windows.Forms.Label();
  370. this.label77 = new System.Windows.Forms.Label();
  371. this.ddjTotal_KM4 = new System.Windows.Forms.Label();
  372. this.label79 = new System.Windows.Forms.Label();
  373. this.ddjWorkTime4 = new System.Windows.Forms.Label();
  374. this.label81 = new System.Windows.Forms.Label();
  375. this.ddjStatus4 = new System.Windows.Forms.Label();
  376. this.ddjPosCurr4 = new System.Windows.Forms.Label();
  377. this.label89 = new System.Windows.Forms.Label();
  378. this.label90 = new System.Windows.Forms.Label();
  379. this.label91 = new System.Windows.Forms.Label();
  380. this.lblsrm04 = new System.Windows.Forms.Label();
  381. this.G4 = new System.Windows.Forms.PictureBox();
  382. this.pictureBox14 = new System.Windows.Forms.PictureBox();
  383. this.myPanel1 = new MyConrols.MyPanel();
  384. this.lblInStatus5 = new System.Windows.Forms.Label();
  385. this.lblOutStatus5 = new System.Windows.Forms.Label();
  386. this.label11 = new System.Windows.Forms.Label();
  387. this.ddjPosTo5 = new System.Windows.Forms.Label();
  388. this.ddjPosFrom5 = new System.Windows.Forms.Label();
  389. this.label17 = new System.Windows.Forms.Label();
  390. this.label18 = new System.Windows.Forms.Label();
  391. this.ddjMode5 = new System.Windows.Forms.Label();
  392. this.ddjOrdId5 = new System.Windows.Forms.Label();
  393. this.label21 = new System.Windows.Forms.Label();
  394. this.ddjOptType5 = new System.Windows.Forms.Label();
  395. this.label24 = new System.Windows.Forms.Label();
  396. this.ddjTotal_KM5 = new System.Windows.Forms.Label();
  397. this.label27 = new System.Windows.Forms.Label();
  398. this.ddjWorkTime5 = new System.Windows.Forms.Label();
  399. this.label30 = new System.Windows.Forms.Label();
  400. this.ddjStatus5 = new System.Windows.Forms.Label();
  401. this.ddjPosCurr5 = new System.Windows.Forms.Label();
  402. this.label36 = new System.Windows.Forms.Label();
  403. this.label37 = new System.Windows.Forms.Label();
  404. this.label38 = new System.Windows.Forms.Label();
  405. this.lblsrm05 = new System.Windows.Forms.Label();
  406. this.G5 = new System.Windows.Forms.PictureBox();
  407. this.pictureBox3 = new System.Windows.Forms.PictureBox();
  408. this.pnlRGV1089 = new MyConrols.MyPanel();
  409. this.label7 = new System.Windows.Forms.Label();
  410. this.label8 = new System.Windows.Forms.Label();
  411. this.label9 = new System.Windows.Forms.Label();
  412. this.rgvOptType2 = new System.Windows.Forms.Label();
  413. this.label31 = new System.Windows.Forms.Label();
  414. this.lblRGVWarning1089 = new System.Windows.Forms.Label();
  415. this.rgvPosCurr2 = new System.Windows.Forms.Label();
  416. this.rgvMode2 = new System.Windows.Forms.Label();
  417. this.rgvOrdId2 = new System.Windows.Forms.Label();
  418. this.label50 = new System.Windows.Forms.Label();
  419. this.rgvPosTo2 = new System.Windows.Forms.Label();
  420. this.label53 = new System.Windows.Forms.Label();
  421. this.rgvPosFrom2 = new System.Windows.Forms.Label();
  422. this.rgvStatus2 = new System.Windows.Forms.Label();
  423. this.label63 = new System.Windows.Forms.Label();
  424. this.lblrgv1089 = new System.Windows.Forms.Label();
  425. this.GV2 = new System.Windows.Forms.PictureBox();
  426. this.pictureBox4 = new System.Windows.Forms.PictureBox();
  427. this.pnlRGV1091 = new MyConrols.MyPanel();
  428. this.label14 = new System.Windows.Forms.Label();
  429. this.label19 = new System.Windows.Forms.Label();
  430. this.label20 = new System.Windows.Forms.Label();
  431. this.rgvOptType3 = new System.Windows.Forms.Label();
  432. this.label74 = new System.Windows.Forms.Label();
  433. this.lblRGVWarning1091 = new System.Windows.Forms.Label();
  434. this.rgvPosCurr3 = new System.Windows.Forms.Label();
  435. this.rgvMode3 = new System.Windows.Forms.Label();
  436. this.rgvOrdId3 = new System.Windows.Forms.Label();
  437. this.label94 = new System.Windows.Forms.Label();
  438. this.rgvPosTo3 = new System.Windows.Forms.Label();
  439. this.label96 = new System.Windows.Forms.Label();
  440. this.rgvPosFrom3 = new System.Windows.Forms.Label();
  441. this.rgvStatus3 = new System.Windows.Forms.Label();
  442. this.label102 = new System.Windows.Forms.Label();
  443. this.lblrgv1091 = new System.Windows.Forms.Label();
  444. this.GV3 = new System.Windows.Forms.PictureBox();
  445. this.pictureBox7 = new System.Windows.Forms.PictureBox();
  446. this.myPanel5 = new MyConrols.MyPanel();
  447. this.label25 = new System.Windows.Forms.Label();
  448. this.label35 = new System.Windows.Forms.Label();
  449. this.label39 = new System.Windows.Forms.Label();
  450. this.rgvOptType4 = new System.Windows.Forms.Label();
  451. this.label173 = new System.Windows.Forms.Label();
  452. this.lblRGVWarning1007 = new System.Windows.Forms.Label();
  453. this.rgvPosCurr4 = new System.Windows.Forms.Label();
  454. this.rgvMode4 = new System.Windows.Forms.Label();
  455. this.rgvOrdId4 = new System.Windows.Forms.Label();
  456. this.label181 = new System.Windows.Forms.Label();
  457. this.rgvPosTo4 = new System.Windows.Forms.Label();
  458. this.label183 = new System.Windows.Forms.Label();
  459. this.rgvPosFrom4 = new System.Windows.Forms.Label();
  460. this.rgvStatus4 = new System.Windows.Forms.Label();
  461. this.label189 = new System.Windows.Forms.Label();
  462. this.lblrgv1007 = new System.Windows.Forms.Label();
  463. this.GV4 = new System.Windows.Forms.PictureBox();
  464. this.pictureBox17 = new System.Windows.Forms.PictureBox();
  465. this.myPanel11 = new MyConrols.MyPanel();
  466. this.label40 = new System.Windows.Forms.Label();
  467. this.label41 = new System.Windows.Forms.Label();
  468. this.label42 = new System.Windows.Forms.Label();
  469. this.rgvOptType5 = new System.Windows.Forms.Label();
  470. this.label305 = new System.Windows.Forms.Label();
  471. this.lblRGVWarning1175 = new System.Windows.Forms.Label();
  472. this.rgvPosCurr5 = new System.Windows.Forms.Label();
  473. this.rgvMode5 = new System.Windows.Forms.Label();
  474. this.rgvOrdId5 = new System.Windows.Forms.Label();
  475. this.label313 = new System.Windows.Forms.Label();
  476. this.rgvPosTo5 = new System.Windows.Forms.Label();
  477. this.label315 = new System.Windows.Forms.Label();
  478. this.rgvPosFrom5 = new System.Windows.Forms.Label();
  479. this.rgvStatus5 = new System.Windows.Forms.Label();
  480. this.label321 = new System.Windows.Forms.Label();
  481. this.lblrgv1175 = new System.Windows.Forms.Label();
  482. this.GV5 = new System.Windows.Forms.PictureBox();
  483. this.pictureBox29 = new System.Windows.Forms.PictureBox();
  484. this.myPanel2 = new MyConrols.MyPanel();
  485. this.myPanel4 = new MyConrols.MyPanel();
  486. this.label124 = new System.Windows.Forms.Label();
  487. this.label125 = new System.Windows.Forms.Label();
  488. this.label126 = new System.Windows.Forms.Label();
  489. this.label127 = new System.Windows.Forms.Label();
  490. this.label128 = new System.Windows.Forms.Label();
  491. this.label129 = new System.Windows.Forms.Label();
  492. this.label130 = new System.Windows.Forms.Label();
  493. this.label131 = new System.Windows.Forms.Label();
  494. this.label132 = new System.Windows.Forms.Label();
  495. this.label133 = new System.Windows.Forms.Label();
  496. this.label134 = new System.Windows.Forms.Label();
  497. this.label135 = new System.Windows.Forms.Label();
  498. this.label136 = new System.Windows.Forms.Label();
  499. this.label138 = new System.Windows.Forms.Label();
  500. this.label140 = new System.Windows.Forms.Label();
  501. this.label141 = new System.Windows.Forms.Label();
  502. this.label142 = new System.Windows.Forms.Label();
  503. this.label143 = new System.Windows.Forms.Label();
  504. this.label144 = new System.Windows.Forms.Label();
  505. this.label145 = new System.Windows.Forms.Label();
  506. this.label146 = new System.Windows.Forms.Label();
  507. this.label147 = new System.Windows.Forms.Label();
  508. this.pictureBox11 = new System.Windows.Forms.PictureBox();
  509. this.pictureBox12 = new System.Windows.Forms.PictureBox();
  510. this.rgvOptType1 = new System.Windows.Forms.Label();
  511. this.label23 = new System.Windows.Forms.Label();
  512. this.lblRGVWarning1444 = new System.Windows.Forms.Label();
  513. this.rgvPosCurr1 = new System.Windows.Forms.Label();
  514. this.label45 = new System.Windows.Forms.Label();
  515. this.rgvMode1 = new System.Windows.Forms.Label();
  516. this.rgvOrdId1 = new System.Windows.Forms.Label();
  517. this.label58 = new System.Windows.Forms.Label();
  518. this.rgvPosTo1 = new System.Windows.Forms.Label();
  519. this.label69 = new System.Windows.Forms.Label();
  520. this.rgvPosFrom1 = new System.Windows.Forms.Label();
  521. this.label73 = new System.Windows.Forms.Label();
  522. this.rgvStatus1 = new System.Windows.Forms.Label();
  523. this.label80 = new System.Windows.Forms.Label();
  524. this.label92 = new System.Windows.Forms.Label();
  525. this.lblrgv1444 = new System.Windows.Forms.Label();
  526. this.GV1 = new System.Windows.Forms.PictureBox();
  527. this.pictureBox5 = new System.Windows.Forms.PictureBox();
  528. this.pnlBottom = new MyConrols.MyPanel();
  529. this.tabControl1.SuspendLayout();
  530. this.tabPage1.SuspendLayout();
  531. this.myTableLayoutPanel1.SuspendLayout();
  532. this.pnlDDJ1.SuspendLayout();
  533. ((System.ComponentModel.ISupportInitialize)(this.G1)).BeginInit();
  534. ((System.ComponentModel.ISupportInitialize)(this.R1)).BeginInit();
  535. this.pnlDDJ2.SuspendLayout();
  536. ((System.ComponentModel.ISupportInitialize)(this.G2)).BeginInit();
  537. ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
  538. this.pnlDDJ3.SuspendLayout();
  539. ((System.ComponentModel.ISupportInitialize)(this.G3)).BeginInit();
  540. ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit();
  541. this.pnlDDJ4.SuspendLayout();
  542. ((System.ComponentModel.ISupportInitialize)(this.G4)).BeginInit();
  543. ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).BeginInit();
  544. this.myPanel1.SuspendLayout();
  545. ((System.ComponentModel.ISupportInitialize)(this.G5)).BeginInit();
  546. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
  547. this.pnlRGV1089.SuspendLayout();
  548. ((System.ComponentModel.ISupportInitialize)(this.GV2)).BeginInit();
  549. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
  550. this.pnlRGV1091.SuspendLayout();
  551. ((System.ComponentModel.ISupportInitialize)(this.GV3)).BeginInit();
  552. ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit();
  553. this.myPanel5.SuspendLayout();
  554. ((System.ComponentModel.ISupportInitialize)(this.GV4)).BeginInit();
  555. ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).BeginInit();
  556. this.myPanel11.SuspendLayout();
  557. ((System.ComponentModel.ISupportInitialize)(this.GV5)).BeginInit();
  558. ((System.ComponentModel.ISupportInitialize)(this.pictureBox29)).BeginInit();
  559. this.myPanel2.SuspendLayout();
  560. this.myPanel4.SuspendLayout();
  561. ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit();
  562. ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit();
  563. ((System.ComponentModel.ISupportInitialize)(this.GV1)).BeginInit();
  564. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
  565. this.pnlBottom.SuspendLayout();
  566. this.SuspendLayout();
  567. //
  568. // tabControl1
  569. //
  570. this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  571. | System.Windows.Forms.AnchorStyles.Left)
  572. | System.Windows.Forms.AnchorStyles.Right)));
  573. this.tabControl1.Controls.Add(this.tabPage1);
  574. this.tabControl1.ItemSize = new System.Drawing.Size(120, 21);
  575. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  576. this.tabControl1.Margin = new System.Windows.Forms.Padding(0);
  577. this.tabControl1.Name = "tabControl1";
  578. this.tabControl1.SelectedIndex = 0;
  579. this.tabControl1.Size = new System.Drawing.Size(2671, 871);
  580. this.tabControl1.TabIndex = 125;
  581. //
  582. // tabPage1
  583. //
  584. this.tabPage1.AutoScroll = true;
  585. this.tabPage1.BackColor = System.Drawing.Color.White;
  586. this.tabPage1.Controls.Add(this.myTableLayoutPanel1);
  587. this.tabPage1.Location = new System.Drawing.Point(4, 25);
  588. this.tabPage1.Margin = new System.Windows.Forms.Padding(0);
  589. this.tabPage1.Name = "tabPage1";
  590. this.tabPage1.Size = new System.Drawing.Size(2663, 842);
  591. this.tabPage1.TabIndex = 0;
  592. this.tabPage1.Text = "美纹立体库";
  593. //
  594. // myTableLayoutPanel1
  595. //
  596. this.myTableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  597. | System.Windows.Forms.AnchorStyles.Right)));
  598. this.myTableLayoutPanel1.AutoScroll = true;
  599. this.myTableLayoutPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(144)))), ((int)(((byte)(154)))));
  600. this.myTableLayoutPanel1.ColumnCount = 60;
  601. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  602. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  603. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  604. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  605. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  606. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  607. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  608. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  609. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  610. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  611. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  612. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  613. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  614. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  615. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  616. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  617. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  618. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  619. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  620. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  621. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  622. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  623. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  624. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  625. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  626. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  627. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  628. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.725529F));
  629. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.516374F));
  630. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  631. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  632. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  633. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  634. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  635. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  636. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  637. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  638. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  639. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  640. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  641. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  642. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  643. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  644. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  645. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  646. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  647. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  648. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  649. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  650. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  651. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  652. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  653. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  654. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  655. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  656. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  657. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  658. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  659. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 1.66134F));
  660. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 2.061664F));
  661. this.myTableLayoutPanel1.Controls.Add(this.con2281, 25, 8);
  662. this.myTableLayoutPanel1.Controls.Add(this.con2282, 16, 8);
  663. this.myTableLayoutPanel1.Controls.Add(this.con2010, 4, 15);
  664. this.myTableLayoutPanel1.Controls.Add(this.con2014, 4, 21);
  665. this.myTableLayoutPanel1.Controls.Add(this.con2083, 4, 32);
  666. this.myTableLayoutPanel1.Controls.Add(this.con2137, 49, 11);
  667. this.myTableLayoutPanel1.Controls.Add(this.con2125, 49, 23);
  668. this.myTableLayoutPanel1.Controls.Add(this.con2116, 49, 33);
  669. this.myTableLayoutPanel1.Controls.Add(this.con2275, 29, 8);
  670. this.myTableLayoutPanel1.Controls.Add(this.con2276, 27, 8);
  671. this.myTableLayoutPanel1.Controls.Add(this.con2277, 23, 8);
  672. this.myTableLayoutPanel1.Controls.Add(this.con2278, 18, 8);
  673. this.myTableLayoutPanel1.Controls.Add(this.con2279, 14, 8);
  674. this.myTableLayoutPanel1.Controls.Add(this.con2280, 12, 8);
  675. this.myTableLayoutPanel1.Controls.Add(this.con2202, 30, 1);
  676. this.myTableLayoutPanel1.Controls.Add(this.con2062, 31, 29);
  677. this.myTableLayoutPanel1.Controls.Add(this.con2058, 30, 32);
  678. this.myTableLayoutPanel1.Controls.Add(this.con2053, 28, 32);
  679. this.myTableLayoutPanel1.Controls.Add(this.con2057, 29, 29);
  680. this.myTableLayoutPanel1.Controls.Add(this.con2055, 28, 30);
  681. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel17, 28, 29);
  682. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel18, 28, 31);
  683. this.myTableLayoutPanel1.Controls.Add(this.con2056, 27, 29);
  684. this.myTableLayoutPanel1.Controls.Add(this.con2051, 26, 32);
  685. this.myTableLayoutPanel1.Controls.Add(this.con2050, 25, 29);
  686. this.myTableLayoutPanel1.Controls.Add(this.con2048, 24, 30);
  687. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel14, 24, 31);
  688. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel16, 24, 29);
  689. this.myTableLayoutPanel1.Controls.Add(this.con2049, 23, 29);
  690. this.myTableLayoutPanel1.Controls.Add(this.con2041, 21, 29);
  691. this.myTableLayoutPanel1.Controls.Add(this.con2039, 21, 32);
  692. this.myTableLayoutPanel1.Controls.Add(this.con2042, 20, 29);
  693. this.myTableLayoutPanel1.Controls.Add(this.con2035, 18, 29);
  694. this.myTableLayoutPanel1.Controls.Add(this.con2033, 17, 30);
  695. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel12, 17, 31);
  696. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel13, 17, 29);
  697. this.myTableLayoutPanel1.Controls.Add(this.con2034, 16, 29);
  698. this.myTableLayoutPanel1.Controls.Add(this.con2028, 14, 29);
  699. this.myTableLayoutPanel1.Controls.Add(this.con2026, 13, 30);
  700. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel10, 13, 31);
  701. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel11, 13, 29);
  702. this.myTableLayoutPanel1.Controls.Add(this.con2027, 12, 29);
  703. this.myTableLayoutPanel1.Controls.Add(this.con2022, 10, 32);
  704. this.myTableLayoutPanel1.Controls.Add(this.con2021, 10, 29);
  705. this.myTableLayoutPanel1.Controls.Add(this.con2309, 2, 3);
  706. this.myTableLayoutPanel1.Controls.Add(this.con2310, 2, 5);
  707. this.myTableLayoutPanel1.Controls.Add(this.con2261, 38, 11);
  708. this.myTableLayoutPanel1.Controls.Add(this.con2262, 38, 10);
  709. this.myTableLayoutPanel1.Controls.Add(this.con2260, 36, 10);
  710. this.myTableLayoutPanel1.Controls.Add(this.con2259, 36, 11);
  711. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_A17, 44, 11);
  712. this.myTableLayoutPanel1.Controls.Add(this.con2263, 42, 11);
  713. this.myTableLayoutPanel1.Controls.Add(this.con2264, 42, 10);
  714. this.myTableLayoutPanel1.Controls.Add(this.con2265, 44, 10);
  715. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel23, 39, 12);
  716. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel24, 34, 12);
  717. this.myTableLayoutPanel1.Controls.Add(this.conrgv1, 38, 12);
  718. this.myTableLayoutPanel1.Controls.Add(this.con2256, 44, 13);
  719. this.myTableLayoutPanel1.Controls.Add(this.con2252, 36, 13);
  720. this.myTableLayoutPanel1.Controls.Add(this.con2253, 38, 13);
  721. this.myTableLayoutPanel1.Controls.Add(this.con2254, 40, 13);
  722. this.myTableLayoutPanel1.Controls.Add(this.con2251, 34, 13);
  723. this.myTableLayoutPanel1.Controls.Add(this.con2255, 42, 13);
  724. this.myTableLayoutPanel1.Controls.Add(this.con2198, 28, 3);
  725. this.myTableLayoutPanel1.Controls.Add(this.con2192, 30, 3);
  726. this.myTableLayoutPanel1.Controls.Add(this.con2195, 29, 3);
  727. this.myTableLayoutPanel1.Controls.Add(this.con2201, 27, 3);
  728. this.myTableLayoutPanel1.Controls.Add(this.con2203, 37, 3);
  729. this.myTableLayoutPanel1.Controls.Add(this.con2206, 40, 3);
  730. this.myTableLayoutPanel1.Controls.Add(this.con2204, 38, 3);
  731. this.myTableLayoutPanel1.Controls.Add(this.con2205, 39, 3);
  732. this.myTableLayoutPanel1.Controls.Add(this.con2153, 42, 3);
  733. this.myTableLayoutPanel1.Controls.Add(this.con2207, 37, 4);
  734. this.myTableLayoutPanel1.Controls.Add(this.con2208, 38, 4);
  735. this.myTableLayoutPanel1.Controls.Add(this.con2209, 39, 4);
  736. this.myTableLayoutPanel1.Controls.Add(this.conrgv3, 32, 2);
  737. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel1, 33, 2);
  738. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel2, 24, 2);
  739. this.myTableLayoutPanel1.Controls.Add(this.con2187, 34, 3);
  740. this.myTableLayoutPanel1.Controls.Add(this.con2182, 35, 3);
  741. this.myTableLayoutPanel1.Controls.Add(this.con2181, 34, 4);
  742. this.myTableLayoutPanel1.Controls.Add(this.con2180, 35, 4);
  743. this.myTableLayoutPanel1.Controls.Add(this.con2271, 42, 2);
  744. this.myTableLayoutPanel1.Controls.Add(this.con2211, 41, 4);
  745. this.myTableLayoutPanel1.Controls.Add(this.con2152, 42, 1);
  746. this.myTableLayoutPanel1.Controls.Add(this.con2210, 40, 4);
  747. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel3, 34, 5);
  748. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel4, 41, 5);
  749. this.myTableLayoutPanel1.Controls.Add(this.conrgv2, 40, 5);
  750. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel6, 40, 29);
  751. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel8, 36, 29);
  752. this.myTableLayoutPanel1.Controls.Add(this.con2172, 34, 6);
  753. this.myTableLayoutPanel1.Controls.Add(this.con2173, 36, 6);
  754. this.myTableLayoutPanel1.Controls.Add(this.con2174, 38, 6);
  755. this.myTableLayoutPanel1.Controls.Add(this.con2175, 40, 6);
  756. this.myTableLayoutPanel1.Controls.Add(this.con2176, 42, 6);
  757. this.myTableLayoutPanel1.Controls.Add(this.con2177, 44, 6);
  758. this.myTableLayoutPanel1.Controls.Add(this.con2147, 44, 0);
  759. this.myTableLayoutPanel1.Controls.Add(this.con2146, 45, 0);
  760. this.myTableLayoutPanel1.Controls.Add(this.con2148, 43, 0);
  761. this.myTableLayoutPanel1.Controls.Add(this.con2144, 47, 0);
  762. this.myTableLayoutPanel1.Controls.Add(this.con2145, 46, 0);
  763. this.myTableLayoutPanel1.Controls.Add(this.con2150, 42, 0);
  764. this.myTableLayoutPanel1.Controls.Add(this.con2161, 41, 0);
  765. this.myTableLayoutPanel1.Controls.Add(this.con2378, 48, 5);
  766. this.myTableLayoutPanel1.Controls.Add(this.con2384, 48, 0);
  767. this.myTableLayoutPanel1.Controls.Add(this.con2381, 48, 2);
  768. this.myTableLayoutPanel1.Controls.Add(this.con2380, 48, 3);
  769. this.myTableLayoutPanel1.Controls.Add(this.con2379, 48, 4);
  770. this.myTableLayoutPanel1.Controls.Add(this.con2141, 53, 11);
  771. this.myTableLayoutPanel1.Controls.Add(this.con2274, 54, 11);
  772. this.myTableLayoutPanel1.Controls.Add(this.con2140, 52, 11);
  773. this.myTableLayoutPanel1.Controls.Add(this.con2143, 52, 12);
  774. this.myTableLayoutPanel1.Controls.Add(this.label1, 49, 10);
  775. this.myTableLayoutPanel1.Controls.Add(this.con2138, 50, 11);
  776. this.myTableLayoutPanel1.Controls.Add(this.con2326, 51, 11);
  777. this.myTableLayoutPanel1.Controls.Add(this.con2135, 49, 9);
  778. this.myTableLayoutPanel1.Controls.Add(this.con2273, 52, 21);
  779. this.myTableLayoutPanel1.Controls.Add(this.con2129, 52, 22);
  780. this.myTableLayoutPanel1.Controls.Add(this.con2128, 52, 23);
  781. this.myTableLayoutPanel1.Controls.Add(this.con2131, 52, 24);
  782. this.myTableLayoutPanel1.Controls.Add(this.label4, 49, 22);
  783. this.myTableLayoutPanel1.Controls.Add(this.con2126, 50, 23);
  784. this.myTableLayoutPanel1.Controls.Add(this.con2327, 51, 23);
  785. this.myTableLayoutPanel1.Controls.Add(this.con2123, 49, 21);
  786. this.myTableLayoutPanel1.Controls.Add(this.con2377, 48, 6);
  787. this.myTableLayoutPanel1.Controls.Add(this.con2374, 48, 9);
  788. this.myTableLayoutPanel1.Controls.Add(this.con2385, 48, 11);
  789. this.myTableLayoutPanel1.Controls.Add(this.con2386, 48, 13);
  790. this.myTableLayoutPanel1.Controls.Add(this.con2375, 48, 8);
  791. this.myTableLayoutPanel1.Controls.Add(this.con2376, 48, 7);
  792. this.myTableLayoutPanel1.Controls.Add(this.con2382, 48, 1);
  793. this.myTableLayoutPanel1.Controls.Add(this.con2387, 48, 15);
  794. this.myTableLayoutPanel1.Controls.Add(this.con2372, 48, 17);
  795. this.myTableLayoutPanel1.Controls.Add(this.con2370, 48, 19);
  796. this.myTableLayoutPanel1.Controls.Add(this.con2371, 48, 18);
  797. this.myTableLayoutPanel1.Controls.Add(this.con2388, 48, 16);
  798. this.myTableLayoutPanel1.Controls.Add(this.con2368, 48, 21);
  799. this.myTableLayoutPanel1.Controls.Add(this.con2369, 48, 20);
  800. this.myTableLayoutPanel1.Controls.Add(this.con2365, 48, 23);
  801. this.myTableLayoutPanel1.Controls.Add(this.con2366, 48, 22);
  802. this.myTableLayoutPanel1.Controls.Add(this.con2364, 48, 24);
  803. this.myTableLayoutPanel1.Controls.Add(this.con2362, 47, 24);
  804. this.myTableLayoutPanel1.Controls.Add(this.con2120, 52, 32);
  805. this.myTableLayoutPanel1.Controls.Add(this.con2119, 52, 33);
  806. this.myTableLayoutPanel1.Controls.Add(this.con2122, 52, 34);
  807. this.myTableLayoutPanel1.Controls.Add(this.con2272, 52, 31);
  808. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel9, 48, 31);
  809. this.myTableLayoutPanel1.Controls.Add(this.con2104, 38, 33);
  810. this.myTableLayoutPanel1.Controls.Add(this.con2102, 34, 33);
  811. this.myTableLayoutPanel1.Controls.Add(this.con2101, 32, 33);
  812. this.myTableLayoutPanel1.Controls.Add(this.con2103, 36, 33);
  813. this.myTableLayoutPanel1.Controls.Add(this.con2108, 46, 33);
  814. this.myTableLayoutPanel1.Controls.Add(this.con2107, 44, 33);
  815. this.myTableLayoutPanel1.Controls.Add(this.con2106, 42, 33);
  816. this.myTableLayoutPanel1.Controls.Add(this.con2105, 40, 33);
  817. this.myTableLayoutPanel1.Controls.Add(this.con2060, 30, 35);
  818. this.myTableLayoutPanel1.Controls.Add(this.con2079, 12, 35);
  819. this.myTableLayoutPanel1.Controls.Add(this.con2075, 20, 35);
  820. this.myTableLayoutPanel1.Controls.Add(this.con2080, 8, 35);
  821. this.myTableLayoutPanel1.Controls.Add(this.con2074, 22, 35);
  822. this.myTableLayoutPanel1.Controls.Add(this.con2078, 14, 35);
  823. this.myTableLayoutPanel1.Controls.Add(this.con2077, 16, 35);
  824. this.myTableLayoutPanel1.Controls.Add(this.con2325, 6, 35);
  825. this.myTableLayoutPanel1.Controls.Add(this.con2073, 24, 35);
  826. this.myTableLayoutPanel1.Controls.Add(this.con2071, 28, 35);
  827. this.myTableLayoutPanel1.Controls.Add(this.con2072, 26, 35);
  828. this.myTableLayoutPanel1.Controls.Add(this.con2076, 18, 35);
  829. this.myTableLayoutPanel1.Controls.Add(this.con2355, 10, 35);
  830. this.myTableLayoutPanel1.Controls.Add(this.con2037, 20, 32);
  831. this.myTableLayoutPanel1.Controls.Add(this.con2044, 22, 32);
  832. this.myTableLayoutPanel1.Controls.Add(this.con2046, 24, 32);
  833. this.myTableLayoutPanel1.Controls.Add(this.con2031, 17, 32);
  834. this.myTableLayoutPanel1.Controls.Add(this.con2029, 15, 32);
  835. this.myTableLayoutPanel1.Controls.Add(this.con2036, 19, 32);
  836. this.myTableLayoutPanel1.Controls.Add(this.con2017, 9, 32);
  837. this.myTableLayoutPanel1.Controls.Add(this.con2019, 11, 32);
  838. this.myTableLayoutPanel1.Controls.Add(this.con2024, 13, 32);
  839. this.myTableLayoutPanel1.Controls.Add(this.con2324, 6, 32);
  840. this.myTableLayoutPanel1.Controls.Add(this.con2353, 8, 32);
  841. this.myTableLayoutPanel1.Controls.Add(this.con2016, 7, 32);
  842. this.myTableLayoutPanel1.Controls.Add(this.locationPos35, 42, 16);
  843. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel15, 39, 15);
  844. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel29, 30, 8);
  845. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel30, 22, 8);
  846. this.myTableLayoutPanel1.Controls.Add(this.locationPos36, 21, 9);
  847. this.myTableLayoutPanel1.Controls.Add(this.locationPos37, 16, 9);
  848. this.myTableLayoutPanel1.Controls.Add(this.con2084, 4, 33);
  849. this.myTableLayoutPanel1.Controls.Add(this.con2086, 4, 34);
  850. this.myTableLayoutPanel1.Controls.Add(this.con2081, 4, 30);
  851. this.myTableLayoutPanel1.Controls.Add(this.con2088, 3, 32);
  852. this.myTableLayoutPanel1.Controls.Add(this.label6, 4, 31);
  853. this.myTableLayoutPanel1.Controls.Add(this.con2015, 4, 19);
  854. this.myTableLayoutPanel1.Controls.Add(this.con2012, 3, 21);
  855. this.myTableLayoutPanel1.Controls.Add(this.label12, 4, 20);
  856. this.myTableLayoutPanel1.Controls.Add(this.con2008, 3, 15);
  857. this.myTableLayoutPanel1.Controls.Add(this.con2011, 4, 13);
  858. this.myTableLayoutPanel1.Controls.Add(this.label28, 4, 14);
  859. this.myTableLayoutPanel1.Controls.Add(this.con2323, 6, 10);
  860. this.myTableLayoutPanel1.Controls.Add(this.con2322, 7, 10);
  861. this.myTableLayoutPanel1.Controls.Add(this.con2311, 8, 1);
  862. this.myTableLayoutPanel1.Controls.Add(this.con2317, 8, 7);
  863. this.myTableLayoutPanel1.Controls.Add(this.con2315, 8, 5);
  864. this.myTableLayoutPanel1.Controls.Add(this.conv2314, 8, 4);
  865. this.myTableLayoutPanel1.Controls.Add(this.con2312, 8, 2);
  866. this.myTableLayoutPanel1.Controls.Add(this.con2313, 8, 3);
  867. this.myTableLayoutPanel1.Controls.Add(this.con2316, 8, 6);
  868. this.myTableLayoutPanel1.Controls.Add(this.con2319, 8, 9);
  869. this.myTableLayoutPanel1.Controls.Add(this.con2320, 8, 10);
  870. this.myTableLayoutPanel1.Controls.Add(this.con2318, 8, 8);
  871. this.myTableLayoutPanel1.Controls.Add(this.con2005, 6, 0);
  872. this.myTableLayoutPanel1.Controls.Add(this.con2302, 8, 0);
  873. this.myTableLayoutPanel1.Controls.Add(this.con2004, 6, 0);
  874. this.myTableLayoutPanel1.Controls.Add(this.label33, 6, 1);
  875. this.myTableLayoutPanel1.Controls.Add(this.con2304, 2, 2);
  876. this.myTableLayoutPanel1.Controls.Add(this.con2003, 6, 2);
  877. this.myTableLayoutPanel1.Controls.Add(this.con2308, 5, 2);
  878. this.myTableLayoutPanel1.Controls.Add(this.con2307, 4, 2);
  879. this.myTableLayoutPanel1.Controls.Add(this.con2305, 3, 2);
  880. this.myTableLayoutPanel1.Controls.Add(this.label34, 49, 32);
  881. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel31, 15, 8);
  882. this.myTableLayoutPanel1.Controls.Add(this.locationPos38, 18, 9);
  883. this.myTableLayoutPanel1.Controls.Add(this.locationPos39, 38, 16);
  884. this.myTableLayoutPanel1.Controls.Add(this.locationPos40, 40, 16);
  885. this.myTableLayoutPanel1.Controls.Add(this.locationPos41, 44, 16);
  886. this.myTableLayoutPanel1.Controls.Add(this.srm11, 43, 15);
  887. this.myTableLayoutPanel1.Controls.Add(this.con2328, 51, 33);
  888. this.myTableLayoutPanel1.Controls.Add(this.con2117, 50, 33);
  889. this.myTableLayoutPanel1.Controls.Add(this.locationPos42, 29, 9);
  890. this.myTableLayoutPanel1.Controls.Add(this.locationPos43, 36, 16);
  891. this.myTableLayoutPanel1.Controls.Add(this.srm12, 35, 15);
  892. this.myTableLayoutPanel1.Controls.Add(this.locationPos44, 34, 16);
  893. this.myTableLayoutPanel1.Controls.Add(this.locationPos45, 25, 9);
  894. this.myTableLayoutPanel1.Controls.Add(this.locationPos46, 27, 9);
  895. this.myTableLayoutPanel1.Controls.Add(this.locationPos47, 23, 9);
  896. this.myTableLayoutPanel1.Controls.Add(this.srm13, 26, 8);
  897. this.myTableLayoutPanel1.Controls.Add(this.locationPos48, 20, 9);
  898. this.myTableLayoutPanel1.Controls.Add(this.locationPos49, 14, 9);
  899. this.myTableLayoutPanel1.Controls.Add(this.srm14, 19, 8);
  900. this.myTableLayoutPanel1.Controls.Add(this.locationPos53, 12, 9);
  901. this.myTableLayoutPanel1.Controls.Add(this.locationPos54, 31, 9);
  902. this.myTableLayoutPanel1.Controls.Add(this.srm15, 11, 8);
  903. this.myTableLayoutPanel1.Controls.Add(this.locationPos55, 10, 9);
  904. this.myTableLayoutPanel1.Controls.Add(this.con2114, 49, 31);
  905. this.myTableLayoutPanel1.Controls.Add(this.conrgv4, 48, 29);
  906. this.myTableLayoutPanel1.Controls.Add(this.con2359, 47, 26);
  907. this.myTableLayoutPanel1.Controls.Add(this.con2360, 47, 25);
  908. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel32, 48, 26);
  909. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel33, 5, 10);
  910. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel34, 5, 18);
  911. this.myTableLayoutPanel1.Controls.Add(this.conrgv5, 5, 16);
  912. this.myTableLayoutPanel1.Location = new System.Drawing.Point(-80, 1);
  913. this.myTableLayoutPanel1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  914. this.myTableLayoutPanel1.Name = "myTableLayoutPanel1";
  915. this.myTableLayoutPanel1.RowCount = 41;
  916. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  917. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  918. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  919. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  920. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  921. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  922. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  923. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  924. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  925. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  926. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  927. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  928. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  929. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  930. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  931. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.995668F));
  932. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.765232F));
  933. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  934. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  935. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  936. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  937. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  938. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  939. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  940. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  941. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  942. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  943. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  944. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  945. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  946. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  947. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  948. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  949. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 2.944972F));
  950. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  951. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  952. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  953. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 22F));
  954. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 28F));
  955. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  956. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  957. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  958. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  959. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  960. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  961. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  962. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  963. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  964. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  965. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  966. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  967. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  968. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  969. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  970. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  971. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  972. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  973. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  974. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  975. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  976. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  977. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  978. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  979. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  980. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  981. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  982. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  983. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  984. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  985. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  986. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  987. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  988. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  989. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  990. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  991. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  992. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  993. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  994. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  995. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  996. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  997. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  998. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  999. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1000. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1001. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1002. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1003. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1004. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1005. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1006. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1007. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1008. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1009. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1010. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1011. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1012. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1013. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1014. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1015. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1016. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1017. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1018. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1019. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1020. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1021. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1022. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1023. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1024. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1025. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1026. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1027. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1028. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1029. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1030. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1031. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1032. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1033. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1034. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1035. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1036. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1037. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1038. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1039. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1040. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1041. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1042. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1043. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1044. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1045. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1046. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1047. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1048. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1049. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1050. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1051. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1052. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1053. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1054. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1055. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1056. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1057. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1058. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1059. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1060. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1061. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1062. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1063. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1064. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1065. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1066. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1067. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1068. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1069. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1070. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1071. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1072. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1073. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1074. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1075. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1076. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1077. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1078. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1079. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1080. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1081. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1082. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1083. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1084. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1085. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1086. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1087. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1088. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1089. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1090. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1091. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1092. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1093. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1094. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1095. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1096. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1097. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1098. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1099. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1100. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1101. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1102. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1103. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1104. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1105. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1106. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1107. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1108. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1109. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1110. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1111. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1112. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1113. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1114. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1115. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1116. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1117. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1118. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1119. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1120. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1121. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1122. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1123. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1124. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1125. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1126. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1127. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1128. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1129. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1130. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1131. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1132. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1133. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1134. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1135. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1136. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1137. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1138. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1139. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1140. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1141. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1142. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1143. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1144. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1145. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1146. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1147. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1148. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1149. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1150. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1151. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1152. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1153. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1154. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1155. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1156. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1157. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1158. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1159. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1160. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1161. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1162. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1163. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1164. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1165. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1166. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1167. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1168. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1169. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1170. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1171. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1172. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1173. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1174. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1175. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1176. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1177. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1178. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1179. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1180. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1181. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1182. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1183. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1184. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1185. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1186. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1187. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1188. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1189. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1190. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1191. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1192. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1193. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1194. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1195. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1196. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1197. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1198. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1199. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1200. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1201. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1202. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1203. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1204. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1205. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1206. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1207. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1208. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1209. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1210. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1211. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1212. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1213. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1214. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1215. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1216. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1217. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1218. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1219. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1220. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1221. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1222. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1223. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1224. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1225. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1226. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1227. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1228. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1229. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1230. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1231. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1232. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1233. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1234. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1235. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1236. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1237. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1238. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1239. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1240. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1241. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1242. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1243. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1244. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1245. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1246. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1247. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1248. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1249. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1250. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1251. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1252. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1253. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1254. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1255. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1256. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1257. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1258. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1259. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1260. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1261. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1262. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1263. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1264. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1265. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1266. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1267. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1268. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1269. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1270. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1271. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1272. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1273. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1274. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1275. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1276. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1277. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1278. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1279. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1280. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1281. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1282. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1283. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1284. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1285. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1286. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1287. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1288. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1289. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1290. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1291. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1292. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1293. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1294. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1295. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1296. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1297. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1298. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1299. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1300. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1301. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1302. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1303. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1304. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1305. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1306. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1307. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1308. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1309. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1310. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1311. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1312. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1313. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1314. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1315. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1316. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1317. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1318. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1319. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1320. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1321. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1322. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1323. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1324. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1325. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1326. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1327. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1328. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1329. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1330. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1331. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1332. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1333. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1334. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1335. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1336. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1337. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1338. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1339. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1340. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1341. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1342. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1343. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1344. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1345. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1346. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1347. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1348. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1349. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1350. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1351. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1352. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1353. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1354. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1355. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1356. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1357. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1358. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1359. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1360. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1361. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1362. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1363. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1364. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1365. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1366. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1367. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1368. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1369. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1370. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1371. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1372. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1373. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1374. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1375. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1376. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1377. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1378. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1379. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1380. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1381. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1382. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1383. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1384. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1385. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1386. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1387. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1388. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1389. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1390. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1391. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1392. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1393. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1394. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1395. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1396. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1397. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1398. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1399. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1400. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1401. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1402. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1403. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1404. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1405. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1406. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1407. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1408. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1409. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1410. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1411. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1412. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1413. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1414. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1415. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1416. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1417. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1418. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1419. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1420. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1421. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1422. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1423. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1424. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1425. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1426. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1427. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1428. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1429. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1430. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1431. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1432. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1433. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1434. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1435. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1436. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1437. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1438. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1439. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1440. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1441. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1442. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1443. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1444. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1445. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1446. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1447. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1448. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1449. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1450. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1451. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1452. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1453. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1454. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1455. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1456. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1457. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1458. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1459. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1460. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1461. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1462. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1463. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1464. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1465. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1466. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1467. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1468. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1469. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1470. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1471. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1472. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1473. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1474. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1475. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1476. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1477. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1478. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1479. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1480. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1481. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1482. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1483. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1484. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1485. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1486. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1487. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1488. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1489. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1490. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1491. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1492. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1493. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1494. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1495. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1496. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1497. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1498. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1499. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1500. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1501. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1502. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1503. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1504. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1505. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1506. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1507. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1508. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1509. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1510. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1511. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1512. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1513. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1514. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1515. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1516. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1517. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1518. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1519. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1520. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1521. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1522. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1523. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1524. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1525. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1526. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1527. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1528. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1529. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1530. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1531. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1532. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1533. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1534. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1535. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1536. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1537. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1538. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1539. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1540. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1541. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1542. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1543. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1544. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1545. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1546. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1547. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1548. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1549. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1550. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1551. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1552. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1553. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1554. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1555. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1556. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1557. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1558. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1559. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1560. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1561. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1562. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1563. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1564. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1565. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1566. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1567. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1568. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1569. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1570. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1571. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1572. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1573. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1574. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1575. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1576. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1577. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1578. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1579. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1580. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1581. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1582. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1583. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1584. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1585. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1586. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1587. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1588. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1589. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1590. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1591. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1592. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1593. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1594. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1595. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1596. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1597. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1598. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1599. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1600. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1601. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1602. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1603. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1604. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1605. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1606. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1607. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1608. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1609. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1610. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1611. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1612. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1613. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1614. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1615. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1616. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1617. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1618. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1619. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1620. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1621. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1622. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1623. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1624. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1625. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1626. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1627. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1628. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1629. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1630. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1631. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1632. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1633. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1634. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1635. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1636. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1637. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1638. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1639. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1640. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1641. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1642. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1643. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1644. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1645. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1646. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1647. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1648. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1649. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1650. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1651. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1652. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1653. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1654. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1655. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1656. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1657. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1658. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1659. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1660. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1661. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1662. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1663. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1664. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1665. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1666. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1667. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1668. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1669. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1670. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1671. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1672. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1673. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1674. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1675. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1676. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1677. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1678. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1679. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1680. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1681. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1682. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1683. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1684. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1685. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1686. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1687. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1688. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1689. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1690. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1691. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1692. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1693. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1694. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1695. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1696. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1697. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1698. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1699. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1700. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1701. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1702. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1703. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1704. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1705. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1706. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1707. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1708. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1709. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1710. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1711. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1712. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1713. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1714. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1715. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1716. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1717. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1718. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1719. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1720. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1721. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1722. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1723. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1724. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1725. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1726. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1727. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1728. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1729. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1730. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1731. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1732. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1733. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1734. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1735. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1736. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1737. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1738. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1739. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1740. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1741. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1742. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1743. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  1744. this.myTableLayoutPanel1.Size = new System.Drawing.Size(2711, 952);
  1745. this.myTableLayoutPanel1.TabIndex = 2;
  1746. //
  1747. // con2281
  1748. //
  1749. this.con2281.BackColor = System.Drawing.Color.Transparent;
  1750. this.con2281.Dock = System.Windows.Forms.DockStyle.Fill;
  1751. this.con2281.Location = new System.Drawing.Point(1125, 176);
  1752. this.con2281.Margin = new System.Windows.Forms.Padding(0);
  1753. this.con2281.Name = "con2281";
  1754. this.con2281.Size = new System.Drawing.Size(45, 22);
  1755. this.con2281.TabIndex = 870;
  1756. //
  1757. // con2282
  1758. //
  1759. this.con2282.BackColor = System.Drawing.Color.Transparent;
  1760. this.con2282.Dock = System.Windows.Forms.DockStyle.Fill;
  1761. this.con2282.Location = new System.Drawing.Point(720, 176);
  1762. this.con2282.Margin = new System.Windows.Forms.Padding(0);
  1763. this.con2282.Name = "con2282";
  1764. this.con2282.Size = new System.Drawing.Size(45, 22);
  1765. this.con2282.TabIndex = 869;
  1766. //
  1767. // con2010
  1768. //
  1769. this.con2010.BackColor = System.Drawing.Color.Transparent;
  1770. this.con2010.Dock = System.Windows.Forms.DockStyle.Fill;
  1771. this.con2010.Location = new System.Drawing.Point(180, 330);
  1772. this.con2010.Margin = new System.Windows.Forms.Padding(0);
  1773. this.con2010.Name = "con2010";
  1774. this.con2010.Size = new System.Drawing.Size(45, 23);
  1775. this.con2010.TabIndex = 868;
  1776. //
  1777. // con2014
  1778. //
  1779. this.con2014.BackColor = System.Drawing.Color.Transparent;
  1780. this.con2014.Dock = System.Windows.Forms.DockStyle.Fill;
  1781. this.con2014.Location = new System.Drawing.Point(180, 462);
  1782. this.con2014.Margin = new System.Windows.Forms.Padding(0);
  1783. this.con2014.Name = "con2014";
  1784. this.con2014.Size = new System.Drawing.Size(45, 22);
  1785. this.con2014.TabIndex = 867;
  1786. //
  1787. // con2083
  1788. //
  1789. this.con2083.BackColor = System.Drawing.Color.Transparent;
  1790. this.con2083.Dock = System.Windows.Forms.DockStyle.Fill;
  1791. this.con2083.Location = new System.Drawing.Point(180, 704);
  1792. this.con2083.Margin = new System.Windows.Forms.Padding(0);
  1793. this.con2083.Name = "con2083";
  1794. this.con2083.Size = new System.Drawing.Size(45, 22);
  1795. this.con2083.TabIndex = 866;
  1796. //
  1797. // con2137
  1798. //
  1799. this.con2137.BackColor = System.Drawing.Color.Transparent;
  1800. this.con2137.Dock = System.Windows.Forms.DockStyle.Fill;
  1801. this.con2137.Location = new System.Drawing.Point(2202, 242);
  1802. this.con2137.Margin = new System.Windows.Forms.Padding(0);
  1803. this.con2137.Name = "con2137";
  1804. this.con2137.Size = new System.Drawing.Size(45, 22);
  1805. this.con2137.TabIndex = 865;
  1806. //
  1807. // con2125
  1808. //
  1809. this.con2125.BackColor = System.Drawing.Color.Transparent;
  1810. this.con2125.Dock = System.Windows.Forms.DockStyle.Fill;
  1811. this.con2125.Location = new System.Drawing.Point(2202, 506);
  1812. this.con2125.Margin = new System.Windows.Forms.Padding(0);
  1813. this.con2125.Name = "con2125";
  1814. this.con2125.Size = new System.Drawing.Size(45, 22);
  1815. this.con2125.TabIndex = 864;
  1816. //
  1817. // con2116
  1818. //
  1819. this.con2116.BackColor = System.Drawing.Color.Transparent;
  1820. this.con2116.Dock = System.Windows.Forms.DockStyle.Fill;
  1821. this.con2116.Location = new System.Drawing.Point(2202, 726);
  1822. this.con2116.Margin = new System.Windows.Forms.Padding(0);
  1823. this.con2116.Name = "con2116";
  1824. this.con2116.Size = new System.Drawing.Size(45, 22);
  1825. this.con2116.TabIndex = 863;
  1826. //
  1827. // con2275
  1828. //
  1829. this.con2275.BackColor = System.Drawing.Color.Transparent;
  1830. this.con2275.Dock = System.Windows.Forms.DockStyle.Fill;
  1831. this.con2275.Location = new System.Drawing.Point(1302, 176);
  1832. this.con2275.Margin = new System.Windows.Forms.Padding(0);
  1833. this.con2275.Name = "con2275";
  1834. this.con2275.Size = new System.Drawing.Size(45, 22);
  1835. this.con2275.TabIndex = 862;
  1836. //
  1837. // con2276
  1838. //
  1839. this.con2276.BackColor = System.Drawing.Color.Transparent;
  1840. this.con2276.Dock = System.Windows.Forms.DockStyle.Fill;
  1841. this.con2276.Location = new System.Drawing.Point(1215, 176);
  1842. this.con2276.Margin = new System.Windows.Forms.Padding(0);
  1843. this.con2276.Name = "con2276";
  1844. this.con2276.Size = new System.Drawing.Size(46, 22);
  1845. this.con2276.TabIndex = 861;
  1846. //
  1847. // con2277
  1848. //
  1849. this.con2277.BackColor = System.Drawing.Color.Transparent;
  1850. this.con2277.Dock = System.Windows.Forms.DockStyle.Fill;
  1851. this.con2277.Location = new System.Drawing.Point(1035, 176);
  1852. this.con2277.Margin = new System.Windows.Forms.Padding(0);
  1853. this.con2277.Name = "con2277";
  1854. this.con2277.Size = new System.Drawing.Size(45, 22);
  1855. this.con2277.TabIndex = 860;
  1856. //
  1857. // con2278
  1858. //
  1859. this.con2278.BackColor = System.Drawing.Color.Transparent;
  1860. this.con2278.Dock = System.Windows.Forms.DockStyle.Fill;
  1861. this.con2278.Location = new System.Drawing.Point(810, 176);
  1862. this.con2278.Margin = new System.Windows.Forms.Padding(0);
  1863. this.con2278.Name = "con2278";
  1864. this.con2278.Size = new System.Drawing.Size(45, 22);
  1865. this.con2278.TabIndex = 859;
  1866. //
  1867. // con2279
  1868. //
  1869. this.con2279.BackColor = System.Drawing.Color.Transparent;
  1870. this.con2279.Dock = System.Windows.Forms.DockStyle.Fill;
  1871. this.con2279.Location = new System.Drawing.Point(630, 176);
  1872. this.con2279.Margin = new System.Windows.Forms.Padding(0);
  1873. this.con2279.Name = "con2279";
  1874. this.con2279.Size = new System.Drawing.Size(45, 22);
  1875. this.con2279.TabIndex = 858;
  1876. //
  1877. // con2280
  1878. //
  1879. this.con2280.BackColor = System.Drawing.Color.Transparent;
  1880. this.con2280.Dock = System.Windows.Forms.DockStyle.Fill;
  1881. this.con2280.Location = new System.Drawing.Point(540, 176);
  1882. this.con2280.Margin = new System.Windows.Forms.Padding(0);
  1883. this.con2280.Name = "con2280";
  1884. this.con2280.Size = new System.Drawing.Size(45, 22);
  1885. this.con2280.TabIndex = 857;
  1886. //
  1887. // con2202
  1888. //
  1889. this.con2202.Dock = System.Windows.Forms.DockStyle.Fill;
  1890. this.con2202.Location = new System.Drawing.Point(1347, 22);
  1891. this.con2202.Margin = new System.Windows.Forms.Padding(0);
  1892. this.con2202.Name = "con2202";
  1893. this.con2202.Size = new System.Drawing.Size(45, 22);
  1894. this.con2202.TabIndex = 856;
  1895. //
  1896. // con2062
  1897. //
  1898. this.con2062.BackColor = System.Drawing.Color.Transparent;
  1899. this.con2062.Dock = System.Windows.Forms.DockStyle.Fill;
  1900. this.con2062.Location = new System.Drawing.Point(1392, 638);
  1901. this.con2062.Margin = new System.Windows.Forms.Padding(0);
  1902. this.con2062.Name = "con2062";
  1903. this.con2062.Size = new System.Drawing.Size(45, 22);
  1904. this.con2062.TabIndex = 855;
  1905. //
  1906. // con2058
  1907. //
  1908. this.con2058.BackColor = System.Drawing.Color.Transparent;
  1909. this.con2058.Dock = System.Windows.Forms.DockStyle.Fill;
  1910. this.con2058.Location = new System.Drawing.Point(1347, 704);
  1911. this.con2058.Margin = new System.Windows.Forms.Padding(0);
  1912. this.con2058.Name = "con2058";
  1913. this.con2058.Size = new System.Drawing.Size(45, 22);
  1914. this.con2058.TabIndex = 854;
  1915. //
  1916. // con2053
  1917. //
  1918. this.con2053.BackColor = System.Drawing.Color.Transparent;
  1919. this.myTableLayoutPanel1.SetColumnSpan(this.con2053, 2);
  1920. this.con2053.Dock = System.Windows.Forms.DockStyle.Fill;
  1921. this.con2053.Location = new System.Drawing.Point(1261, 704);
  1922. this.con2053.Margin = new System.Windows.Forms.Padding(0);
  1923. this.con2053.Name = "con2053";
  1924. this.con2053.Size = new System.Drawing.Size(86, 22);
  1925. this.con2053.TabIndex = 853;
  1926. //
  1927. // con2057
  1928. //
  1929. this.con2057.BackColor = System.Drawing.Color.Transparent;
  1930. this.con2057.Dock = System.Windows.Forms.DockStyle.Fill;
  1931. this.con2057.Location = new System.Drawing.Point(1302, 638);
  1932. this.con2057.Margin = new System.Windows.Forms.Padding(0);
  1933. this.con2057.Name = "con2057";
  1934. this.con2057.Size = new System.Drawing.Size(45, 22);
  1935. this.con2057.TabIndex = 852;
  1936. //
  1937. // con2055
  1938. //
  1939. this.con2055.BackColor = System.Drawing.Color.Transparent;
  1940. this.con2055.Dock = System.Windows.Forms.DockStyle.Fill;
  1941. this.con2055.Location = new System.Drawing.Point(1261, 660);
  1942. this.con2055.Margin = new System.Windows.Forms.Padding(0);
  1943. this.con2055.Name = "con2055";
  1944. this.con2055.Size = new System.Drawing.Size(41, 22);
  1945. this.con2055.TabIndex = 849;
  1946. //
  1947. // tableCellLabel17
  1948. //
  1949. this.tableCellLabel17.BackColor = System.Drawing.Color.Transparent;
  1950. this.tableCellLabel17.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel17.BackgroundImage")));
  1951. this.tableCellLabel17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1952. this.tableCellLabel17.Dock = System.Windows.Forms.DockStyle.Fill;
  1953. this.tableCellLabel17.Location = new System.Drawing.Point(1261, 638);
  1954. this.tableCellLabel17.Margin = new System.Windows.Forms.Padding(0);
  1955. this.tableCellLabel17.Name = "tableCellLabel17";
  1956. this.tableCellLabel17.Size = new System.Drawing.Size(41, 22);
  1957. this.tableCellLabel17.TabIndex = 850;
  1958. //
  1959. // tableCellLabel18
  1960. //
  1961. this.tableCellLabel18.BackColor = System.Drawing.Color.Transparent;
  1962. this.tableCellLabel18.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel18.BackgroundImage")));
  1963. this.tableCellLabel18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1964. this.tableCellLabel18.Dock = System.Windows.Forms.DockStyle.Fill;
  1965. this.tableCellLabel18.Location = new System.Drawing.Point(1261, 682);
  1966. this.tableCellLabel18.Margin = new System.Windows.Forms.Padding(0);
  1967. this.tableCellLabel18.Name = "tableCellLabel18";
  1968. this.tableCellLabel18.Size = new System.Drawing.Size(41, 22);
  1969. this.tableCellLabel18.TabIndex = 851;
  1970. //
  1971. // con2056
  1972. //
  1973. this.con2056.BackColor = System.Drawing.Color.Transparent;
  1974. this.con2056.Dock = System.Windows.Forms.DockStyle.Fill;
  1975. this.con2056.Location = new System.Drawing.Point(1215, 638);
  1976. this.con2056.Margin = new System.Windows.Forms.Padding(0);
  1977. this.con2056.Name = "con2056";
  1978. this.con2056.Size = new System.Drawing.Size(46, 22);
  1979. this.con2056.TabIndex = 848;
  1980. //
  1981. // con2051
  1982. //
  1983. this.con2051.BackColor = System.Drawing.Color.Transparent;
  1984. this.myTableLayoutPanel1.SetColumnSpan(this.con2051, 2);
  1985. this.con2051.Dock = System.Windows.Forms.DockStyle.Fill;
  1986. this.con2051.Location = new System.Drawing.Point(1170, 704);
  1987. this.con2051.Margin = new System.Windows.Forms.Padding(0);
  1988. this.con2051.Name = "con2051";
  1989. this.con2051.Size = new System.Drawing.Size(91, 22);
  1990. this.con2051.TabIndex = 847;
  1991. //
  1992. // con2050
  1993. //
  1994. this.con2050.BackColor = System.Drawing.Color.Transparent;
  1995. this.con2050.Dock = System.Windows.Forms.DockStyle.Fill;
  1996. this.con2050.Location = new System.Drawing.Point(1125, 638);
  1997. this.con2050.Margin = new System.Windows.Forms.Padding(0);
  1998. this.con2050.Name = "con2050";
  1999. this.con2050.Size = new System.Drawing.Size(45, 22);
  2000. this.con2050.TabIndex = 846;
  2001. //
  2002. // con2048
  2003. //
  2004. this.con2048.BackColor = System.Drawing.Color.Transparent;
  2005. this.con2048.Dock = System.Windows.Forms.DockStyle.Fill;
  2006. this.con2048.Location = new System.Drawing.Point(1080, 660);
  2007. this.con2048.Margin = new System.Windows.Forms.Padding(0);
  2008. this.con2048.Name = "con2048";
  2009. this.con2048.Size = new System.Drawing.Size(45, 22);
  2010. this.con2048.TabIndex = 843;
  2011. //
  2012. // tableCellLabel14
  2013. //
  2014. this.tableCellLabel14.BackColor = System.Drawing.Color.Transparent;
  2015. this.tableCellLabel14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel14.BackgroundImage")));
  2016. this.tableCellLabel14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2017. this.tableCellLabel14.Dock = System.Windows.Forms.DockStyle.Fill;
  2018. this.tableCellLabel14.Location = new System.Drawing.Point(1080, 682);
  2019. this.tableCellLabel14.Margin = new System.Windows.Forms.Padding(0);
  2020. this.tableCellLabel14.Name = "tableCellLabel14";
  2021. this.tableCellLabel14.Size = new System.Drawing.Size(45, 22);
  2022. this.tableCellLabel14.TabIndex = 844;
  2023. //
  2024. // tableCellLabel16
  2025. //
  2026. this.tableCellLabel16.BackColor = System.Drawing.Color.Transparent;
  2027. this.tableCellLabel16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel16.BackgroundImage")));
  2028. this.tableCellLabel16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2029. this.tableCellLabel16.Dock = System.Windows.Forms.DockStyle.Fill;
  2030. this.tableCellLabel16.Location = new System.Drawing.Point(1080, 638);
  2031. this.tableCellLabel16.Margin = new System.Windows.Forms.Padding(0);
  2032. this.tableCellLabel16.Name = "tableCellLabel16";
  2033. this.tableCellLabel16.Size = new System.Drawing.Size(45, 22);
  2034. this.tableCellLabel16.TabIndex = 845;
  2035. //
  2036. // con2049
  2037. //
  2038. this.con2049.BackColor = System.Drawing.Color.Transparent;
  2039. this.con2049.Dock = System.Windows.Forms.DockStyle.Fill;
  2040. this.con2049.Location = new System.Drawing.Point(1035, 638);
  2041. this.con2049.Margin = new System.Windows.Forms.Padding(0);
  2042. this.con2049.Name = "con2049";
  2043. this.con2049.Size = new System.Drawing.Size(45, 22);
  2044. this.con2049.TabIndex = 842;
  2045. //
  2046. // con2041
  2047. //
  2048. this.con2041.BackColor = System.Drawing.Color.Transparent;
  2049. this.con2041.Dock = System.Windows.Forms.DockStyle.Fill;
  2050. this.con2041.Location = new System.Drawing.Point(945, 638);
  2051. this.con2041.Margin = new System.Windows.Forms.Padding(0);
  2052. this.con2041.Name = "con2041";
  2053. this.con2041.Size = new System.Drawing.Size(45, 22);
  2054. this.con2041.TabIndex = 841;
  2055. //
  2056. // con2039
  2057. //
  2058. this.con2039.BackColor = System.Drawing.Color.Transparent;
  2059. this.con2039.Dock = System.Windows.Forms.DockStyle.Fill;
  2060. this.con2039.Location = new System.Drawing.Point(945, 704);
  2061. this.con2039.Margin = new System.Windows.Forms.Padding(0);
  2062. this.con2039.Name = "con2039";
  2063. this.con2039.Size = new System.Drawing.Size(45, 22);
  2064. this.con2039.TabIndex = 840;
  2065. //
  2066. // con2042
  2067. //
  2068. this.con2042.BackColor = System.Drawing.Color.Transparent;
  2069. this.con2042.Dock = System.Windows.Forms.DockStyle.Fill;
  2070. this.con2042.Location = new System.Drawing.Point(900, 638);
  2071. this.con2042.Margin = new System.Windows.Forms.Padding(0);
  2072. this.con2042.Name = "con2042";
  2073. this.con2042.Size = new System.Drawing.Size(45, 22);
  2074. this.con2042.TabIndex = 839;
  2075. //
  2076. // con2035
  2077. //
  2078. this.con2035.BackColor = System.Drawing.Color.Transparent;
  2079. this.con2035.Dock = System.Windows.Forms.DockStyle.Fill;
  2080. this.con2035.Location = new System.Drawing.Point(810, 638);
  2081. this.con2035.Margin = new System.Windows.Forms.Padding(0);
  2082. this.con2035.Name = "con2035";
  2083. this.con2035.Size = new System.Drawing.Size(45, 22);
  2084. this.con2035.TabIndex = 838;
  2085. this.con2035.Load += new System.EventHandler(this.con2035_Load);
  2086. //
  2087. // con2033
  2088. //
  2089. this.con2033.BackColor = System.Drawing.Color.Transparent;
  2090. this.con2033.Dock = System.Windows.Forms.DockStyle.Fill;
  2091. this.con2033.Location = new System.Drawing.Point(765, 660);
  2092. this.con2033.Margin = new System.Windows.Forms.Padding(0);
  2093. this.con2033.Name = "con2033";
  2094. this.con2033.Size = new System.Drawing.Size(45, 22);
  2095. this.con2033.TabIndex = 835;
  2096. //
  2097. // tableCellLabel12
  2098. //
  2099. this.tableCellLabel12.BackColor = System.Drawing.Color.Transparent;
  2100. this.tableCellLabel12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel12.BackgroundImage")));
  2101. this.tableCellLabel12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2102. this.tableCellLabel12.Dock = System.Windows.Forms.DockStyle.Fill;
  2103. this.tableCellLabel12.Location = new System.Drawing.Point(765, 682);
  2104. this.tableCellLabel12.Margin = new System.Windows.Forms.Padding(0);
  2105. this.tableCellLabel12.Name = "tableCellLabel12";
  2106. this.tableCellLabel12.Size = new System.Drawing.Size(45, 22);
  2107. this.tableCellLabel12.TabIndex = 836;
  2108. //
  2109. // tableCellLabel13
  2110. //
  2111. this.tableCellLabel13.BackColor = System.Drawing.Color.Transparent;
  2112. this.tableCellLabel13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel13.BackgroundImage")));
  2113. this.tableCellLabel13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2114. this.tableCellLabel13.Dock = System.Windows.Forms.DockStyle.Fill;
  2115. this.tableCellLabel13.Location = new System.Drawing.Point(765, 638);
  2116. this.tableCellLabel13.Margin = new System.Windows.Forms.Padding(0);
  2117. this.tableCellLabel13.Name = "tableCellLabel13";
  2118. this.tableCellLabel13.Size = new System.Drawing.Size(45, 22);
  2119. this.tableCellLabel13.TabIndex = 837;
  2120. //
  2121. // con2034
  2122. //
  2123. this.con2034.BackColor = System.Drawing.Color.Transparent;
  2124. this.con2034.Dock = System.Windows.Forms.DockStyle.Fill;
  2125. this.con2034.Location = new System.Drawing.Point(720, 638);
  2126. this.con2034.Margin = new System.Windows.Forms.Padding(0);
  2127. this.con2034.Name = "con2034";
  2128. this.con2034.Size = new System.Drawing.Size(45, 22);
  2129. this.con2034.TabIndex = 834;
  2130. //
  2131. // con2028
  2132. //
  2133. this.con2028.BackColor = System.Drawing.Color.Transparent;
  2134. this.con2028.Dock = System.Windows.Forms.DockStyle.Fill;
  2135. this.con2028.Location = new System.Drawing.Point(630, 638);
  2136. this.con2028.Margin = new System.Windows.Forms.Padding(0);
  2137. this.con2028.Name = "con2028";
  2138. this.con2028.Size = new System.Drawing.Size(45, 22);
  2139. this.con2028.TabIndex = 833;
  2140. //
  2141. // con2026
  2142. //
  2143. this.con2026.BackColor = System.Drawing.Color.Transparent;
  2144. this.con2026.Dock = System.Windows.Forms.DockStyle.Fill;
  2145. this.con2026.Location = new System.Drawing.Point(585, 660);
  2146. this.con2026.Margin = new System.Windows.Forms.Padding(0);
  2147. this.con2026.Name = "con2026";
  2148. this.con2026.Size = new System.Drawing.Size(45, 22);
  2149. this.con2026.TabIndex = 830;
  2150. //
  2151. // tableCellLabel10
  2152. //
  2153. this.tableCellLabel10.BackColor = System.Drawing.Color.Transparent;
  2154. this.tableCellLabel10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel10.BackgroundImage")));
  2155. this.tableCellLabel10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2156. this.tableCellLabel10.Dock = System.Windows.Forms.DockStyle.Fill;
  2157. this.tableCellLabel10.Location = new System.Drawing.Point(585, 682);
  2158. this.tableCellLabel10.Margin = new System.Windows.Forms.Padding(0);
  2159. this.tableCellLabel10.Name = "tableCellLabel10";
  2160. this.tableCellLabel10.Size = new System.Drawing.Size(45, 22);
  2161. this.tableCellLabel10.TabIndex = 831;
  2162. //
  2163. // tableCellLabel11
  2164. //
  2165. this.tableCellLabel11.BackColor = System.Drawing.Color.Transparent;
  2166. this.tableCellLabel11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel11.BackgroundImage")));
  2167. this.tableCellLabel11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2168. this.tableCellLabel11.Dock = System.Windows.Forms.DockStyle.Fill;
  2169. this.tableCellLabel11.Location = new System.Drawing.Point(585, 638);
  2170. this.tableCellLabel11.Margin = new System.Windows.Forms.Padding(0);
  2171. this.tableCellLabel11.Name = "tableCellLabel11";
  2172. this.tableCellLabel11.Size = new System.Drawing.Size(45, 22);
  2173. this.tableCellLabel11.TabIndex = 832;
  2174. //
  2175. // con2027
  2176. //
  2177. this.con2027.BackColor = System.Drawing.Color.Transparent;
  2178. this.con2027.Dock = System.Windows.Forms.DockStyle.Fill;
  2179. this.con2027.Location = new System.Drawing.Point(540, 638);
  2180. this.con2027.Margin = new System.Windows.Forms.Padding(0);
  2181. this.con2027.Name = "con2027";
  2182. this.con2027.Size = new System.Drawing.Size(45, 22);
  2183. this.con2027.TabIndex = 829;
  2184. //
  2185. // con2022
  2186. //
  2187. this.con2022.BackColor = System.Drawing.Color.Transparent;
  2188. this.con2022.Dock = System.Windows.Forms.DockStyle.Fill;
  2189. this.con2022.Location = new System.Drawing.Point(450, 704);
  2190. this.con2022.Margin = new System.Windows.Forms.Padding(0);
  2191. this.con2022.Name = "con2022";
  2192. this.con2022.Size = new System.Drawing.Size(45, 22);
  2193. this.con2022.TabIndex = 828;
  2194. //
  2195. // con2021
  2196. //
  2197. this.con2021.BackColor = System.Drawing.Color.Transparent;
  2198. this.con2021.Dock = System.Windows.Forms.DockStyle.Fill;
  2199. this.con2021.Location = new System.Drawing.Point(450, 638);
  2200. this.con2021.Margin = new System.Windows.Forms.Padding(0);
  2201. this.con2021.Name = "con2021";
  2202. this.con2021.Size = new System.Drawing.Size(45, 22);
  2203. this.con2021.TabIndex = 827;
  2204. //
  2205. // con2309
  2206. //
  2207. this.con2309.Dock = System.Windows.Forms.DockStyle.Fill;
  2208. this.con2309.Location = new System.Drawing.Point(90, 66);
  2209. this.con2309.Margin = new System.Windows.Forms.Padding(0);
  2210. this.con2309.Name = "con2309";
  2211. this.myTableLayoutPanel1.SetRowSpan(this.con2309, 2);
  2212. this.con2309.Size = new System.Drawing.Size(45, 44);
  2213. this.con2309.TabIndex = 825;
  2214. //
  2215. // con2310
  2216. //
  2217. this.con2310.Dock = System.Windows.Forms.DockStyle.Fill;
  2218. this.con2310.Location = new System.Drawing.Point(90, 110);
  2219. this.con2310.Margin = new System.Windows.Forms.Padding(0);
  2220. this.con2310.Name = "con2310";
  2221. this.myTableLayoutPanel1.SetRowSpan(this.con2310, 2);
  2222. this.con2310.Size = new System.Drawing.Size(45, 44);
  2223. this.con2310.TabIndex = 826;
  2224. //
  2225. // con2261
  2226. //
  2227. this.con2261.Dock = System.Windows.Forms.DockStyle.Fill;
  2228. this.con2261.Location = new System.Drawing.Point(1707, 242);
  2229. this.con2261.Margin = new System.Windows.Forms.Padding(0);
  2230. this.con2261.Name = "con2261";
  2231. this.con2261.Size = new System.Drawing.Size(45, 22);
  2232. this.con2261.TabIndex = 824;
  2233. //
  2234. // con2262
  2235. //
  2236. this.con2262.Dock = System.Windows.Forms.DockStyle.Fill;
  2237. this.con2262.Location = new System.Drawing.Point(1707, 220);
  2238. this.con2262.Margin = new System.Windows.Forms.Padding(0);
  2239. this.con2262.Name = "con2262";
  2240. this.con2262.Size = new System.Drawing.Size(45, 22);
  2241. this.con2262.TabIndex = 823;
  2242. //
  2243. // con2260
  2244. //
  2245. this.con2260.Dock = System.Windows.Forms.DockStyle.Fill;
  2246. this.con2260.Location = new System.Drawing.Point(1617, 220);
  2247. this.con2260.Margin = new System.Windows.Forms.Padding(0);
  2248. this.con2260.Name = "con2260";
  2249. this.con2260.Size = new System.Drawing.Size(45, 22);
  2250. this.con2260.TabIndex = 822;
  2251. //
  2252. // con2259
  2253. //
  2254. this.con2259.Dock = System.Windows.Forms.DockStyle.Fill;
  2255. this.con2259.Location = new System.Drawing.Point(1617, 242);
  2256. this.con2259.Margin = new System.Windows.Forms.Padding(0);
  2257. this.con2259.Name = "con2259";
  2258. this.con2259.Size = new System.Drawing.Size(45, 22);
  2259. this.con2259.TabIndex = 821;
  2260. //
  2261. // conveyor3_A17
  2262. //
  2263. this.conveyor3_A17.Dock = System.Windows.Forms.DockStyle.Fill;
  2264. this.conveyor3_A17.Location = new System.Drawing.Point(1977, 242);
  2265. this.conveyor3_A17.Margin = new System.Windows.Forms.Padding(0);
  2266. this.conveyor3_A17.Name = "conveyor3_A17";
  2267. this.conveyor3_A17.Size = new System.Drawing.Size(45, 22);
  2268. this.conveyor3_A17.TabIndex = 820;
  2269. //
  2270. // con2263
  2271. //
  2272. this.con2263.Dock = System.Windows.Forms.DockStyle.Fill;
  2273. this.con2263.Location = new System.Drawing.Point(1887, 242);
  2274. this.con2263.Margin = new System.Windows.Forms.Padding(0);
  2275. this.con2263.Name = "con2263";
  2276. this.con2263.Size = new System.Drawing.Size(45, 22);
  2277. this.con2263.TabIndex = 819;
  2278. //
  2279. // con2264
  2280. //
  2281. this.con2264.Dock = System.Windows.Forms.DockStyle.Fill;
  2282. this.con2264.Location = new System.Drawing.Point(1887, 220);
  2283. this.con2264.Margin = new System.Windows.Forms.Padding(0);
  2284. this.con2264.Name = "con2264";
  2285. this.con2264.Size = new System.Drawing.Size(45, 22);
  2286. this.con2264.TabIndex = 818;
  2287. //
  2288. // con2265
  2289. //
  2290. this.con2265.Dock = System.Windows.Forms.DockStyle.Fill;
  2291. this.con2265.Location = new System.Drawing.Point(1977, 220);
  2292. this.con2265.Margin = new System.Windows.Forms.Padding(0);
  2293. this.con2265.Name = "con2265";
  2294. this.con2265.Size = new System.Drawing.Size(45, 22);
  2295. this.con2265.TabIndex = 817;
  2296. //
  2297. // tableCellLabel23
  2298. //
  2299. this.tableCellLabel23.BackColor = System.Drawing.Color.Transparent;
  2300. this.tableCellLabel23.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel23.BackgroundImage")));
  2301. this.tableCellLabel23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2302. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel23, 6);
  2303. this.tableCellLabel23.Dock = System.Windows.Forms.DockStyle.Fill;
  2304. this.tableCellLabel23.Location = new System.Drawing.Point(1752, 264);
  2305. this.tableCellLabel23.Margin = new System.Windows.Forms.Padding(0);
  2306. this.tableCellLabel23.Name = "tableCellLabel23";
  2307. this.tableCellLabel23.Size = new System.Drawing.Size(270, 22);
  2308. this.tableCellLabel23.TabIndex = 815;
  2309. this.tableCellLabel23.Load += new System.EventHandler(this.tableCellLabel23_Load);
  2310. //
  2311. // tableCellLabel24
  2312. //
  2313. this.tableCellLabel24.BackColor = System.Drawing.Color.Transparent;
  2314. this.tableCellLabel24.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel24.BackgroundImage")));
  2315. this.tableCellLabel24.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2316. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel24, 4);
  2317. this.tableCellLabel24.Dock = System.Windows.Forms.DockStyle.Fill;
  2318. this.tableCellLabel24.Location = new System.Drawing.Point(1527, 264);
  2319. this.tableCellLabel24.Margin = new System.Windows.Forms.Padding(0);
  2320. this.tableCellLabel24.Name = "tableCellLabel24";
  2321. this.tableCellLabel24.Size = new System.Drawing.Size(180, 22);
  2322. this.tableCellLabel24.TabIndex = 814;
  2323. //
  2324. // conrgv1
  2325. //
  2326. this.conrgv1.BackColor = System.Drawing.Color.Transparent;
  2327. this.conrgv1.Dock = System.Windows.Forms.DockStyle.Fill;
  2328. this.conrgv1.Location = new System.Drawing.Point(1707, 264);
  2329. this.conrgv1.Margin = new System.Windows.Forms.Padding(0);
  2330. this.conrgv1.Name = "conrgv1";
  2331. this.conrgv1.Size = new System.Drawing.Size(45, 22);
  2332. this.conrgv1.TabIndex = 816;
  2333. //
  2334. // con2256
  2335. //
  2336. this.con2256.Dock = System.Windows.Forms.DockStyle.Fill;
  2337. this.con2256.Location = new System.Drawing.Point(1977, 286);
  2338. this.con2256.Margin = new System.Windows.Forms.Padding(0);
  2339. this.con2256.Name = "con2256";
  2340. this.myTableLayoutPanel1.SetRowSpan(this.con2256, 2);
  2341. this.con2256.Size = new System.Drawing.Size(45, 44);
  2342. this.con2256.TabIndex = 813;
  2343. //
  2344. // con2252
  2345. //
  2346. this.con2252.Dock = System.Windows.Forms.DockStyle.Fill;
  2347. this.con2252.Location = new System.Drawing.Point(1617, 286);
  2348. this.con2252.Margin = new System.Windows.Forms.Padding(0);
  2349. this.con2252.Name = "con2252";
  2350. this.myTableLayoutPanel1.SetRowSpan(this.con2252, 2);
  2351. this.con2252.Size = new System.Drawing.Size(45, 44);
  2352. this.con2252.TabIndex = 812;
  2353. //
  2354. // con2253
  2355. //
  2356. this.con2253.Dock = System.Windows.Forms.DockStyle.Fill;
  2357. this.con2253.Location = new System.Drawing.Point(1707, 286);
  2358. this.con2253.Margin = new System.Windows.Forms.Padding(0);
  2359. this.con2253.Name = "con2253";
  2360. this.myTableLayoutPanel1.SetRowSpan(this.con2253, 2);
  2361. this.con2253.Size = new System.Drawing.Size(45, 44);
  2362. this.con2253.TabIndex = 811;
  2363. //
  2364. // con2254
  2365. //
  2366. this.con2254.Dock = System.Windows.Forms.DockStyle.Fill;
  2367. this.con2254.Location = new System.Drawing.Point(1797, 286);
  2368. this.con2254.Margin = new System.Windows.Forms.Padding(0);
  2369. this.con2254.Name = "con2254";
  2370. this.myTableLayoutPanel1.SetRowSpan(this.con2254, 2);
  2371. this.con2254.Size = new System.Drawing.Size(45, 44);
  2372. this.con2254.TabIndex = 810;
  2373. //
  2374. // con2251
  2375. //
  2376. this.con2251.Dock = System.Windows.Forms.DockStyle.Fill;
  2377. this.con2251.Location = new System.Drawing.Point(1527, 286);
  2378. this.con2251.Margin = new System.Windows.Forms.Padding(0);
  2379. this.con2251.Name = "con2251";
  2380. this.myTableLayoutPanel1.SetRowSpan(this.con2251, 2);
  2381. this.con2251.Size = new System.Drawing.Size(45, 44);
  2382. this.con2251.TabIndex = 809;
  2383. //
  2384. // con2255
  2385. //
  2386. this.con2255.Dock = System.Windows.Forms.DockStyle.Fill;
  2387. this.con2255.Location = new System.Drawing.Point(1887, 286);
  2388. this.con2255.Margin = new System.Windows.Forms.Padding(0);
  2389. this.con2255.Name = "con2255";
  2390. this.myTableLayoutPanel1.SetRowSpan(this.con2255, 2);
  2391. this.con2255.Size = new System.Drawing.Size(45, 44);
  2392. this.con2255.TabIndex = 808;
  2393. //
  2394. // con2198
  2395. //
  2396. this.con2198.Dock = System.Windows.Forms.DockStyle.Fill;
  2397. this.con2198.Location = new System.Drawing.Point(1261, 66);
  2398. this.con2198.Margin = new System.Windows.Forms.Padding(0);
  2399. this.con2198.Name = "con2198";
  2400. this.con2198.Size = new System.Drawing.Size(41, 22);
  2401. this.con2198.TabIndex = 804;
  2402. //
  2403. // con2192
  2404. //
  2405. this.con2192.Dock = System.Windows.Forms.DockStyle.Fill;
  2406. this.con2192.Location = new System.Drawing.Point(1347, 66);
  2407. this.con2192.Margin = new System.Windows.Forms.Padding(0);
  2408. this.con2192.Name = "con2192";
  2409. this.con2192.Size = new System.Drawing.Size(45, 22);
  2410. this.con2192.TabIndex = 803;
  2411. //
  2412. // con2195
  2413. //
  2414. this.con2195.Dock = System.Windows.Forms.DockStyle.Fill;
  2415. this.con2195.Location = new System.Drawing.Point(1302, 66);
  2416. this.con2195.Margin = new System.Windows.Forms.Padding(0);
  2417. this.con2195.Name = "con2195";
  2418. this.con2195.Size = new System.Drawing.Size(45, 22);
  2419. this.con2195.TabIndex = 802;
  2420. //
  2421. // con2201
  2422. //
  2423. this.con2201.Dock = System.Windows.Forms.DockStyle.Fill;
  2424. this.con2201.Location = new System.Drawing.Point(1215, 66);
  2425. this.con2201.Margin = new System.Windows.Forms.Padding(0);
  2426. this.con2201.Name = "con2201";
  2427. this.con2201.Size = new System.Drawing.Size(46, 22);
  2428. this.con2201.TabIndex = 801;
  2429. //
  2430. // con2203
  2431. //
  2432. this.con2203.Dock = System.Windows.Forms.DockStyle.Fill;
  2433. this.con2203.Location = new System.Drawing.Point(1662, 66);
  2434. this.con2203.Margin = new System.Windows.Forms.Padding(0);
  2435. this.con2203.Name = "con2203";
  2436. this.con2203.Size = new System.Drawing.Size(45, 22);
  2437. this.con2203.TabIndex = 800;
  2438. //
  2439. // con2206
  2440. //
  2441. this.con2206.Dock = System.Windows.Forms.DockStyle.Fill;
  2442. this.con2206.Location = new System.Drawing.Point(1797, 66);
  2443. this.con2206.Margin = new System.Windows.Forms.Padding(0);
  2444. this.con2206.Name = "con2206";
  2445. this.con2206.Size = new System.Drawing.Size(45, 22);
  2446. this.con2206.TabIndex = 799;
  2447. //
  2448. // con2204
  2449. //
  2450. this.con2204.Dock = System.Windows.Forms.DockStyle.Fill;
  2451. this.con2204.Location = new System.Drawing.Point(1707, 66);
  2452. this.con2204.Margin = new System.Windows.Forms.Padding(0);
  2453. this.con2204.Name = "con2204";
  2454. this.con2204.Size = new System.Drawing.Size(45, 22);
  2455. this.con2204.TabIndex = 798;
  2456. //
  2457. // con2205
  2458. //
  2459. this.con2205.Dock = System.Windows.Forms.DockStyle.Fill;
  2460. this.con2205.Location = new System.Drawing.Point(1752, 66);
  2461. this.con2205.Margin = new System.Windows.Forms.Padding(0);
  2462. this.con2205.Name = "con2205";
  2463. this.con2205.Size = new System.Drawing.Size(45, 22);
  2464. this.con2205.TabIndex = 797;
  2465. //
  2466. // con2153
  2467. //
  2468. this.con2153.Dock = System.Windows.Forms.DockStyle.Fill;
  2469. this.con2153.Location = new System.Drawing.Point(1887, 66);
  2470. this.con2153.Margin = new System.Windows.Forms.Padding(0);
  2471. this.con2153.Name = "con2153";
  2472. this.con2153.Size = new System.Drawing.Size(45, 22);
  2473. this.con2153.TabIndex = 796;
  2474. //
  2475. // con2207
  2476. //
  2477. this.con2207.Dock = System.Windows.Forms.DockStyle.Fill;
  2478. this.con2207.Location = new System.Drawing.Point(1662, 88);
  2479. this.con2207.Margin = new System.Windows.Forms.Padding(0);
  2480. this.con2207.Name = "con2207";
  2481. this.con2207.Size = new System.Drawing.Size(45, 22);
  2482. this.con2207.TabIndex = 795;
  2483. //
  2484. // con2208
  2485. //
  2486. this.con2208.Dock = System.Windows.Forms.DockStyle.Fill;
  2487. this.con2208.Location = new System.Drawing.Point(1707, 88);
  2488. this.con2208.Margin = new System.Windows.Forms.Padding(0);
  2489. this.con2208.Name = "con2208";
  2490. this.con2208.Size = new System.Drawing.Size(45, 22);
  2491. this.con2208.TabIndex = 794;
  2492. //
  2493. // con2209
  2494. //
  2495. this.con2209.Dock = System.Windows.Forms.DockStyle.Fill;
  2496. this.con2209.Location = new System.Drawing.Point(1752, 88);
  2497. this.con2209.Margin = new System.Windows.Forms.Padding(0);
  2498. this.con2209.Name = "con2209";
  2499. this.con2209.Size = new System.Drawing.Size(45, 22);
  2500. this.con2209.TabIndex = 793;
  2501. //
  2502. // conrgv3
  2503. //
  2504. this.conrgv3.BackColor = System.Drawing.Color.Transparent;
  2505. this.conrgv3.Dock = System.Windows.Forms.DockStyle.Fill;
  2506. this.conrgv3.Location = new System.Drawing.Point(1437, 44);
  2507. this.conrgv3.Margin = new System.Windows.Forms.Padding(0);
  2508. this.conrgv3.Name = "conrgv3";
  2509. this.conrgv3.Size = new System.Drawing.Size(45, 22);
  2510. this.conrgv3.TabIndex = 792;
  2511. //
  2512. // tableCellLabel1
  2513. //
  2514. this.tableCellLabel1.BackColor = System.Drawing.Color.Transparent;
  2515. this.tableCellLabel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel1.BackgroundImage")));
  2516. this.tableCellLabel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2517. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel1, 9);
  2518. this.tableCellLabel1.Dock = System.Windows.Forms.DockStyle.Fill;
  2519. this.tableCellLabel1.Location = new System.Drawing.Point(1482, 44);
  2520. this.tableCellLabel1.Margin = new System.Windows.Forms.Padding(0);
  2521. this.tableCellLabel1.Name = "tableCellLabel1";
  2522. this.tableCellLabel1.Size = new System.Drawing.Size(405, 22);
  2523. this.tableCellLabel1.TabIndex = 791;
  2524. //
  2525. // tableCellLabel2
  2526. //
  2527. this.tableCellLabel2.BackColor = System.Drawing.Color.Transparent;
  2528. this.tableCellLabel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel2.BackgroundImage")));
  2529. this.tableCellLabel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2530. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel2, 8);
  2531. this.tableCellLabel2.Dock = System.Windows.Forms.DockStyle.Fill;
  2532. this.tableCellLabel2.Location = new System.Drawing.Point(1080, 44);
  2533. this.tableCellLabel2.Margin = new System.Windows.Forms.Padding(0);
  2534. this.tableCellLabel2.Name = "tableCellLabel2";
  2535. this.tableCellLabel2.Size = new System.Drawing.Size(357, 22);
  2536. this.tableCellLabel2.TabIndex = 790;
  2537. //
  2538. // con2187
  2539. //
  2540. this.con2187.Dock = System.Windows.Forms.DockStyle.Fill;
  2541. this.con2187.Location = new System.Drawing.Point(1527, 66);
  2542. this.con2187.Margin = new System.Windows.Forms.Padding(0);
  2543. this.con2187.Name = "con2187";
  2544. this.con2187.Size = new System.Drawing.Size(45, 22);
  2545. this.con2187.TabIndex = 789;
  2546. //
  2547. // con2182
  2548. //
  2549. this.con2182.Dock = System.Windows.Forms.DockStyle.Fill;
  2550. this.con2182.Location = new System.Drawing.Point(1572, 66);
  2551. this.con2182.Margin = new System.Windows.Forms.Padding(0);
  2552. this.con2182.Name = "con2182";
  2553. this.con2182.Size = new System.Drawing.Size(45, 22);
  2554. this.con2182.TabIndex = 788;
  2555. //
  2556. // con2181
  2557. //
  2558. this.con2181.Dock = System.Windows.Forms.DockStyle.Fill;
  2559. this.con2181.Location = new System.Drawing.Point(1527, 88);
  2560. this.con2181.Margin = new System.Windows.Forms.Padding(0);
  2561. this.con2181.Name = "con2181";
  2562. this.con2181.Size = new System.Drawing.Size(45, 22);
  2563. this.con2181.TabIndex = 787;
  2564. //
  2565. // con2180
  2566. //
  2567. this.con2180.Dock = System.Windows.Forms.DockStyle.Fill;
  2568. this.con2180.Location = new System.Drawing.Point(1572, 88);
  2569. this.con2180.Margin = new System.Windows.Forms.Padding(0);
  2570. this.con2180.Name = "con2180";
  2571. this.con2180.Size = new System.Drawing.Size(45, 22);
  2572. this.con2180.TabIndex = 786;
  2573. //
  2574. // con2271
  2575. //
  2576. this.con2271.Dock = System.Windows.Forms.DockStyle.Fill;
  2577. this.con2271.Location = new System.Drawing.Point(1887, 44);
  2578. this.con2271.Margin = new System.Windows.Forms.Padding(0);
  2579. this.con2271.Name = "con2271";
  2580. this.con2271.Size = new System.Drawing.Size(45, 22);
  2581. this.con2271.TabIndex = 785;
  2582. //
  2583. // con2211
  2584. //
  2585. this.con2211.Dock = System.Windows.Forms.DockStyle.Fill;
  2586. this.con2211.Location = new System.Drawing.Point(1842, 88);
  2587. this.con2211.Margin = new System.Windows.Forms.Padding(0);
  2588. this.con2211.Name = "con2211";
  2589. this.con2211.Size = new System.Drawing.Size(45, 22);
  2590. this.con2211.TabIndex = 784;
  2591. //
  2592. // con2152
  2593. //
  2594. this.con2152.Dock = System.Windows.Forms.DockStyle.Fill;
  2595. this.con2152.Location = new System.Drawing.Point(1887, 22);
  2596. this.con2152.Margin = new System.Windows.Forms.Padding(0);
  2597. this.con2152.Name = "con2152";
  2598. this.con2152.Size = new System.Drawing.Size(45, 22);
  2599. this.con2152.TabIndex = 783;
  2600. //
  2601. // con2210
  2602. //
  2603. this.con2210.Dock = System.Windows.Forms.DockStyle.Fill;
  2604. this.con2210.Location = new System.Drawing.Point(1797, 88);
  2605. this.con2210.Margin = new System.Windows.Forms.Padding(0);
  2606. this.con2210.Name = "con2210";
  2607. this.con2210.Size = new System.Drawing.Size(45, 22);
  2608. this.con2210.TabIndex = 782;
  2609. //
  2610. // tableCellLabel3
  2611. //
  2612. this.tableCellLabel3.BackColor = System.Drawing.Color.Transparent;
  2613. this.tableCellLabel3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel3.BackgroundImage")));
  2614. this.tableCellLabel3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2615. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel3, 6);
  2616. this.tableCellLabel3.Dock = System.Windows.Forms.DockStyle.Fill;
  2617. this.tableCellLabel3.Location = new System.Drawing.Point(1527, 110);
  2618. this.tableCellLabel3.Margin = new System.Windows.Forms.Padding(0);
  2619. this.tableCellLabel3.Name = "tableCellLabel3";
  2620. this.tableCellLabel3.Size = new System.Drawing.Size(270, 22);
  2621. this.tableCellLabel3.TabIndex = 780;
  2622. //
  2623. // tableCellLabel4
  2624. //
  2625. this.tableCellLabel4.BackColor = System.Drawing.Color.Transparent;
  2626. this.tableCellLabel4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel4.BackgroundImage")));
  2627. this.tableCellLabel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2628. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel4, 4);
  2629. this.tableCellLabel4.Dock = System.Windows.Forms.DockStyle.Fill;
  2630. this.tableCellLabel4.Location = new System.Drawing.Point(1842, 110);
  2631. this.tableCellLabel4.Margin = new System.Windows.Forms.Padding(0);
  2632. this.tableCellLabel4.Name = "tableCellLabel4";
  2633. this.tableCellLabel4.Size = new System.Drawing.Size(180, 22);
  2634. this.tableCellLabel4.TabIndex = 779;
  2635. //
  2636. // conrgv2
  2637. //
  2638. this.conrgv2.BackColor = System.Drawing.Color.Transparent;
  2639. this.conrgv2.Dock = System.Windows.Forms.DockStyle.Fill;
  2640. this.conrgv2.Location = new System.Drawing.Point(1797, 110);
  2641. this.conrgv2.Margin = new System.Windows.Forms.Padding(0);
  2642. this.conrgv2.Name = "conrgv2";
  2643. this.conrgv2.Size = new System.Drawing.Size(45, 22);
  2644. this.conrgv2.TabIndex = 781;
  2645. //
  2646. // tableCellLabel6
  2647. //
  2648. this.tableCellLabel6.BackColor = System.Drawing.Color.Transparent;
  2649. this.tableCellLabel6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel6.BackgroundImage")));
  2650. this.tableCellLabel6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2651. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel6, 3);
  2652. this.tableCellLabel6.Dock = System.Windows.Forms.DockStyle.Fill;
  2653. this.tableCellLabel6.Location = new System.Drawing.Point(1797, 638);
  2654. this.tableCellLabel6.Margin = new System.Windows.Forms.Padding(0);
  2655. this.tableCellLabel6.Name = "tableCellLabel6";
  2656. this.tableCellLabel6.Size = new System.Drawing.Size(135, 22);
  2657. this.tableCellLabel6.TabIndex = 778;
  2658. //
  2659. // tableCellLabel8
  2660. //
  2661. this.tableCellLabel8.BackColor = System.Drawing.Color.Transparent;
  2662. this.tableCellLabel8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel8.BackgroundImage")));
  2663. this.tableCellLabel8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2664. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel8, 3);
  2665. this.tableCellLabel8.Dock = System.Windows.Forms.DockStyle.Fill;
  2666. this.tableCellLabel8.Location = new System.Drawing.Point(1617, 638);
  2667. this.tableCellLabel8.Margin = new System.Windows.Forms.Padding(0);
  2668. this.tableCellLabel8.Name = "tableCellLabel8";
  2669. this.tableCellLabel8.Size = new System.Drawing.Size(135, 22);
  2670. this.tableCellLabel8.TabIndex = 777;
  2671. //
  2672. // con2172
  2673. //
  2674. this.con2172.Dock = System.Windows.Forms.DockStyle.Fill;
  2675. this.con2172.Location = new System.Drawing.Point(1527, 132);
  2676. this.con2172.Margin = new System.Windows.Forms.Padding(0);
  2677. this.con2172.Name = "con2172";
  2678. this.myTableLayoutPanel1.SetRowSpan(this.con2172, 2);
  2679. this.con2172.Size = new System.Drawing.Size(45, 44);
  2680. this.con2172.TabIndex = 776;
  2681. //
  2682. // con2173
  2683. //
  2684. this.con2173.Dock = System.Windows.Forms.DockStyle.Fill;
  2685. this.con2173.Location = new System.Drawing.Point(1617, 132);
  2686. this.con2173.Margin = new System.Windows.Forms.Padding(0);
  2687. this.con2173.Name = "con2173";
  2688. this.myTableLayoutPanel1.SetRowSpan(this.con2173, 2);
  2689. this.con2173.Size = new System.Drawing.Size(45, 44);
  2690. this.con2173.TabIndex = 775;
  2691. //
  2692. // con2174
  2693. //
  2694. this.con2174.Dock = System.Windows.Forms.DockStyle.Fill;
  2695. this.con2174.Location = new System.Drawing.Point(1707, 132);
  2696. this.con2174.Margin = new System.Windows.Forms.Padding(0);
  2697. this.con2174.Name = "con2174";
  2698. this.myTableLayoutPanel1.SetRowSpan(this.con2174, 2);
  2699. this.con2174.Size = new System.Drawing.Size(45, 44);
  2700. this.con2174.TabIndex = 774;
  2701. //
  2702. // con2175
  2703. //
  2704. this.con2175.Dock = System.Windows.Forms.DockStyle.Fill;
  2705. this.con2175.Location = new System.Drawing.Point(1797, 132);
  2706. this.con2175.Margin = new System.Windows.Forms.Padding(0);
  2707. this.con2175.Name = "con2175";
  2708. this.myTableLayoutPanel1.SetRowSpan(this.con2175, 2);
  2709. this.con2175.Size = new System.Drawing.Size(45, 44);
  2710. this.con2175.TabIndex = 773;
  2711. //
  2712. // con2176
  2713. //
  2714. this.con2176.Dock = System.Windows.Forms.DockStyle.Fill;
  2715. this.con2176.Location = new System.Drawing.Point(1887, 132);
  2716. this.con2176.Margin = new System.Windows.Forms.Padding(0);
  2717. this.con2176.Name = "con2176";
  2718. this.myTableLayoutPanel1.SetRowSpan(this.con2176, 2);
  2719. this.con2176.Size = new System.Drawing.Size(45, 44);
  2720. this.con2176.TabIndex = 772;
  2721. //
  2722. // con2177
  2723. //
  2724. this.con2177.Dock = System.Windows.Forms.DockStyle.Fill;
  2725. this.con2177.Location = new System.Drawing.Point(1977, 132);
  2726. this.con2177.Margin = new System.Windows.Forms.Padding(0);
  2727. this.con2177.Name = "con2177";
  2728. this.myTableLayoutPanel1.SetRowSpan(this.con2177, 2);
  2729. this.con2177.Size = new System.Drawing.Size(45, 44);
  2730. this.con2177.TabIndex = 771;
  2731. //
  2732. // con2147
  2733. //
  2734. this.con2147.BackColor = System.Drawing.Color.Transparent;
  2735. this.con2147.Dock = System.Windows.Forms.DockStyle.Fill;
  2736. this.con2147.Location = new System.Drawing.Point(1977, 0);
  2737. this.con2147.Margin = new System.Windows.Forms.Padding(0);
  2738. this.con2147.Name = "con2147";
  2739. this.con2147.Size = new System.Drawing.Size(45, 22);
  2740. this.con2147.TabIndex = 768;
  2741. //
  2742. // con2146
  2743. //
  2744. this.con2146.BackColor = System.Drawing.Color.Transparent;
  2745. this.con2146.Dock = System.Windows.Forms.DockStyle.Fill;
  2746. this.con2146.Location = new System.Drawing.Point(2022, 0);
  2747. this.con2146.Margin = new System.Windows.Forms.Padding(0);
  2748. this.con2146.Name = "con2146";
  2749. this.con2146.Size = new System.Drawing.Size(45, 22);
  2750. this.con2146.TabIndex = 769;
  2751. //
  2752. // con2148
  2753. //
  2754. this.con2148.BackColor = System.Drawing.Color.Transparent;
  2755. this.con2148.Dock = System.Windows.Forms.DockStyle.Fill;
  2756. this.con2148.Location = new System.Drawing.Point(1932, 0);
  2757. this.con2148.Margin = new System.Windows.Forms.Padding(0);
  2758. this.con2148.Name = "con2148";
  2759. this.con2148.Size = new System.Drawing.Size(45, 22);
  2760. this.con2148.TabIndex = 770;
  2761. //
  2762. // con2144
  2763. //
  2764. this.con2144.BackColor = System.Drawing.Color.Transparent;
  2765. this.con2144.Dock = System.Windows.Forms.DockStyle.Fill;
  2766. this.con2144.Location = new System.Drawing.Point(2112, 0);
  2767. this.con2144.Margin = new System.Windows.Forms.Padding(0);
  2768. this.con2144.Name = "con2144";
  2769. this.con2144.Size = new System.Drawing.Size(45, 22);
  2770. this.con2144.TabIndex = 765;
  2771. //
  2772. // con2145
  2773. //
  2774. this.con2145.BackColor = System.Drawing.Color.Transparent;
  2775. this.con2145.Dock = System.Windows.Forms.DockStyle.Fill;
  2776. this.con2145.Location = new System.Drawing.Point(2067, 0);
  2777. this.con2145.Margin = new System.Windows.Forms.Padding(0);
  2778. this.con2145.Name = "con2145";
  2779. this.con2145.Size = new System.Drawing.Size(45, 22);
  2780. this.con2145.TabIndex = 766;
  2781. //
  2782. // con2150
  2783. //
  2784. this.con2150.BackColor = System.Drawing.Color.Transparent;
  2785. this.con2150.Dock = System.Windows.Forms.DockStyle.Fill;
  2786. this.con2150.Location = new System.Drawing.Point(1887, 0);
  2787. this.con2150.Margin = new System.Windows.Forms.Padding(0);
  2788. this.con2150.Name = "con2150";
  2789. this.con2150.Size = new System.Drawing.Size(45, 22);
  2790. this.con2150.TabIndex = 767;
  2791. //
  2792. // con2161
  2793. //
  2794. this.con2161.BackColor = System.Drawing.Color.Transparent;
  2795. this.con2161.Dock = System.Windows.Forms.DockStyle.Fill;
  2796. this.con2161.Location = new System.Drawing.Point(1842, 0);
  2797. this.con2161.Margin = new System.Windows.Forms.Padding(0);
  2798. this.con2161.Name = "con2161";
  2799. this.con2161.Size = new System.Drawing.Size(45, 22);
  2800. this.con2161.TabIndex = 764;
  2801. //
  2802. // con2378
  2803. //
  2804. this.con2378.Dock = System.Windows.Forms.DockStyle.Fill;
  2805. this.con2378.Location = new System.Drawing.Point(2157, 110);
  2806. this.con2378.Margin = new System.Windows.Forms.Padding(0);
  2807. this.con2378.Name = "con2378";
  2808. this.con2378.Size = new System.Drawing.Size(45, 22);
  2809. this.con2378.TabIndex = 762;
  2810. //
  2811. // con2384
  2812. //
  2813. this.con2384.Dock = System.Windows.Forms.DockStyle.Fill;
  2814. this.con2384.Location = new System.Drawing.Point(2157, 0);
  2815. this.con2384.Margin = new System.Windows.Forms.Padding(0);
  2816. this.con2384.Name = "con2384";
  2817. this.con2384.Size = new System.Drawing.Size(45, 22);
  2818. this.con2384.TabIndex = 763;
  2819. //
  2820. // con2381
  2821. //
  2822. this.con2381.Dock = System.Windows.Forms.DockStyle.Fill;
  2823. this.con2381.Location = new System.Drawing.Point(2157, 44);
  2824. this.con2381.Margin = new System.Windows.Forms.Padding(0);
  2825. this.con2381.Name = "con2381";
  2826. this.con2381.Size = new System.Drawing.Size(45, 22);
  2827. this.con2381.TabIndex = 760;
  2828. //
  2829. // con2380
  2830. //
  2831. this.con2380.Dock = System.Windows.Forms.DockStyle.Fill;
  2832. this.con2380.Location = new System.Drawing.Point(2157, 66);
  2833. this.con2380.Margin = new System.Windows.Forms.Padding(0);
  2834. this.con2380.Name = "con2380";
  2835. this.con2380.Size = new System.Drawing.Size(45, 22);
  2836. this.con2380.TabIndex = 761;
  2837. //
  2838. // con2379
  2839. //
  2840. this.con2379.Dock = System.Windows.Forms.DockStyle.Fill;
  2841. this.con2379.Location = new System.Drawing.Point(2157, 88);
  2842. this.con2379.Margin = new System.Windows.Forms.Padding(0);
  2843. this.con2379.Name = "con2379";
  2844. this.con2379.Size = new System.Drawing.Size(45, 22);
  2845. this.con2379.TabIndex = 759;
  2846. //
  2847. // con2141
  2848. //
  2849. this.con2141.BackColor = System.Drawing.Color.Transparent;
  2850. this.con2141.Dock = System.Windows.Forms.DockStyle.Fill;
  2851. this.con2141.Location = new System.Drawing.Point(2382, 242);
  2852. this.con2141.Margin = new System.Windows.Forms.Padding(0);
  2853. this.con2141.Name = "con2141";
  2854. this.con2141.Size = new System.Drawing.Size(45, 22);
  2855. this.con2141.TabIndex = 757;
  2856. //
  2857. // con2274
  2858. //
  2859. this.con2274.BackColor = System.Drawing.Color.Transparent;
  2860. this.con2274.Dock = System.Windows.Forms.DockStyle.Fill;
  2861. this.con2274.Location = new System.Drawing.Point(2427, 242);
  2862. this.con2274.Margin = new System.Windows.Forms.Padding(0);
  2863. this.con2274.Name = "con2274";
  2864. this.con2274.Size = new System.Drawing.Size(45, 22);
  2865. this.con2274.TabIndex = 758;
  2866. //
  2867. // con2140
  2868. //
  2869. this.con2140.Dock = System.Windows.Forms.DockStyle.Fill;
  2870. this.con2140.Location = new System.Drawing.Point(2337, 242);
  2871. this.con2140.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  2872. this.con2140.Name = "con2140";
  2873. this.con2140.Size = new System.Drawing.Size(32, 22);
  2874. this.con2140.TabIndex = 756;
  2875. //
  2876. // con2143
  2877. //
  2878. this.con2143.Dock = System.Windows.Forms.DockStyle.Fill;
  2879. this.con2143.Location = new System.Drawing.Point(2337, 264);
  2880. this.con2143.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  2881. this.con2143.Name = "con2143";
  2882. this.con2143.Size = new System.Drawing.Size(32, 22);
  2883. this.con2143.TabIndex = 755;
  2884. //
  2885. // label1
  2886. //
  2887. this.label1.AutoSize = true;
  2888. this.label1.BackColor = System.Drawing.Color.Lime;
  2889. this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
  2890. this.label1.Location = new System.Drawing.Point(2206, 220);
  2891. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2892. this.label1.Name = "label1";
  2893. this.label1.Size = new System.Drawing.Size(37, 22);
  2894. this.label1.TabIndex = 753;
  2895. this.label1.Text = "上";
  2896. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2897. //
  2898. // con2138
  2899. //
  2900. this.con2138.BackColor = System.Drawing.Color.Transparent;
  2901. this.con2138.Dock = System.Windows.Forms.DockStyle.Fill;
  2902. this.con2138.Location = new System.Drawing.Point(2247, 242);
  2903. this.con2138.Margin = new System.Windows.Forms.Padding(0);
  2904. this.con2138.Name = "con2138";
  2905. this.con2138.Size = new System.Drawing.Size(45, 22);
  2906. this.con2138.TabIndex = 749;
  2907. //
  2908. // con2326
  2909. //
  2910. this.con2326.BackColor = System.Drawing.Color.Transparent;
  2911. this.con2326.Dock = System.Windows.Forms.DockStyle.Fill;
  2912. this.con2326.Location = new System.Drawing.Point(2292, 242);
  2913. this.con2326.Margin = new System.Windows.Forms.Padding(0);
  2914. this.con2326.Name = "con2326";
  2915. this.con2326.Size = new System.Drawing.Size(45, 22);
  2916. this.con2326.TabIndex = 750;
  2917. //
  2918. // con2135
  2919. //
  2920. this.con2135.Dock = System.Windows.Forms.DockStyle.Fill;
  2921. this.con2135.Location = new System.Drawing.Point(2202, 198);
  2922. this.con2135.Margin = new System.Windows.Forms.Padding(0);
  2923. this.con2135.Name = "con2135";
  2924. this.con2135.Size = new System.Drawing.Size(45, 22);
  2925. this.con2135.TabIndex = 751;
  2926. //
  2927. // con2273
  2928. //
  2929. this.con2273.Dock = System.Windows.Forms.DockStyle.Fill;
  2930. this.con2273.Location = new System.Drawing.Point(2337, 462);
  2931. this.con2273.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  2932. this.con2273.Name = "con2273";
  2933. this.con2273.Size = new System.Drawing.Size(32, 22);
  2934. this.con2273.TabIndex = 748;
  2935. //
  2936. // con2129
  2937. //
  2938. this.con2129.Dock = System.Windows.Forms.DockStyle.Fill;
  2939. this.con2129.Location = new System.Drawing.Point(2337, 484);
  2940. this.con2129.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  2941. this.con2129.Name = "con2129";
  2942. this.con2129.Size = new System.Drawing.Size(32, 22);
  2943. this.con2129.TabIndex = 747;
  2944. //
  2945. // con2128
  2946. //
  2947. this.con2128.Dock = System.Windows.Forms.DockStyle.Fill;
  2948. this.con2128.Location = new System.Drawing.Point(2337, 506);
  2949. this.con2128.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  2950. this.con2128.Name = "con2128";
  2951. this.con2128.Size = new System.Drawing.Size(32, 22);
  2952. this.con2128.TabIndex = 746;
  2953. //
  2954. // con2131
  2955. //
  2956. this.con2131.Dock = System.Windows.Forms.DockStyle.Fill;
  2957. this.con2131.Location = new System.Drawing.Point(2337, 528);
  2958. this.con2131.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  2959. this.con2131.Name = "con2131";
  2960. this.con2131.Size = new System.Drawing.Size(32, 22);
  2961. this.con2131.TabIndex = 745;
  2962. //
  2963. // label4
  2964. //
  2965. this.label4.AutoSize = true;
  2966. this.label4.BackColor = System.Drawing.Color.Lime;
  2967. this.label4.Dock = System.Windows.Forms.DockStyle.Fill;
  2968. this.label4.Location = new System.Drawing.Point(2206, 484);
  2969. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2970. this.label4.Name = "label4";
  2971. this.label4.Size = new System.Drawing.Size(37, 22);
  2972. this.label4.TabIndex = 744;
  2973. this.label4.Text = "上";
  2974. this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2975. //
  2976. // con2126
  2977. //
  2978. this.con2126.BackColor = System.Drawing.Color.Transparent;
  2979. this.con2126.Dock = System.Windows.Forms.DockStyle.Fill;
  2980. this.con2126.Location = new System.Drawing.Point(2247, 506);
  2981. this.con2126.Margin = new System.Windows.Forms.Padding(0);
  2982. this.con2126.Name = "con2126";
  2983. this.con2126.Size = new System.Drawing.Size(45, 22);
  2984. this.con2126.TabIndex = 740;
  2985. //
  2986. // con2327
  2987. //
  2988. this.con2327.BackColor = System.Drawing.Color.Transparent;
  2989. this.con2327.Dock = System.Windows.Forms.DockStyle.Fill;
  2990. this.con2327.Location = new System.Drawing.Point(2292, 506);
  2991. this.con2327.Margin = new System.Windows.Forms.Padding(0);
  2992. this.con2327.Name = "con2327";
  2993. this.con2327.Size = new System.Drawing.Size(45, 22);
  2994. this.con2327.TabIndex = 741;
  2995. //
  2996. // con2123
  2997. //
  2998. this.con2123.Dock = System.Windows.Forms.DockStyle.Fill;
  2999. this.con2123.Location = new System.Drawing.Point(2202, 462);
  3000. this.con2123.Margin = new System.Windows.Forms.Padding(0);
  3001. this.con2123.Name = "con2123";
  3002. this.con2123.Size = new System.Drawing.Size(45, 22);
  3003. this.con2123.TabIndex = 742;
  3004. //
  3005. // con2377
  3006. //
  3007. this.con2377.Dock = System.Windows.Forms.DockStyle.Fill;
  3008. this.con2377.Location = new System.Drawing.Point(2157, 132);
  3009. this.con2377.Margin = new System.Windows.Forms.Padding(0);
  3010. this.con2377.Name = "con2377";
  3011. this.con2377.Size = new System.Drawing.Size(45, 22);
  3012. this.con2377.TabIndex = 738;
  3013. //
  3014. // con2374
  3015. //
  3016. this.con2374.Dock = System.Windows.Forms.DockStyle.Fill;
  3017. this.con2374.Location = new System.Drawing.Point(2157, 198);
  3018. this.con2374.Margin = new System.Windows.Forms.Padding(0);
  3019. this.con2374.Name = "con2374";
  3020. this.myTableLayoutPanel1.SetRowSpan(this.con2374, 2);
  3021. this.con2374.Size = new System.Drawing.Size(45, 44);
  3022. this.con2374.TabIndex = 739;
  3023. //
  3024. // con2385
  3025. //
  3026. this.con2385.Dock = System.Windows.Forms.DockStyle.Fill;
  3027. this.con2385.Location = new System.Drawing.Point(2157, 242);
  3028. this.con2385.Margin = new System.Windows.Forms.Padding(0);
  3029. this.con2385.Name = "con2385";
  3030. this.myTableLayoutPanel1.SetRowSpan(this.con2385, 2);
  3031. this.con2385.Size = new System.Drawing.Size(45, 44);
  3032. this.con2385.TabIndex = 736;
  3033. //
  3034. // con2386
  3035. //
  3036. this.con2386.Dock = System.Windows.Forms.DockStyle.Fill;
  3037. this.con2386.Location = new System.Drawing.Point(2157, 286);
  3038. this.con2386.Margin = new System.Windows.Forms.Padding(0);
  3039. this.con2386.Name = "con2386";
  3040. this.myTableLayoutPanel1.SetRowSpan(this.con2386, 2);
  3041. this.con2386.Size = new System.Drawing.Size(45, 44);
  3042. this.con2386.TabIndex = 737;
  3043. //
  3044. // con2375
  3045. //
  3046. this.con2375.Dock = System.Windows.Forms.DockStyle.Fill;
  3047. this.con2375.Location = new System.Drawing.Point(2157, 176);
  3048. this.con2375.Margin = new System.Windows.Forms.Padding(0);
  3049. this.con2375.Name = "con2375";
  3050. this.con2375.Size = new System.Drawing.Size(45, 22);
  3051. this.con2375.TabIndex = 734;
  3052. //
  3053. // con2376
  3054. //
  3055. this.con2376.Dock = System.Windows.Forms.DockStyle.Fill;
  3056. this.con2376.Location = new System.Drawing.Point(2157, 154);
  3057. this.con2376.Margin = new System.Windows.Forms.Padding(0);
  3058. this.con2376.Name = "con2376";
  3059. this.con2376.Size = new System.Drawing.Size(45, 22);
  3060. this.con2376.TabIndex = 735;
  3061. //
  3062. // con2382
  3063. //
  3064. this.con2382.Dock = System.Windows.Forms.DockStyle.Fill;
  3065. this.con2382.Location = new System.Drawing.Point(2157, 22);
  3066. this.con2382.Margin = new System.Windows.Forms.Padding(0);
  3067. this.con2382.Name = "con2382";
  3068. this.con2382.Size = new System.Drawing.Size(45, 22);
  3069. this.con2382.TabIndex = 732;
  3070. //
  3071. // con2387
  3072. //
  3073. this.con2387.Dock = System.Windows.Forms.DockStyle.Fill;
  3074. this.con2387.Location = new System.Drawing.Point(2157, 330);
  3075. this.con2387.Margin = new System.Windows.Forms.Padding(0);
  3076. this.con2387.Name = "con2387";
  3077. this.con2387.Size = new System.Drawing.Size(45, 23);
  3078. this.con2387.TabIndex = 733;
  3079. //
  3080. // con2372
  3081. //
  3082. this.con2372.Dock = System.Windows.Forms.DockStyle.Fill;
  3083. this.con2372.Location = new System.Drawing.Point(2157, 374);
  3084. this.con2372.Margin = new System.Windows.Forms.Padding(0);
  3085. this.con2372.Name = "con2372";
  3086. this.con2372.Size = new System.Drawing.Size(45, 22);
  3087. this.con2372.TabIndex = 730;
  3088. //
  3089. // con2370
  3090. //
  3091. this.con2370.Dock = System.Windows.Forms.DockStyle.Fill;
  3092. this.con2370.Location = new System.Drawing.Point(2157, 418);
  3093. this.con2370.Margin = new System.Windows.Forms.Padding(0);
  3094. this.con2370.Name = "con2370";
  3095. this.con2370.Size = new System.Drawing.Size(45, 22);
  3096. this.con2370.TabIndex = 731;
  3097. //
  3098. // con2371
  3099. //
  3100. this.con2371.Dock = System.Windows.Forms.DockStyle.Fill;
  3101. this.con2371.Location = new System.Drawing.Point(2157, 396);
  3102. this.con2371.Margin = new System.Windows.Forms.Padding(0);
  3103. this.con2371.Name = "con2371";
  3104. this.con2371.Size = new System.Drawing.Size(45, 22);
  3105. this.con2371.TabIndex = 728;
  3106. //
  3107. // con2388
  3108. //
  3109. this.con2388.Dock = System.Windows.Forms.DockStyle.Fill;
  3110. this.con2388.Location = new System.Drawing.Point(2157, 353);
  3111. this.con2388.Margin = new System.Windows.Forms.Padding(0);
  3112. this.con2388.Name = "con2388";
  3113. this.con2388.Size = new System.Drawing.Size(45, 21);
  3114. this.con2388.TabIndex = 729;
  3115. //
  3116. // con2368
  3117. //
  3118. this.con2368.Dock = System.Windows.Forms.DockStyle.Fill;
  3119. this.con2368.Location = new System.Drawing.Point(2157, 462);
  3120. this.con2368.Margin = new System.Windows.Forms.Padding(0);
  3121. this.con2368.Name = "con2368";
  3122. this.con2368.Size = new System.Drawing.Size(45, 22);
  3123. this.con2368.TabIndex = 726;
  3124. //
  3125. // con2369
  3126. //
  3127. this.con2369.Dock = System.Windows.Forms.DockStyle.Fill;
  3128. this.con2369.Location = new System.Drawing.Point(2157, 440);
  3129. this.con2369.Margin = new System.Windows.Forms.Padding(0);
  3130. this.con2369.Name = "con2369";
  3131. this.con2369.Size = new System.Drawing.Size(45, 22);
  3132. this.con2369.TabIndex = 727;
  3133. //
  3134. // con2365
  3135. //
  3136. this.con2365.Dock = System.Windows.Forms.DockStyle.Fill;
  3137. this.con2365.Location = new System.Drawing.Point(2157, 506);
  3138. this.con2365.Margin = new System.Windows.Forms.Padding(0);
  3139. this.con2365.Name = "con2365";
  3140. this.con2365.Size = new System.Drawing.Size(45, 22);
  3141. this.con2365.TabIndex = 724;
  3142. //
  3143. // con2366
  3144. //
  3145. this.con2366.Dock = System.Windows.Forms.DockStyle.Fill;
  3146. this.con2366.Location = new System.Drawing.Point(2157, 484);
  3147. this.con2366.Margin = new System.Windows.Forms.Padding(0);
  3148. this.con2366.Name = "con2366";
  3149. this.con2366.Size = new System.Drawing.Size(45, 22);
  3150. this.con2366.TabIndex = 725;
  3151. //
  3152. // con2364
  3153. //
  3154. this.con2364.BackColor = System.Drawing.Color.Transparent;
  3155. this.con2364.Dock = System.Windows.Forms.DockStyle.Fill;
  3156. this.con2364.Location = new System.Drawing.Point(2157, 528);
  3157. this.con2364.Margin = new System.Windows.Forms.Padding(0);
  3158. this.con2364.Name = "con2364";
  3159. this.con2364.Size = new System.Drawing.Size(45, 22);
  3160. this.con2364.TabIndex = 723;
  3161. //
  3162. // con2362
  3163. //
  3164. this.con2362.BackColor = System.Drawing.Color.Transparent;
  3165. this.con2362.Dock = System.Windows.Forms.DockStyle.Fill;
  3166. this.con2362.Location = new System.Drawing.Point(2112, 528);
  3167. this.con2362.Margin = new System.Windows.Forms.Padding(0);
  3168. this.con2362.Name = "con2362";
  3169. this.con2362.Size = new System.Drawing.Size(45, 22);
  3170. this.con2362.TabIndex = 722;
  3171. //
  3172. // con2120
  3173. //
  3174. this.con2120.Dock = System.Windows.Forms.DockStyle.Fill;
  3175. this.con2120.Location = new System.Drawing.Point(2337, 704);
  3176. this.con2120.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  3177. this.con2120.Name = "con2120";
  3178. this.con2120.Size = new System.Drawing.Size(32, 22);
  3179. this.con2120.TabIndex = 721;
  3180. //
  3181. // con2119
  3182. //
  3183. this.con2119.Dock = System.Windows.Forms.DockStyle.Fill;
  3184. this.con2119.Location = new System.Drawing.Point(2337, 726);
  3185. this.con2119.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  3186. this.con2119.Name = "con2119";
  3187. this.con2119.Size = new System.Drawing.Size(32, 22);
  3188. this.con2119.TabIndex = 720;
  3189. //
  3190. // con2122
  3191. //
  3192. this.con2122.Dock = System.Windows.Forms.DockStyle.Fill;
  3193. this.con2122.Location = new System.Drawing.Point(2337, 748);
  3194. this.con2122.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  3195. this.con2122.Name = "con2122";
  3196. this.con2122.Size = new System.Drawing.Size(32, 25);
  3197. this.con2122.TabIndex = 719;
  3198. //
  3199. // con2272
  3200. //
  3201. this.con2272.Dock = System.Windows.Forms.DockStyle.Fill;
  3202. this.con2272.Location = new System.Drawing.Point(2337, 682);
  3203. this.con2272.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  3204. this.con2272.Name = "con2272";
  3205. this.con2272.Size = new System.Drawing.Size(32, 22);
  3206. this.con2272.TabIndex = 718;
  3207. //
  3208. // tableCellLabel9
  3209. //
  3210. this.tableCellLabel9.BackColor = System.Drawing.Color.Transparent;
  3211. this.tableCellLabel9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel9.BackgroundImage")));
  3212. this.tableCellLabel9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3213. this.tableCellLabel9.Dock = System.Windows.Forms.DockStyle.Fill;
  3214. this.tableCellLabel9.Location = new System.Drawing.Point(2157, 682);
  3215. this.tableCellLabel9.Margin = new System.Windows.Forms.Padding(0);
  3216. this.tableCellLabel9.Name = "tableCellLabel9";
  3217. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel9, 5);
  3218. this.tableCellLabel9.Size = new System.Drawing.Size(45, 116);
  3219. this.tableCellLabel9.TabIndex = 717;
  3220. //
  3221. // con2104
  3222. //
  3223. this.con2104.BackColor = System.Drawing.Color.Transparent;
  3224. this.myTableLayoutPanel1.SetColumnSpan(this.con2104, 2);
  3225. this.con2104.Dock = System.Windows.Forms.DockStyle.Fill;
  3226. this.con2104.Location = new System.Drawing.Point(1707, 726);
  3227. this.con2104.Margin = new System.Windows.Forms.Padding(0);
  3228. this.con2104.Name = "con2104";
  3229. this.con2104.Size = new System.Drawing.Size(90, 22);
  3230. this.con2104.TabIndex = 716;
  3231. //
  3232. // con2102
  3233. //
  3234. this.con2102.BackColor = System.Drawing.Color.Transparent;
  3235. this.myTableLayoutPanel1.SetColumnSpan(this.con2102, 2);
  3236. this.con2102.Dock = System.Windows.Forms.DockStyle.Fill;
  3237. this.con2102.Location = new System.Drawing.Point(1527, 726);
  3238. this.con2102.Margin = new System.Windows.Forms.Padding(0);
  3239. this.con2102.Name = "con2102";
  3240. this.con2102.Size = new System.Drawing.Size(90, 22);
  3241. this.con2102.TabIndex = 715;
  3242. //
  3243. // con2101
  3244. //
  3245. this.con2101.BackColor = System.Drawing.Color.Transparent;
  3246. this.myTableLayoutPanel1.SetColumnSpan(this.con2101, 2);
  3247. this.con2101.Dock = System.Windows.Forms.DockStyle.Fill;
  3248. this.con2101.Location = new System.Drawing.Point(1437, 726);
  3249. this.con2101.Margin = new System.Windows.Forms.Padding(0);
  3250. this.con2101.Name = "con2101";
  3251. this.con2101.Size = new System.Drawing.Size(90, 22);
  3252. this.con2101.TabIndex = 714;
  3253. //
  3254. // con2103
  3255. //
  3256. this.con2103.BackColor = System.Drawing.Color.Transparent;
  3257. this.myTableLayoutPanel1.SetColumnSpan(this.con2103, 2);
  3258. this.con2103.Dock = System.Windows.Forms.DockStyle.Fill;
  3259. this.con2103.Location = new System.Drawing.Point(1617, 726);
  3260. this.con2103.Margin = new System.Windows.Forms.Padding(0);
  3261. this.con2103.Name = "con2103";
  3262. this.con2103.Size = new System.Drawing.Size(90, 22);
  3263. this.con2103.TabIndex = 712;
  3264. //
  3265. // con2108
  3266. //
  3267. this.con2108.BackColor = System.Drawing.Color.Transparent;
  3268. this.myTableLayoutPanel1.SetColumnSpan(this.con2108, 2);
  3269. this.con2108.Dock = System.Windows.Forms.DockStyle.Fill;
  3270. this.con2108.Location = new System.Drawing.Point(2067, 726);
  3271. this.con2108.Margin = new System.Windows.Forms.Padding(0);
  3272. this.con2108.Name = "con2108";
  3273. this.con2108.Size = new System.Drawing.Size(90, 22);
  3274. this.con2108.TabIndex = 713;
  3275. //
  3276. // con2107
  3277. //
  3278. this.con2107.BackColor = System.Drawing.Color.Transparent;
  3279. this.myTableLayoutPanel1.SetColumnSpan(this.con2107, 2);
  3280. this.con2107.Dock = System.Windows.Forms.DockStyle.Fill;
  3281. this.con2107.Location = new System.Drawing.Point(1977, 726);
  3282. this.con2107.Margin = new System.Windows.Forms.Padding(0);
  3283. this.con2107.Name = "con2107";
  3284. this.con2107.Size = new System.Drawing.Size(90, 22);
  3285. this.con2107.TabIndex = 710;
  3286. //
  3287. // con2106
  3288. //
  3289. this.con2106.BackColor = System.Drawing.Color.Transparent;
  3290. this.myTableLayoutPanel1.SetColumnSpan(this.con2106, 2);
  3291. this.con2106.Dock = System.Windows.Forms.DockStyle.Fill;
  3292. this.con2106.Location = new System.Drawing.Point(1887, 726);
  3293. this.con2106.Margin = new System.Windows.Forms.Padding(0);
  3294. this.con2106.Name = "con2106";
  3295. this.con2106.Size = new System.Drawing.Size(90, 22);
  3296. this.con2106.TabIndex = 711;
  3297. //
  3298. // con2105
  3299. //
  3300. this.con2105.BackColor = System.Drawing.Color.Transparent;
  3301. this.myTableLayoutPanel1.SetColumnSpan(this.con2105, 2);
  3302. this.con2105.Dock = System.Windows.Forms.DockStyle.Fill;
  3303. this.con2105.Location = new System.Drawing.Point(1797, 726);
  3304. this.con2105.Margin = new System.Windows.Forms.Padding(0);
  3305. this.con2105.Name = "con2105";
  3306. this.con2105.Size = new System.Drawing.Size(90, 22);
  3307. this.con2105.TabIndex = 709;
  3308. //
  3309. // con2060
  3310. //
  3311. this.con2060.BackColor = System.Drawing.Color.Transparent;
  3312. this.myTableLayoutPanel1.SetColumnSpan(this.con2060, 2);
  3313. this.con2060.Dock = System.Windows.Forms.DockStyle.Fill;
  3314. this.con2060.Location = new System.Drawing.Point(1347, 773);
  3315. this.con2060.Margin = new System.Windows.Forms.Padding(0);
  3316. this.con2060.Name = "con2060";
  3317. this.con2060.Size = new System.Drawing.Size(90, 25);
  3318. this.con2060.TabIndex = 708;
  3319. //
  3320. // con2079
  3321. //
  3322. this.con2079.BackColor = System.Drawing.Color.Transparent;
  3323. this.myTableLayoutPanel1.SetColumnSpan(this.con2079, 2);
  3324. this.con2079.Dock = System.Windows.Forms.DockStyle.Fill;
  3325. this.con2079.Location = new System.Drawing.Point(540, 773);
  3326. this.con2079.Margin = new System.Windows.Forms.Padding(0);
  3327. this.con2079.Name = "con2079";
  3328. this.con2079.Size = new System.Drawing.Size(90, 25);
  3329. this.con2079.TabIndex = 705;
  3330. //
  3331. // con2075
  3332. //
  3333. this.con2075.BackColor = System.Drawing.Color.Transparent;
  3334. this.myTableLayoutPanel1.SetColumnSpan(this.con2075, 2);
  3335. this.con2075.Dock = System.Windows.Forms.DockStyle.Fill;
  3336. this.con2075.Location = new System.Drawing.Point(900, 773);
  3337. this.con2075.Margin = new System.Windows.Forms.Padding(0);
  3338. this.con2075.Name = "con2075";
  3339. this.con2075.Size = new System.Drawing.Size(90, 25);
  3340. this.con2075.TabIndex = 706;
  3341. //
  3342. // con2080
  3343. //
  3344. this.con2080.BackColor = System.Drawing.Color.Transparent;
  3345. this.myTableLayoutPanel1.SetColumnSpan(this.con2080, 2);
  3346. this.con2080.Dock = System.Windows.Forms.DockStyle.Fill;
  3347. this.con2080.Location = new System.Drawing.Point(360, 773);
  3348. this.con2080.Margin = new System.Windows.Forms.Padding(0);
  3349. this.con2080.Name = "con2080";
  3350. this.con2080.Size = new System.Drawing.Size(90, 25);
  3351. this.con2080.TabIndex = 707;
  3352. //
  3353. // con2074
  3354. //
  3355. this.con2074.BackColor = System.Drawing.Color.Transparent;
  3356. this.myTableLayoutPanel1.SetColumnSpan(this.con2074, 2);
  3357. this.con2074.Dock = System.Windows.Forms.DockStyle.Fill;
  3358. this.con2074.Location = new System.Drawing.Point(990, 773);
  3359. this.con2074.Margin = new System.Windows.Forms.Padding(0);
  3360. this.con2074.Name = "con2074";
  3361. this.con2074.Size = new System.Drawing.Size(90, 25);
  3362. this.con2074.TabIndex = 702;
  3363. //
  3364. // con2078
  3365. //
  3366. this.con2078.BackColor = System.Drawing.Color.Transparent;
  3367. this.myTableLayoutPanel1.SetColumnSpan(this.con2078, 2);
  3368. this.con2078.Dock = System.Windows.Forms.DockStyle.Fill;
  3369. this.con2078.Location = new System.Drawing.Point(630, 773);
  3370. this.con2078.Margin = new System.Windows.Forms.Padding(0);
  3371. this.con2078.Name = "con2078";
  3372. this.con2078.Size = new System.Drawing.Size(90, 25);
  3373. this.con2078.TabIndex = 703;
  3374. //
  3375. // con2077
  3376. //
  3377. this.con2077.BackColor = System.Drawing.Color.Transparent;
  3378. this.myTableLayoutPanel1.SetColumnSpan(this.con2077, 2);
  3379. this.con2077.Dock = System.Windows.Forms.DockStyle.Fill;
  3380. this.con2077.Location = new System.Drawing.Point(720, 773);
  3381. this.con2077.Margin = new System.Windows.Forms.Padding(0);
  3382. this.con2077.Name = "con2077";
  3383. this.con2077.Size = new System.Drawing.Size(90, 25);
  3384. this.con2077.TabIndex = 704;
  3385. //
  3386. // con2325
  3387. //
  3388. this.con2325.BackColor = System.Drawing.Color.Transparent;
  3389. this.myTableLayoutPanel1.SetColumnSpan(this.con2325, 2);
  3390. this.con2325.Dock = System.Windows.Forms.DockStyle.Fill;
  3391. this.con2325.Location = new System.Drawing.Point(270, 773);
  3392. this.con2325.Margin = new System.Windows.Forms.Padding(0);
  3393. this.con2325.Name = "con2325";
  3394. this.con2325.Size = new System.Drawing.Size(90, 25);
  3395. this.con2325.TabIndex = 699;
  3396. //
  3397. // con2073
  3398. //
  3399. this.con2073.BackColor = System.Drawing.Color.Transparent;
  3400. this.myTableLayoutPanel1.SetColumnSpan(this.con2073, 2);
  3401. this.con2073.Dock = System.Windows.Forms.DockStyle.Fill;
  3402. this.con2073.Location = new System.Drawing.Point(1080, 773);
  3403. this.con2073.Margin = new System.Windows.Forms.Padding(0);
  3404. this.con2073.Name = "con2073";
  3405. this.con2073.Size = new System.Drawing.Size(90, 25);
  3406. this.con2073.TabIndex = 700;
  3407. //
  3408. // con2071
  3409. //
  3410. this.con2071.BackColor = System.Drawing.Color.Transparent;
  3411. this.myTableLayoutPanel1.SetColumnSpan(this.con2071, 2);
  3412. this.con2071.Dock = System.Windows.Forms.DockStyle.Fill;
  3413. this.con2071.Location = new System.Drawing.Point(1261, 773);
  3414. this.con2071.Margin = new System.Windows.Forms.Padding(0);
  3415. this.con2071.Name = "con2071";
  3416. this.con2071.Size = new System.Drawing.Size(86, 25);
  3417. this.con2071.TabIndex = 701;
  3418. //
  3419. // con2072
  3420. //
  3421. this.con2072.BackColor = System.Drawing.Color.Transparent;
  3422. this.myTableLayoutPanel1.SetColumnSpan(this.con2072, 2);
  3423. this.con2072.Dock = System.Windows.Forms.DockStyle.Fill;
  3424. this.con2072.Location = new System.Drawing.Point(1170, 773);
  3425. this.con2072.Margin = new System.Windows.Forms.Padding(0);
  3426. this.con2072.Name = "con2072";
  3427. this.con2072.Size = new System.Drawing.Size(91, 25);
  3428. this.con2072.TabIndex = 696;
  3429. //
  3430. // con2076
  3431. //
  3432. this.con2076.BackColor = System.Drawing.Color.Transparent;
  3433. this.myTableLayoutPanel1.SetColumnSpan(this.con2076, 2);
  3434. this.con2076.Dock = System.Windows.Forms.DockStyle.Fill;
  3435. this.con2076.Location = new System.Drawing.Point(810, 773);
  3436. this.con2076.Margin = new System.Windows.Forms.Padding(0);
  3437. this.con2076.Name = "con2076";
  3438. this.con2076.Size = new System.Drawing.Size(90, 25);
  3439. this.con2076.TabIndex = 697;
  3440. //
  3441. // con2355
  3442. //
  3443. this.con2355.BackColor = System.Drawing.Color.Transparent;
  3444. this.myTableLayoutPanel1.SetColumnSpan(this.con2355, 2);
  3445. this.con2355.Dock = System.Windows.Forms.DockStyle.Fill;
  3446. this.con2355.Location = new System.Drawing.Point(450, 773);
  3447. this.con2355.Margin = new System.Windows.Forms.Padding(0);
  3448. this.con2355.Name = "con2355";
  3449. this.con2355.Size = new System.Drawing.Size(90, 25);
  3450. this.con2355.TabIndex = 698;
  3451. //
  3452. // con2037
  3453. //
  3454. this.con2037.BackColor = System.Drawing.Color.Transparent;
  3455. this.con2037.Dock = System.Windows.Forms.DockStyle.Fill;
  3456. this.con2037.Location = new System.Drawing.Point(900, 704);
  3457. this.con2037.Margin = new System.Windows.Forms.Padding(0);
  3458. this.con2037.Name = "con2037";
  3459. this.con2037.Size = new System.Drawing.Size(45, 22);
  3460. this.con2037.TabIndex = 693;
  3461. //
  3462. // con2044
  3463. //
  3464. this.con2044.BackColor = System.Drawing.Color.Transparent;
  3465. this.myTableLayoutPanel1.SetColumnSpan(this.con2044, 2);
  3466. this.con2044.Dock = System.Windows.Forms.DockStyle.Fill;
  3467. this.con2044.Location = new System.Drawing.Point(990, 704);
  3468. this.con2044.Margin = new System.Windows.Forms.Padding(0);
  3469. this.con2044.Name = "con2044";
  3470. this.con2044.Size = new System.Drawing.Size(90, 22);
  3471. this.con2044.TabIndex = 694;
  3472. //
  3473. // con2046
  3474. //
  3475. this.con2046.BackColor = System.Drawing.Color.Transparent;
  3476. this.myTableLayoutPanel1.SetColumnSpan(this.con2046, 2);
  3477. this.con2046.Dock = System.Windows.Forms.DockStyle.Fill;
  3478. this.con2046.Location = new System.Drawing.Point(1080, 704);
  3479. this.con2046.Margin = new System.Windows.Forms.Padding(0);
  3480. this.con2046.Name = "con2046";
  3481. this.con2046.Size = new System.Drawing.Size(90, 22);
  3482. this.con2046.TabIndex = 695;
  3483. //
  3484. // con2031
  3485. //
  3486. this.con2031.BackColor = System.Drawing.Color.Transparent;
  3487. this.myTableLayoutPanel1.SetColumnSpan(this.con2031, 2);
  3488. this.con2031.Dock = System.Windows.Forms.DockStyle.Fill;
  3489. this.con2031.Location = new System.Drawing.Point(765, 704);
  3490. this.con2031.Margin = new System.Windows.Forms.Padding(0);
  3491. this.con2031.Name = "con2031";
  3492. this.con2031.Size = new System.Drawing.Size(90, 22);
  3493. this.con2031.TabIndex = 690;
  3494. //
  3495. // con2029
  3496. //
  3497. this.con2029.BackColor = System.Drawing.Color.Transparent;
  3498. this.myTableLayoutPanel1.SetColumnSpan(this.con2029, 2);
  3499. this.con2029.Dock = System.Windows.Forms.DockStyle.Fill;
  3500. this.con2029.Location = new System.Drawing.Point(675, 704);
  3501. this.con2029.Margin = new System.Windows.Forms.Padding(0);
  3502. this.con2029.Name = "con2029";
  3503. this.con2029.Size = new System.Drawing.Size(90, 22);
  3504. this.con2029.TabIndex = 691;
  3505. //
  3506. // con2036
  3507. //
  3508. this.con2036.BackColor = System.Drawing.Color.Transparent;
  3509. this.con2036.Dock = System.Windows.Forms.DockStyle.Fill;
  3510. this.con2036.Location = new System.Drawing.Point(855, 704);
  3511. this.con2036.Margin = new System.Windows.Forms.Padding(0);
  3512. this.con2036.Name = "con2036";
  3513. this.con2036.Size = new System.Drawing.Size(45, 22);
  3514. this.con2036.TabIndex = 692;
  3515. //
  3516. // con2017
  3517. //
  3518. this.con2017.BackColor = System.Drawing.Color.Transparent;
  3519. this.con2017.Dock = System.Windows.Forms.DockStyle.Fill;
  3520. this.con2017.Location = new System.Drawing.Point(405, 704);
  3521. this.con2017.Margin = new System.Windows.Forms.Padding(0);
  3522. this.con2017.Name = "con2017";
  3523. this.con2017.Size = new System.Drawing.Size(45, 22);
  3524. this.con2017.TabIndex = 687;
  3525. //
  3526. // con2019
  3527. //
  3528. this.con2019.BackColor = System.Drawing.Color.Transparent;
  3529. this.myTableLayoutPanel1.SetColumnSpan(this.con2019, 2);
  3530. this.con2019.Dock = System.Windows.Forms.DockStyle.Fill;
  3531. this.con2019.Location = new System.Drawing.Point(495, 704);
  3532. this.con2019.Margin = new System.Windows.Forms.Padding(0);
  3533. this.con2019.Name = "con2019";
  3534. this.con2019.Size = new System.Drawing.Size(90, 22);
  3535. this.con2019.TabIndex = 688;
  3536. //
  3537. // con2024
  3538. //
  3539. this.con2024.BackColor = System.Drawing.Color.Transparent;
  3540. this.myTableLayoutPanel1.SetColumnSpan(this.con2024, 2);
  3541. this.con2024.Dock = System.Windows.Forms.DockStyle.Fill;
  3542. this.con2024.Location = new System.Drawing.Point(585, 704);
  3543. this.con2024.Margin = new System.Windows.Forms.Padding(0);
  3544. this.con2024.Name = "con2024";
  3545. this.con2024.Size = new System.Drawing.Size(90, 22);
  3546. this.con2024.TabIndex = 689;
  3547. //
  3548. // con2324
  3549. //
  3550. this.con2324.BackColor = System.Drawing.Color.Transparent;
  3551. this.con2324.Dock = System.Windows.Forms.DockStyle.Fill;
  3552. this.con2324.Location = new System.Drawing.Point(270, 704);
  3553. this.con2324.Margin = new System.Windows.Forms.Padding(0);
  3554. this.con2324.Name = "con2324";
  3555. this.con2324.Size = new System.Drawing.Size(45, 22);
  3556. this.con2324.TabIndex = 684;
  3557. //
  3558. // con2353
  3559. //
  3560. this.con2353.BackColor = System.Drawing.Color.Transparent;
  3561. this.con2353.Dock = System.Windows.Forms.DockStyle.Fill;
  3562. this.con2353.Location = new System.Drawing.Point(360, 704);
  3563. this.con2353.Margin = new System.Windows.Forms.Padding(0);
  3564. this.con2353.Name = "con2353";
  3565. this.con2353.Size = new System.Drawing.Size(45, 22);
  3566. this.con2353.TabIndex = 685;
  3567. //
  3568. // con2016
  3569. //
  3570. this.con2016.BackColor = System.Drawing.Color.Transparent;
  3571. this.con2016.Dock = System.Windows.Forms.DockStyle.Fill;
  3572. this.con2016.Location = new System.Drawing.Point(315, 704);
  3573. this.con2016.Margin = new System.Windows.Forms.Padding(0);
  3574. this.con2016.Name = "con2016";
  3575. this.con2016.Size = new System.Drawing.Size(45, 22);
  3576. this.con2016.TabIndex = 686;
  3577. //
  3578. // locationPos35
  3579. //
  3580. this.locationPos35.Dock = System.Windows.Forms.DockStyle.Fill;
  3581. this.locationPos35.Location = new System.Drawing.Point(1887, 353);
  3582. this.locationPos35.Margin = new System.Windows.Forms.Padding(0);
  3583. this.locationPos35.Name = "locationPos35";
  3584. this.myTableLayoutPanel1.SetRowSpan(this.locationPos35, 12);
  3585. this.locationPos35.Size = new System.Drawing.Size(45, 263);
  3586. this.locationPos35.TabIndex = 683;
  3587. //
  3588. // tableCellLabel15
  3589. //
  3590. this.tableCellLabel15.BackColor = System.Drawing.Color.Transparent;
  3591. this.tableCellLabel15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel15.BackgroundImage")));
  3592. this.tableCellLabel15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3593. this.tableCellLabel15.Dock = System.Windows.Forms.DockStyle.Fill;
  3594. this.tableCellLabel15.Location = new System.Drawing.Point(1752, 330);
  3595. this.tableCellLabel15.Margin = new System.Windows.Forms.Padding(0);
  3596. this.tableCellLabel15.Name = "tableCellLabel15";
  3597. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel15, 15);
  3598. this.tableCellLabel15.Size = new System.Drawing.Size(45, 330);
  3599. this.tableCellLabel15.TabIndex = 682;
  3600. //
  3601. // tableCellLabel29
  3602. //
  3603. this.tableCellLabel29.BackColor = System.Drawing.Color.Transparent;
  3604. this.tableCellLabel29.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel29.BackgroundImage")));
  3605. this.tableCellLabel29.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3606. this.tableCellLabel29.Dock = System.Windows.Forms.DockStyle.Fill;
  3607. this.tableCellLabel29.Location = new System.Drawing.Point(1347, 176);
  3608. this.tableCellLabel29.Margin = new System.Windows.Forms.Padding(0);
  3609. this.tableCellLabel29.Name = "tableCellLabel29";
  3610. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel29, 22);
  3611. this.tableCellLabel29.Size = new System.Drawing.Size(45, 484);
  3612. this.tableCellLabel29.TabIndex = 681;
  3613. //
  3614. // tableCellLabel30
  3615. //
  3616. this.tableCellLabel30.BackColor = System.Drawing.Color.Transparent;
  3617. this.tableCellLabel30.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel30.BackgroundImage")));
  3618. this.tableCellLabel30.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3619. this.tableCellLabel30.Dock = System.Windows.Forms.DockStyle.Fill;
  3620. this.tableCellLabel30.Location = new System.Drawing.Point(990, 176);
  3621. this.tableCellLabel30.Margin = new System.Windows.Forms.Padding(0);
  3622. this.tableCellLabel30.Name = "tableCellLabel30";
  3623. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel30, 22);
  3624. this.tableCellLabel30.Size = new System.Drawing.Size(45, 484);
  3625. this.tableCellLabel30.TabIndex = 680;
  3626. //
  3627. // locationPos36
  3628. //
  3629. this.locationPos36.Dock = System.Windows.Forms.DockStyle.Fill;
  3630. this.locationPos36.Location = new System.Drawing.Point(945, 198);
  3631. this.locationPos36.Margin = new System.Windows.Forms.Padding(0);
  3632. this.locationPos36.Name = "locationPos36";
  3633. this.myTableLayoutPanel1.SetRowSpan(this.locationPos36, 20);
  3634. this.locationPos36.Size = new System.Drawing.Size(45, 440);
  3635. this.locationPos36.TabIndex = 679;
  3636. //
  3637. // locationPos37
  3638. //
  3639. this.locationPos37.Dock = System.Windows.Forms.DockStyle.Fill;
  3640. this.locationPos37.Location = new System.Drawing.Point(720, 198);
  3641. this.locationPos37.Margin = new System.Windows.Forms.Padding(0);
  3642. this.locationPos37.Name = "locationPos37";
  3643. this.myTableLayoutPanel1.SetRowSpan(this.locationPos37, 20);
  3644. this.locationPos37.Size = new System.Drawing.Size(45, 440);
  3645. this.locationPos37.TabIndex = 678;
  3646. //
  3647. // con2084
  3648. //
  3649. this.con2084.Dock = System.Windows.Forms.DockStyle.Fill;
  3650. this.con2084.Location = new System.Drawing.Point(180, 726);
  3651. this.con2084.Margin = new System.Windows.Forms.Padding(0);
  3652. this.con2084.Name = "con2084";
  3653. this.con2084.Size = new System.Drawing.Size(45, 22);
  3654. this.con2084.TabIndex = 664;
  3655. //
  3656. // con2086
  3657. //
  3658. this.con2086.Dock = System.Windows.Forms.DockStyle.Fill;
  3659. this.con2086.Location = new System.Drawing.Point(180, 748);
  3660. this.con2086.Margin = new System.Windows.Forms.Padding(0);
  3661. this.con2086.Name = "con2086";
  3662. this.con2086.Size = new System.Drawing.Size(45, 25);
  3663. this.con2086.TabIndex = 665;
  3664. //
  3665. // con2081
  3666. //
  3667. this.con2081.BackColor = System.Drawing.Color.Transparent;
  3668. this.con2081.Dock = System.Windows.Forms.DockStyle.Fill;
  3669. this.con2081.Location = new System.Drawing.Point(180, 660);
  3670. this.con2081.Margin = new System.Windows.Forms.Padding(0);
  3671. this.con2081.Name = "con2081";
  3672. this.con2081.Size = new System.Drawing.Size(45, 22);
  3673. this.con2081.TabIndex = 663;
  3674. //
  3675. // con2088
  3676. //
  3677. this.con2088.BackColor = System.Drawing.Color.Transparent;
  3678. this.con2088.Dock = System.Windows.Forms.DockStyle.Fill;
  3679. this.con2088.Location = new System.Drawing.Point(135, 704);
  3680. this.con2088.Margin = new System.Windows.Forms.Padding(0);
  3681. this.con2088.Name = "con2088";
  3682. this.con2088.Size = new System.Drawing.Size(45, 22);
  3683. this.con2088.TabIndex = 662;
  3684. //
  3685. // label6
  3686. //
  3687. this.label6.AutoSize = true;
  3688. this.label6.BackColor = System.Drawing.Color.Lime;
  3689. this.label6.Dock = System.Windows.Forms.DockStyle.Fill;
  3690. this.label6.Location = new System.Drawing.Point(184, 682);
  3691. this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3692. this.label6.Name = "label6";
  3693. this.label6.Size = new System.Drawing.Size(37, 22);
  3694. this.label6.TabIndex = 660;
  3695. this.label6.Text = "上";
  3696. this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3697. //
  3698. // con2015
  3699. //
  3700. this.con2015.BackColor = System.Drawing.Color.Transparent;
  3701. this.con2015.Dock = System.Windows.Forms.DockStyle.Fill;
  3702. this.con2015.Location = new System.Drawing.Point(180, 418);
  3703. this.con2015.Margin = new System.Windows.Forms.Padding(0);
  3704. this.con2015.Name = "con2015";
  3705. this.con2015.Size = new System.Drawing.Size(45, 22);
  3706. this.con2015.TabIndex = 658;
  3707. //
  3708. // con2012
  3709. //
  3710. this.con2012.BackColor = System.Drawing.Color.Transparent;
  3711. this.con2012.Dock = System.Windows.Forms.DockStyle.Fill;
  3712. this.con2012.Location = new System.Drawing.Point(135, 462);
  3713. this.con2012.Margin = new System.Windows.Forms.Padding(0);
  3714. this.con2012.Name = "con2012";
  3715. this.con2012.Size = new System.Drawing.Size(45, 22);
  3716. this.con2012.TabIndex = 657;
  3717. //
  3718. // label12
  3719. //
  3720. this.label12.AutoSize = true;
  3721. this.label12.BackColor = System.Drawing.Color.Lime;
  3722. this.label12.Dock = System.Windows.Forms.DockStyle.Fill;
  3723. this.label12.Location = new System.Drawing.Point(184, 440);
  3724. this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3725. this.label12.Name = "label12";
  3726. this.label12.Size = new System.Drawing.Size(37, 22);
  3727. this.label12.TabIndex = 655;
  3728. this.label12.Text = "上";
  3729. this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3730. //
  3731. // con2008
  3732. //
  3733. this.con2008.BackColor = System.Drawing.Color.Transparent;
  3734. this.con2008.Dock = System.Windows.Forms.DockStyle.Fill;
  3735. this.con2008.Location = new System.Drawing.Point(135, 330);
  3736. this.con2008.Margin = new System.Windows.Forms.Padding(0);
  3737. this.con2008.Name = "con2008";
  3738. this.con2008.Size = new System.Drawing.Size(45, 23);
  3739. this.con2008.TabIndex = 653;
  3740. //
  3741. // con2011
  3742. //
  3743. this.con2011.BackColor = System.Drawing.Color.Transparent;
  3744. this.con2011.Dock = System.Windows.Forms.DockStyle.Fill;
  3745. this.con2011.Location = new System.Drawing.Point(180, 286);
  3746. this.con2011.Margin = new System.Windows.Forms.Padding(0);
  3747. this.con2011.Name = "con2011";
  3748. this.con2011.Size = new System.Drawing.Size(45, 22);
  3749. this.con2011.TabIndex = 652;
  3750. //
  3751. // label28
  3752. //
  3753. this.label28.AutoSize = true;
  3754. this.label28.BackColor = System.Drawing.Color.Lime;
  3755. this.label28.Dock = System.Windows.Forms.DockStyle.Fill;
  3756. this.label28.Location = new System.Drawing.Point(184, 308);
  3757. this.label28.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3758. this.label28.Name = "label28";
  3759. this.label28.Size = new System.Drawing.Size(37, 22);
  3760. this.label28.TabIndex = 650;
  3761. this.label28.Text = "上";
  3762. this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3763. //
  3764. // con2323
  3765. //
  3766. this.con2323.BackColor = System.Drawing.Color.Transparent;
  3767. this.con2323.Dock = System.Windows.Forms.DockStyle.Fill;
  3768. this.con2323.Location = new System.Drawing.Point(270, 220);
  3769. this.con2323.Margin = new System.Windows.Forms.Padding(0);
  3770. this.con2323.Name = "con2323";
  3771. this.con2323.Size = new System.Drawing.Size(45, 22);
  3772. this.con2323.TabIndex = 647;
  3773. //
  3774. // con2322
  3775. //
  3776. this.con2322.BackColor = System.Drawing.Color.Transparent;
  3777. this.con2322.Dock = System.Windows.Forms.DockStyle.Fill;
  3778. this.con2322.Location = new System.Drawing.Point(315, 220);
  3779. this.con2322.Margin = new System.Windows.Forms.Padding(0);
  3780. this.con2322.Name = "con2322";
  3781. this.con2322.Size = new System.Drawing.Size(45, 22);
  3782. this.con2322.TabIndex = 648;
  3783. //
  3784. // con2311
  3785. //
  3786. this.con2311.Dock = System.Windows.Forms.DockStyle.Fill;
  3787. this.con2311.Location = new System.Drawing.Point(360, 22);
  3788. this.con2311.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  3789. this.con2311.Name = "con2311";
  3790. this.con2311.Size = new System.Drawing.Size(32, 22);
  3791. this.con2311.TabIndex = 646;
  3792. //
  3793. // con2317
  3794. //
  3795. this.con2317.Dock = System.Windows.Forms.DockStyle.Fill;
  3796. this.con2317.Location = new System.Drawing.Point(360, 154);
  3797. this.con2317.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  3798. this.con2317.Name = "con2317";
  3799. this.con2317.Size = new System.Drawing.Size(32, 22);
  3800. this.con2317.TabIndex = 645;
  3801. //
  3802. // con2315
  3803. //
  3804. this.con2315.Dock = System.Windows.Forms.DockStyle.Fill;
  3805. this.con2315.Location = new System.Drawing.Point(360, 110);
  3806. this.con2315.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  3807. this.con2315.Name = "con2315";
  3808. this.con2315.Size = new System.Drawing.Size(32, 22);
  3809. this.con2315.TabIndex = 644;
  3810. //
  3811. // conv2314
  3812. //
  3813. this.conv2314.Dock = System.Windows.Forms.DockStyle.Fill;
  3814. this.conv2314.Location = new System.Drawing.Point(360, 88);
  3815. this.conv2314.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  3816. this.conv2314.Name = "conv2314";
  3817. this.conv2314.Size = new System.Drawing.Size(32, 22);
  3818. this.conv2314.TabIndex = 643;
  3819. //
  3820. // con2312
  3821. //
  3822. this.con2312.Dock = System.Windows.Forms.DockStyle.Fill;
  3823. this.con2312.Location = new System.Drawing.Point(360, 44);
  3824. this.con2312.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  3825. this.con2312.Name = "con2312";
  3826. this.con2312.Size = new System.Drawing.Size(32, 22);
  3827. this.con2312.TabIndex = 642;
  3828. //
  3829. // con2313
  3830. //
  3831. this.con2313.Dock = System.Windows.Forms.DockStyle.Fill;
  3832. this.con2313.Location = new System.Drawing.Point(360, 66);
  3833. this.con2313.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  3834. this.con2313.Name = "con2313";
  3835. this.con2313.Size = new System.Drawing.Size(32, 22);
  3836. this.con2313.TabIndex = 641;
  3837. //
  3838. // con2316
  3839. //
  3840. this.con2316.Dock = System.Windows.Forms.DockStyle.Fill;
  3841. this.con2316.Location = new System.Drawing.Point(360, 132);
  3842. this.con2316.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  3843. this.con2316.Name = "con2316";
  3844. this.con2316.Size = new System.Drawing.Size(32, 22);
  3845. this.con2316.TabIndex = 640;
  3846. //
  3847. // con2319
  3848. //
  3849. this.con2319.Dock = System.Windows.Forms.DockStyle.Fill;
  3850. this.con2319.Location = new System.Drawing.Point(360, 198);
  3851. this.con2319.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  3852. this.con2319.Name = "con2319";
  3853. this.con2319.Size = new System.Drawing.Size(32, 22);
  3854. this.con2319.TabIndex = 639;
  3855. //
  3856. // con2320
  3857. //
  3858. this.con2320.Dock = System.Windows.Forms.DockStyle.Fill;
  3859. this.con2320.Location = new System.Drawing.Point(360, 220);
  3860. this.con2320.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  3861. this.con2320.Name = "con2320";
  3862. this.con2320.Size = new System.Drawing.Size(32, 22);
  3863. this.con2320.TabIndex = 638;
  3864. //
  3865. // con2318
  3866. //
  3867. this.con2318.Dock = System.Windows.Forms.DockStyle.Fill;
  3868. this.con2318.Location = new System.Drawing.Point(360, 176);
  3869. this.con2318.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  3870. this.con2318.Name = "con2318";
  3871. this.con2318.Size = new System.Drawing.Size(32, 22);
  3872. this.con2318.TabIndex = 637;
  3873. //
  3874. // con2005
  3875. //
  3876. this.con2005.BackColor = System.Drawing.Color.Transparent;
  3877. this.con2005.Dock = System.Windows.Forms.DockStyle.Fill;
  3878. this.con2005.Location = new System.Drawing.Point(315, 0);
  3879. this.con2005.Margin = new System.Windows.Forms.Padding(0);
  3880. this.con2005.Name = "con2005";
  3881. this.con2005.Size = new System.Drawing.Size(45, 22);
  3882. this.con2005.TabIndex = 634;
  3883. //
  3884. // con2302
  3885. //
  3886. this.con2302.BackColor = System.Drawing.Color.Transparent;
  3887. this.con2302.Dock = System.Windows.Forms.DockStyle.Fill;
  3888. this.con2302.Location = new System.Drawing.Point(360, 0);
  3889. this.con2302.Margin = new System.Windows.Forms.Padding(0);
  3890. this.con2302.Name = "con2302";
  3891. this.con2302.Size = new System.Drawing.Size(45, 22);
  3892. this.con2302.TabIndex = 635;
  3893. //
  3894. // con2004
  3895. //
  3896. this.con2004.BackColor = System.Drawing.Color.Transparent;
  3897. this.con2004.Dock = System.Windows.Forms.DockStyle.Fill;
  3898. this.con2004.Location = new System.Drawing.Point(270, 0);
  3899. this.con2004.Margin = new System.Windows.Forms.Padding(0);
  3900. this.con2004.Name = "con2004";
  3901. this.con2004.Size = new System.Drawing.Size(45, 22);
  3902. this.con2004.TabIndex = 636;
  3903. //
  3904. // label33
  3905. //
  3906. this.label33.AutoSize = true;
  3907. this.label33.BackColor = System.Drawing.Color.Lime;
  3908. this.label33.Dock = System.Windows.Forms.DockStyle.Fill;
  3909. this.label33.Location = new System.Drawing.Point(274, 22);
  3910. this.label33.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3911. this.label33.Name = "label33";
  3912. this.label33.Size = new System.Drawing.Size(37, 22);
  3913. this.label33.TabIndex = 633;
  3914. this.label33.Text = "上";
  3915. this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3916. //
  3917. // con2304
  3918. //
  3919. this.con2304.BackColor = System.Drawing.Color.Transparent;
  3920. this.con2304.Dock = System.Windows.Forms.DockStyle.Fill;
  3921. this.con2304.Location = new System.Drawing.Point(90, 44);
  3922. this.con2304.Margin = new System.Windows.Forms.Padding(0);
  3923. this.con2304.Name = "con2304";
  3924. this.con2304.Size = new System.Drawing.Size(45, 22);
  3925. this.con2304.TabIndex = 628;
  3926. //
  3927. // con2003
  3928. //
  3929. this.con2003.BackColor = System.Drawing.Color.Transparent;
  3930. this.con2003.Dock = System.Windows.Forms.DockStyle.Fill;
  3931. this.con2003.Location = new System.Drawing.Point(270, 44);
  3932. this.con2003.Margin = new System.Windows.Forms.Padding(0);
  3933. this.con2003.Name = "con2003";
  3934. this.con2003.Size = new System.Drawing.Size(45, 22);
  3935. this.con2003.TabIndex = 629;
  3936. //
  3937. // con2308
  3938. //
  3939. this.con2308.BackColor = System.Drawing.Color.Transparent;
  3940. this.con2308.Dock = System.Windows.Forms.DockStyle.Fill;
  3941. this.con2308.Location = new System.Drawing.Point(225, 44);
  3942. this.con2308.Margin = new System.Windows.Forms.Padding(0);
  3943. this.con2308.Name = "con2308";
  3944. this.con2308.Size = new System.Drawing.Size(45, 22);
  3945. this.con2308.TabIndex = 630;
  3946. //
  3947. // con2307
  3948. //
  3949. this.con2307.BackColor = System.Drawing.Color.Transparent;
  3950. this.con2307.Dock = System.Windows.Forms.DockStyle.Fill;
  3951. this.con2307.Location = new System.Drawing.Point(180, 44);
  3952. this.con2307.Margin = new System.Windows.Forms.Padding(0);
  3953. this.con2307.Name = "con2307";
  3954. this.con2307.Size = new System.Drawing.Size(45, 22);
  3955. this.con2307.TabIndex = 631;
  3956. //
  3957. // con2305
  3958. //
  3959. this.con2305.BackColor = System.Drawing.Color.Transparent;
  3960. this.con2305.Dock = System.Windows.Forms.DockStyle.Fill;
  3961. this.con2305.Location = new System.Drawing.Point(135, 44);
  3962. this.con2305.Margin = new System.Windows.Forms.Padding(0);
  3963. this.con2305.Name = "con2305";
  3964. this.con2305.Size = new System.Drawing.Size(45, 22);
  3965. this.con2305.TabIndex = 632;
  3966. //
  3967. // label34
  3968. //
  3969. this.label34.AutoSize = true;
  3970. this.label34.BackColor = System.Drawing.Color.Lime;
  3971. this.label34.Dock = System.Windows.Forms.DockStyle.Fill;
  3972. this.label34.Location = new System.Drawing.Point(2206, 704);
  3973. this.label34.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3974. this.label34.Name = "label34";
  3975. this.label34.Size = new System.Drawing.Size(37, 22);
  3976. this.label34.TabIndex = 509;
  3977. this.label34.Text = "上";
  3978. this.label34.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3979. //
  3980. // tableCellLabel31
  3981. //
  3982. this.tableCellLabel31.BackColor = System.Drawing.Color.Transparent;
  3983. this.tableCellLabel31.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel31.BackgroundImage")));
  3984. this.tableCellLabel31.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3985. this.tableCellLabel31.Dock = System.Windows.Forms.DockStyle.Fill;
  3986. this.tableCellLabel31.Location = new System.Drawing.Point(675, 176);
  3987. this.tableCellLabel31.Margin = new System.Windows.Forms.Padding(0);
  3988. this.tableCellLabel31.Name = "tableCellLabel31";
  3989. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel31, 22);
  3990. this.tableCellLabel31.Size = new System.Drawing.Size(45, 484);
  3991. this.tableCellLabel31.TabIndex = 436;
  3992. //
  3993. // locationPos38
  3994. //
  3995. this.locationPos38.Dock = System.Windows.Forms.DockStyle.Fill;
  3996. this.locationPos38.Location = new System.Drawing.Point(810, 198);
  3997. this.locationPos38.Margin = new System.Windows.Forms.Padding(0);
  3998. this.locationPos38.Name = "locationPos38";
  3999. this.myTableLayoutPanel1.SetRowSpan(this.locationPos38, 20);
  4000. this.locationPos38.Size = new System.Drawing.Size(45, 440);
  4001. this.locationPos38.TabIndex = 18;
  4002. //
  4003. // locationPos39
  4004. //
  4005. this.locationPos39.Dock = System.Windows.Forms.DockStyle.Fill;
  4006. this.locationPos39.Location = new System.Drawing.Point(1707, 353);
  4007. this.locationPos39.Margin = new System.Windows.Forms.Padding(0);
  4008. this.locationPos39.Name = "locationPos39";
  4009. this.myTableLayoutPanel1.SetRowSpan(this.locationPos39, 12);
  4010. this.locationPos39.Size = new System.Drawing.Size(45, 263);
  4011. this.locationPos39.TabIndex = 19;
  4012. //
  4013. // locationPos40
  4014. //
  4015. this.locationPos40.Dock = System.Windows.Forms.DockStyle.Fill;
  4016. this.locationPos40.Location = new System.Drawing.Point(1797, 353);
  4017. this.locationPos40.Margin = new System.Windows.Forms.Padding(0);
  4018. this.locationPos40.Name = "locationPos40";
  4019. this.myTableLayoutPanel1.SetRowSpan(this.locationPos40, 12);
  4020. this.locationPos40.Size = new System.Drawing.Size(45, 263);
  4021. this.locationPos40.TabIndex = 20;
  4022. //
  4023. // locationPos41
  4024. //
  4025. this.locationPos41.Dock = System.Windows.Forms.DockStyle.Fill;
  4026. this.locationPos41.Location = new System.Drawing.Point(1977, 353);
  4027. this.locationPos41.Margin = new System.Windows.Forms.Padding(0);
  4028. this.locationPos41.Name = "locationPos41";
  4029. this.myTableLayoutPanel1.SetRowSpan(this.locationPos41, 12);
  4030. this.locationPos41.Size = new System.Drawing.Size(45, 263);
  4031. this.locationPos41.TabIndex = 21;
  4032. //
  4033. // srm11
  4034. //
  4035. this.srm11.BackColor = System.Drawing.Color.Transparent;
  4036. this.srm11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm11.BackgroundImage")));
  4037. this.srm11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  4038. this.srm11.Dock = System.Windows.Forms.DockStyle.Fill;
  4039. this.srm11.Location = new System.Drawing.Point(1932, 330);
  4040. this.srm11.Margin = new System.Windows.Forms.Padding(0);
  4041. this.srm11.Name = "srm11";
  4042. this.myTableLayoutPanel1.SetRowSpan(this.srm11, 15);
  4043. this.srm11.Size = new System.Drawing.Size(45, 330);
  4044. this.srm11.TabIndex = 437;
  4045. //
  4046. // con2328
  4047. //
  4048. this.con2328.BackColor = System.Drawing.Color.Transparent;
  4049. this.con2328.Dock = System.Windows.Forms.DockStyle.Fill;
  4050. this.con2328.Location = new System.Drawing.Point(2292, 726);
  4051. this.con2328.Margin = new System.Windows.Forms.Padding(0);
  4052. this.con2328.Name = "con2328";
  4053. this.con2328.Size = new System.Drawing.Size(45, 22);
  4054. this.con2328.TabIndex = 461;
  4055. //
  4056. // con2117
  4057. //
  4058. this.con2117.BackColor = System.Drawing.Color.Transparent;
  4059. this.con2117.Dock = System.Windows.Forms.DockStyle.Fill;
  4060. this.con2117.Location = new System.Drawing.Point(2247, 726);
  4061. this.con2117.Margin = new System.Windows.Forms.Padding(0);
  4062. this.con2117.Name = "con2117";
  4063. this.con2117.Size = new System.Drawing.Size(45, 22);
  4064. this.con2117.TabIndex = 462;
  4065. //
  4066. // locationPos42
  4067. //
  4068. this.locationPos42.Dock = System.Windows.Forms.DockStyle.Fill;
  4069. this.locationPos42.Location = new System.Drawing.Point(1302, 198);
  4070. this.locationPos42.Margin = new System.Windows.Forms.Padding(0);
  4071. this.locationPos42.Name = "locationPos42";
  4072. this.myTableLayoutPanel1.SetRowSpan(this.locationPos42, 20);
  4073. this.locationPos42.Size = new System.Drawing.Size(45, 440);
  4074. this.locationPos42.TabIndex = 464;
  4075. //
  4076. // locationPos43
  4077. //
  4078. this.locationPos43.Dock = System.Windows.Forms.DockStyle.Fill;
  4079. this.locationPos43.Location = new System.Drawing.Point(1617, 353);
  4080. this.locationPos43.Margin = new System.Windows.Forms.Padding(0);
  4081. this.locationPos43.Name = "locationPos43";
  4082. this.myTableLayoutPanel1.SetRowSpan(this.locationPos43, 12);
  4083. this.locationPos43.Size = new System.Drawing.Size(45, 263);
  4084. this.locationPos43.TabIndex = 465;
  4085. //
  4086. // srm12
  4087. //
  4088. this.srm12.BackColor = System.Drawing.Color.Transparent;
  4089. this.srm12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm12.BackgroundImage")));
  4090. this.srm12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  4091. this.srm12.Dock = System.Windows.Forms.DockStyle.Fill;
  4092. this.srm12.Location = new System.Drawing.Point(1572, 330);
  4093. this.srm12.Margin = new System.Windows.Forms.Padding(0);
  4094. this.srm12.Name = "srm12";
  4095. this.myTableLayoutPanel1.SetRowSpan(this.srm12, 15);
  4096. this.srm12.Size = new System.Drawing.Size(45, 330);
  4097. this.srm12.TabIndex = 466;
  4098. //
  4099. // locationPos44
  4100. //
  4101. this.locationPos44.Dock = System.Windows.Forms.DockStyle.Fill;
  4102. this.locationPos44.Location = new System.Drawing.Point(1527, 353);
  4103. this.locationPos44.Margin = new System.Windows.Forms.Padding(0);
  4104. this.locationPos44.Name = "locationPos44";
  4105. this.myTableLayoutPanel1.SetRowSpan(this.locationPos44, 12);
  4106. this.locationPos44.Size = new System.Drawing.Size(45, 263);
  4107. this.locationPos44.TabIndex = 467;
  4108. //
  4109. // locationPos45
  4110. //
  4111. this.locationPos45.Dock = System.Windows.Forms.DockStyle.Fill;
  4112. this.locationPos45.Location = new System.Drawing.Point(1125, 198);
  4113. this.locationPos45.Margin = new System.Windows.Forms.Padding(0);
  4114. this.locationPos45.Name = "locationPos45";
  4115. this.myTableLayoutPanel1.SetRowSpan(this.locationPos45, 20);
  4116. this.locationPos45.Size = new System.Drawing.Size(45, 440);
  4117. this.locationPos45.TabIndex = 468;
  4118. //
  4119. // locationPos46
  4120. //
  4121. this.locationPos46.Dock = System.Windows.Forms.DockStyle.Fill;
  4122. this.locationPos46.Location = new System.Drawing.Point(1215, 198);
  4123. this.locationPos46.Margin = new System.Windows.Forms.Padding(0);
  4124. this.locationPos46.Name = "locationPos46";
  4125. this.myTableLayoutPanel1.SetRowSpan(this.locationPos46, 20);
  4126. this.locationPos46.Size = new System.Drawing.Size(46, 440);
  4127. this.locationPos46.TabIndex = 470;
  4128. //
  4129. // locationPos47
  4130. //
  4131. this.locationPos47.Dock = System.Windows.Forms.DockStyle.Fill;
  4132. this.locationPos47.Location = new System.Drawing.Point(1035, 198);
  4133. this.locationPos47.Margin = new System.Windows.Forms.Padding(0);
  4134. this.locationPos47.Name = "locationPos47";
  4135. this.myTableLayoutPanel1.SetRowSpan(this.locationPos47, 20);
  4136. this.locationPos47.Size = new System.Drawing.Size(45, 440);
  4137. this.locationPos47.TabIndex = 471;
  4138. //
  4139. // srm13
  4140. //
  4141. this.srm13.BackColor = System.Drawing.Color.Transparent;
  4142. this.srm13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm13.BackgroundImage")));
  4143. this.srm13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  4144. this.srm13.Dock = System.Windows.Forms.DockStyle.Fill;
  4145. this.srm13.Location = new System.Drawing.Point(1170, 176);
  4146. this.srm13.Margin = new System.Windows.Forms.Padding(0);
  4147. this.srm13.Name = "srm13";
  4148. this.myTableLayoutPanel1.SetRowSpan(this.srm13, 22);
  4149. this.srm13.Size = new System.Drawing.Size(45, 484);
  4150. this.srm13.TabIndex = 472;
  4151. //
  4152. // locationPos48
  4153. //
  4154. this.locationPos48.Dock = System.Windows.Forms.DockStyle.Fill;
  4155. this.locationPos48.Location = new System.Drawing.Point(900, 198);
  4156. this.locationPos48.Margin = new System.Windows.Forms.Padding(0);
  4157. this.locationPos48.Name = "locationPos48";
  4158. this.myTableLayoutPanel1.SetRowSpan(this.locationPos48, 20);
  4159. this.locationPos48.Size = new System.Drawing.Size(45, 440);
  4160. this.locationPos48.TabIndex = 473;
  4161. //
  4162. // locationPos49
  4163. //
  4164. this.locationPos49.Dock = System.Windows.Forms.DockStyle.Fill;
  4165. this.locationPos49.Location = new System.Drawing.Point(630, 198);
  4166. this.locationPos49.Margin = new System.Windows.Forms.Padding(0);
  4167. this.locationPos49.Name = "locationPos49";
  4168. this.myTableLayoutPanel1.SetRowSpan(this.locationPos49, 20);
  4169. this.locationPos49.Size = new System.Drawing.Size(45, 440);
  4170. this.locationPos49.TabIndex = 474;
  4171. //
  4172. // srm14
  4173. //
  4174. this.srm14.BackColor = System.Drawing.Color.Transparent;
  4175. this.srm14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm14.BackgroundImage")));
  4176. this.srm14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  4177. this.srm14.Dock = System.Windows.Forms.DockStyle.Fill;
  4178. this.srm14.Location = new System.Drawing.Point(855, 176);
  4179. this.srm14.Margin = new System.Windows.Forms.Padding(0);
  4180. this.srm14.Name = "srm14";
  4181. this.myTableLayoutPanel1.SetRowSpan(this.srm14, 22);
  4182. this.srm14.Size = new System.Drawing.Size(45, 484);
  4183. this.srm14.TabIndex = 475;
  4184. //
  4185. // locationPos53
  4186. //
  4187. this.locationPos53.Dock = System.Windows.Forms.DockStyle.Fill;
  4188. this.locationPos53.Location = new System.Drawing.Point(540, 198);
  4189. this.locationPos53.Margin = new System.Windows.Forms.Padding(0);
  4190. this.locationPos53.Name = "locationPos53";
  4191. this.myTableLayoutPanel1.SetRowSpan(this.locationPos53, 20);
  4192. this.locationPos53.Size = new System.Drawing.Size(45, 440);
  4193. this.locationPos53.TabIndex = 476;
  4194. //
  4195. // locationPos54
  4196. //
  4197. this.locationPos54.Dock = System.Windows.Forms.DockStyle.Fill;
  4198. this.locationPos54.Location = new System.Drawing.Point(1392, 198);
  4199. this.locationPos54.Margin = new System.Windows.Forms.Padding(0);
  4200. this.locationPos54.Name = "locationPos54";
  4201. this.myTableLayoutPanel1.SetRowSpan(this.locationPos54, 20);
  4202. this.locationPos54.Size = new System.Drawing.Size(45, 440);
  4203. this.locationPos54.TabIndex = 477;
  4204. //
  4205. // srm15
  4206. //
  4207. this.srm15.BackColor = System.Drawing.Color.Transparent;
  4208. this.srm15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm15.BackgroundImage")));
  4209. this.srm15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  4210. this.srm15.Dock = System.Windows.Forms.DockStyle.Fill;
  4211. this.srm15.Location = new System.Drawing.Point(495, 176);
  4212. this.srm15.Margin = new System.Windows.Forms.Padding(0);
  4213. this.srm15.Name = "srm15";
  4214. this.myTableLayoutPanel1.SetRowSpan(this.srm15, 22);
  4215. this.srm15.Size = new System.Drawing.Size(45, 484);
  4216. this.srm15.TabIndex = 478;
  4217. //
  4218. // locationPos55
  4219. //
  4220. this.locationPos55.Dock = System.Windows.Forms.DockStyle.Fill;
  4221. this.locationPos55.Location = new System.Drawing.Point(450, 198);
  4222. this.locationPos55.Margin = new System.Windows.Forms.Padding(0);
  4223. this.locationPos55.Name = "locationPos55";
  4224. this.myTableLayoutPanel1.SetRowSpan(this.locationPos55, 20);
  4225. this.locationPos55.Size = new System.Drawing.Size(45, 440);
  4226. this.locationPos55.TabIndex = 479;
  4227. //
  4228. // con2114
  4229. //
  4230. this.con2114.Dock = System.Windows.Forms.DockStyle.Fill;
  4231. this.con2114.Location = new System.Drawing.Point(2202, 682);
  4232. this.con2114.Margin = new System.Windows.Forms.Padding(0);
  4233. this.con2114.Name = "con2114";
  4234. this.con2114.Size = new System.Drawing.Size(45, 22);
  4235. this.con2114.TabIndex = 504;
  4236. this.con2114.Load += new System.EventHandler(this.con2114_Load);
  4237. //
  4238. // conrgv4
  4239. //
  4240. this.conrgv4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  4241. this.conrgv4.Dock = System.Windows.Forms.DockStyle.Fill;
  4242. this.conrgv4.Location = new System.Drawing.Point(2157, 638);
  4243. this.conrgv4.Margin = new System.Windows.Forms.Padding(0);
  4244. this.conrgv4.Name = "conrgv4";
  4245. this.myTableLayoutPanel1.SetRowSpan(this.conrgv4, 2);
  4246. this.conrgv4.Size = new System.Drawing.Size(45, 44);
  4247. this.conrgv4.TabIndex = 510;
  4248. //
  4249. // con2359
  4250. //
  4251. this.con2359.Dock = System.Windows.Forms.DockStyle.Fill;
  4252. this.con2359.Location = new System.Drawing.Point(2112, 572);
  4253. this.con2359.Margin = new System.Windows.Forms.Padding(0);
  4254. this.con2359.Name = "con2359";
  4255. this.con2359.Size = new System.Drawing.Size(45, 22);
  4256. this.con2359.TabIndex = 512;
  4257. //
  4258. // con2360
  4259. //
  4260. this.con2360.Dock = System.Windows.Forms.DockStyle.Fill;
  4261. this.con2360.Location = new System.Drawing.Point(2112, 550);
  4262. this.con2360.Margin = new System.Windows.Forms.Padding(0);
  4263. this.con2360.Name = "con2360";
  4264. this.con2360.Size = new System.Drawing.Size(45, 22);
  4265. this.con2360.TabIndex = 520;
  4266. //
  4267. // tableCellLabel32
  4268. //
  4269. this.tableCellLabel32.BackColor = System.Drawing.Color.Transparent;
  4270. this.tableCellLabel32.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel32.BackgroundImage")));
  4271. this.tableCellLabel32.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  4272. this.tableCellLabel32.Dock = System.Windows.Forms.DockStyle.Fill;
  4273. this.tableCellLabel32.Location = new System.Drawing.Point(2157, 572);
  4274. this.tableCellLabel32.Margin = new System.Windows.Forms.Padding(0);
  4275. this.tableCellLabel32.Name = "tableCellLabel32";
  4276. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel32, 3);
  4277. this.tableCellLabel32.Size = new System.Drawing.Size(45, 66);
  4278. this.tableCellLabel32.TabIndex = 521;
  4279. //
  4280. // tableCellLabel33
  4281. //
  4282. this.tableCellLabel33.BackColor = System.Drawing.Color.Transparent;
  4283. this.tableCellLabel33.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel33.BackgroundImage")));
  4284. this.tableCellLabel33.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  4285. this.tableCellLabel33.Dock = System.Windows.Forms.DockStyle.Fill;
  4286. this.tableCellLabel33.Location = new System.Drawing.Point(225, 220);
  4287. this.tableCellLabel33.Margin = new System.Windows.Forms.Padding(0);
  4288. this.tableCellLabel33.Name = "tableCellLabel33";
  4289. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel33, 6);
  4290. this.tableCellLabel33.Size = new System.Drawing.Size(45, 133);
  4291. this.tableCellLabel33.TabIndex = 593;
  4292. //
  4293. // tableCellLabel34
  4294. //
  4295. this.tableCellLabel34.BackColor = System.Drawing.Color.Transparent;
  4296. this.tableCellLabel34.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel34.BackgroundImage")));
  4297. this.tableCellLabel34.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  4298. this.tableCellLabel34.Dock = System.Windows.Forms.DockStyle.Fill;
  4299. this.tableCellLabel34.Location = new System.Drawing.Point(225, 396);
  4300. this.tableCellLabel34.Margin = new System.Windows.Forms.Padding(0);
  4301. this.tableCellLabel34.Name = "tableCellLabel34";
  4302. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel34, 20);
  4303. this.tableCellLabel34.Size = new System.Drawing.Size(45, 449);
  4304. this.tableCellLabel34.TabIndex = 594;
  4305. //
  4306. // conrgv5
  4307. //
  4308. this.conrgv5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  4309. this.conrgv5.Dock = System.Windows.Forms.DockStyle.Fill;
  4310. this.conrgv5.Location = new System.Drawing.Point(225, 353);
  4311. this.conrgv5.Margin = new System.Windows.Forms.Padding(0);
  4312. this.conrgv5.Name = "conrgv5";
  4313. this.myTableLayoutPanel1.SetRowSpan(this.conrgv5, 2);
  4314. this.conrgv5.Size = new System.Drawing.Size(45, 43);
  4315. this.conrgv5.TabIndex = 595;
  4316. //
  4317. // pnlDDJ1
  4318. //
  4319. this.pnlDDJ1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ1.BackgroundImage")));
  4320. this.pnlDDJ1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4321. this.pnlDDJ1.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  4322. this.pnlDDJ1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  4323. this.pnlDDJ1.Controls.Add(this.lblInStatus1);
  4324. this.pnlDDJ1.Controls.Add(this.lblOutStatus1);
  4325. this.pnlDDJ1.Controls.Add(this.lblDDJWarning1);
  4326. this.pnlDDJ1.Controls.Add(this.ddjPosTo1);
  4327. this.pnlDDJ1.Controls.Add(this.ddjPosFrom1);
  4328. this.pnlDDJ1.Controls.Add(this.label84);
  4329. this.pnlDDJ1.Controls.Add(this.label85);
  4330. this.pnlDDJ1.Controls.Add(this.ddjMode1);
  4331. this.pnlDDJ1.Controls.Add(this.ddjOrdId1);
  4332. this.pnlDDJ1.Controls.Add(this.label137);
  4333. this.pnlDDJ1.Controls.Add(this.ddjOptType1);
  4334. this.pnlDDJ1.Controls.Add(this.label139);
  4335. this.pnlDDJ1.Controls.Add(this.ddjTotal_KM1);
  4336. this.pnlDDJ1.Controls.Add(this.label13);
  4337. this.pnlDDJ1.Controls.Add(this.ddjWorkTime1);
  4338. this.pnlDDJ1.Controls.Add(this.label10);
  4339. this.pnlDDJ1.Controls.Add(this.ddjStatus1);
  4340. this.pnlDDJ1.Controls.Add(this.ddjPosCurr1);
  4341. this.pnlDDJ1.Controls.Add(this.label5);
  4342. this.pnlDDJ1.Controls.Add(this.label3);
  4343. this.pnlDDJ1.Controls.Add(this.label2);
  4344. this.pnlDDJ1.Controls.Add(this.lblsrm01);
  4345. this.pnlDDJ1.Controls.Add(this.G1);
  4346. this.pnlDDJ1.Controls.Add(this.R1);
  4347. this.pnlDDJ1.Location = new System.Drawing.Point(13, 0);
  4348. this.pnlDDJ1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4349. this.pnlDDJ1.Name = "pnlDDJ1";
  4350. this.pnlDDJ1.Size = new System.Drawing.Size(217, 324);
  4351. this.pnlDDJ1.TabIndex = 25;
  4352. //
  4353. // lblInStatus1
  4354. //
  4355. this.lblInStatus1.BackColor = System.Drawing.Color.DarkGray;
  4356. this.lblInStatus1.Location = new System.Drawing.Point(7, 2);
  4357. this.lblInStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4358. this.lblInStatus1.Name = "lblInStatus1";
  4359. this.lblInStatus1.Size = new System.Drawing.Size(37, 30);
  4360. this.lblInStatus1.TabIndex = 94;
  4361. this.lblInStatus1.Tag = "1";
  4362. this.lblInStatus1.Text = "入";
  4363. this.lblInStatus1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4364. //
  4365. // lblOutStatus1
  4366. //
  4367. this.lblOutStatus1.BackColor = System.Drawing.Color.DarkGray;
  4368. this.lblOutStatus1.Location = new System.Drawing.Point(169, 2);
  4369. this.lblOutStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4370. this.lblOutStatus1.Name = "lblOutStatus1";
  4371. this.lblOutStatus1.Size = new System.Drawing.Size(37, 30);
  4372. this.lblOutStatus1.TabIndex = 93;
  4373. this.lblOutStatus1.Text = "出";
  4374. this.lblOutStatus1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4375. //
  4376. // lblDDJWarning1
  4377. //
  4378. this.lblDDJWarning1.BackColor = System.Drawing.Color.Transparent;
  4379. this.lblDDJWarning1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4380. this.lblDDJWarning1.ForeColor = System.Drawing.Color.Red;
  4381. this.lblDDJWarning1.Location = new System.Drawing.Point(7, 58);
  4382. this.lblDDJWarning1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4383. this.lblDDJWarning1.Name = "lblDDJWarning1";
  4384. this.lblDDJWarning1.Size = new System.Drawing.Size(201, 30);
  4385. this.lblDDJWarning1.TabIndex = 92;
  4386. //
  4387. // ddjPosTo1
  4388. //
  4389. this.ddjPosTo1.AutoSize = true;
  4390. this.ddjPosTo1.BackColor = System.Drawing.Color.Transparent;
  4391. this.ddjPosTo1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4392. this.ddjPosTo1.ForeColor = System.Drawing.Color.Blue;
  4393. this.ddjPosTo1.Location = new System.Drawing.Point(119, 292);
  4394. this.ddjPosTo1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4395. this.ddjPosTo1.Name = "ddjPosTo1";
  4396. this.ddjPosTo1.Size = new System.Drawing.Size(31, 15);
  4397. this.ddjPosTo1.TabIndex = 73;
  4398. this.ddjPosTo1.Text = "---";
  4399. //
  4400. // ddjPosFrom1
  4401. //
  4402. this.ddjPosFrom1.AutoSize = true;
  4403. this.ddjPosFrom1.BackColor = System.Drawing.Color.Transparent;
  4404. this.ddjPosFrom1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4405. this.ddjPosFrom1.ForeColor = System.Drawing.Color.Blue;
  4406. this.ddjPosFrom1.Location = new System.Drawing.Point(119, 265);
  4407. this.ddjPosFrom1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4408. this.ddjPosFrom1.Name = "ddjPosFrom1";
  4409. this.ddjPosFrom1.Size = new System.Drawing.Size(31, 15);
  4410. this.ddjPosFrom1.TabIndex = 72;
  4411. this.ddjPosFrom1.Text = "---";
  4412. //
  4413. // label84
  4414. //
  4415. this.label84.AutoSize = true;
  4416. this.label84.BackColor = System.Drawing.Color.Transparent;
  4417. this.label84.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4418. this.label84.Location = new System.Drawing.Point(4, 265);
  4419. this.label84.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4420. this.label84.Name = "label84";
  4421. this.label84.Size = new System.Drawing.Size(82, 15);
  4422. this.label84.TabIndex = 71;
  4423. this.label84.Text = "起始位置:";
  4424. //
  4425. // label85
  4426. //
  4427. this.label85.AutoSize = true;
  4428. this.label85.BackColor = System.Drawing.Color.Transparent;
  4429. this.label85.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4430. this.label85.Location = new System.Drawing.Point(4, 292);
  4431. this.label85.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4432. this.label85.Name = "label85";
  4433. this.label85.Size = new System.Drawing.Size(82, 15);
  4434. this.label85.TabIndex = 70;
  4435. this.label85.Text = "目标位置:";
  4436. //
  4437. // ddjMode1
  4438. //
  4439. this.ddjMode1.AutoSize = true;
  4440. this.ddjMode1.BackColor = System.Drawing.Color.Transparent;
  4441. this.ddjMode1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4442. this.ddjMode1.ForeColor = System.Drawing.Color.Blue;
  4443. this.ddjMode1.Location = new System.Drawing.Point(116, 92);
  4444. this.ddjMode1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4445. this.ddjMode1.Name = "ddjMode1";
  4446. this.ddjMode1.Size = new System.Drawing.Size(31, 15);
  4447. this.ddjMode1.TabIndex = 12;
  4448. this.ddjMode1.Text = "---";
  4449. //
  4450. // ddjOrdId1
  4451. //
  4452. this.ddjOrdId1.AutoSize = true;
  4453. this.ddjOrdId1.BackColor = System.Drawing.Color.Transparent;
  4454. this.ddjOrdId1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4455. this.ddjOrdId1.ForeColor = System.Drawing.Color.Blue;
  4456. this.ddjOrdId1.Location = new System.Drawing.Point(116, 142);
  4457. this.ddjOrdId1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4458. this.ddjOrdId1.Name = "ddjOrdId1";
  4459. this.ddjOrdId1.Size = new System.Drawing.Size(31, 15);
  4460. this.ddjOrdId1.TabIndex = 64;
  4461. this.ddjOrdId1.Text = "---";
  4462. //
  4463. // label137
  4464. //
  4465. this.label137.AutoSize = true;
  4466. this.label137.BackColor = System.Drawing.Color.Transparent;
  4467. this.label137.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4468. this.label137.Location = new System.Drawing.Point(3, 142);
  4469. this.label137.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4470. this.label137.Name = "label137";
  4471. this.label137.Size = new System.Drawing.Size(82, 15);
  4472. this.label137.TabIndex = 63;
  4473. this.label137.Text = "工作指令:";
  4474. //
  4475. // ddjOptType1
  4476. //
  4477. this.ddjOptType1.AutoSize = true;
  4478. this.ddjOptType1.BackColor = System.Drawing.Color.Transparent;
  4479. this.ddjOptType1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4480. this.ddjOptType1.ForeColor = System.Drawing.Color.Blue;
  4481. this.ddjOptType1.Location = new System.Drawing.Point(116, 162);
  4482. this.ddjOptType1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4483. this.ddjOptType1.Name = "ddjOptType1";
  4484. this.ddjOptType1.Size = new System.Drawing.Size(31, 15);
  4485. this.ddjOptType1.TabIndex = 62;
  4486. this.ddjOptType1.Text = "---";
  4487. //
  4488. // label139
  4489. //
  4490. this.label139.AutoSize = true;
  4491. this.label139.BackColor = System.Drawing.Color.Transparent;
  4492. this.label139.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4493. this.label139.Location = new System.Drawing.Point(3, 162);
  4494. this.label139.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4495. this.label139.Name = "label139";
  4496. this.label139.Size = new System.Drawing.Size(82, 15);
  4497. this.label139.TabIndex = 61;
  4498. this.label139.Text = "作业类型:";
  4499. //
  4500. // ddjTotal_KM1
  4501. //
  4502. this.ddjTotal_KM1.AutoSize = true;
  4503. this.ddjTotal_KM1.BackColor = System.Drawing.Color.Transparent;
  4504. this.ddjTotal_KM1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4505. this.ddjTotal_KM1.ForeColor = System.Drawing.Color.Blue;
  4506. this.ddjTotal_KM1.Location = new System.Drawing.Point(117, 238);
  4507. this.ddjTotal_KM1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4508. this.ddjTotal_KM1.Name = "ddjTotal_KM1";
  4509. this.ddjTotal_KM1.Size = new System.Drawing.Size(31, 15);
  4510. this.ddjTotal_KM1.TabIndex = 16;
  4511. this.ddjTotal_KM1.Text = "---";
  4512. //
  4513. // label13
  4514. //
  4515. this.label13.AutoSize = true;
  4516. this.label13.BackColor = System.Drawing.Color.Transparent;
  4517. this.label13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4518. this.label13.Location = new System.Drawing.Point(3, 92);
  4519. this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4520. this.label13.Name = "label13";
  4521. this.label13.Size = new System.Drawing.Size(82, 15);
  4522. this.label13.TabIndex = 15;
  4523. this.label13.Text = "工作模式:";
  4524. //
  4525. // ddjWorkTime1
  4526. //
  4527. this.ddjWorkTime1.AutoSize = true;
  4528. this.ddjWorkTime1.BackColor = System.Drawing.Color.Transparent;
  4529. this.ddjWorkTime1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4530. this.ddjWorkTime1.ForeColor = System.Drawing.Color.Red;
  4531. this.ddjWorkTime1.Location = new System.Drawing.Point(116, 212);
  4532. this.ddjWorkTime1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4533. this.ddjWorkTime1.Name = "ddjWorkTime1";
  4534. this.ddjWorkTime1.Size = new System.Drawing.Size(31, 15);
  4535. this.ddjWorkTime1.TabIndex = 14;
  4536. this.ddjWorkTime1.Text = "---";
  4537. //
  4538. // label10
  4539. //
  4540. this.label10.AutoSize = true;
  4541. this.label10.BackColor = System.Drawing.Color.Transparent;
  4542. this.label10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4543. this.label10.Location = new System.Drawing.Point(3, 212);
  4544. this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4545. this.label10.Name = "label10";
  4546. this.label10.Size = new System.Drawing.Size(82, 15);
  4547. this.label10.TabIndex = 13;
  4548. this.label10.Text = "运行时长:";
  4549. //
  4550. // ddjStatus1
  4551. //
  4552. this.ddjStatus1.AutoSize = true;
  4553. this.ddjStatus1.BackColor = System.Drawing.Color.Transparent;
  4554. this.ddjStatus1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4555. this.ddjStatus1.ForeColor = System.Drawing.Color.Blue;
  4556. this.ddjStatus1.Location = new System.Drawing.Point(116, 118);
  4557. this.ddjStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4558. this.ddjStatus1.Name = "ddjStatus1";
  4559. this.ddjStatus1.Size = new System.Drawing.Size(31, 15);
  4560. this.ddjStatus1.TabIndex = 10;
  4561. this.ddjStatus1.Text = "---";
  4562. //
  4563. // ddjPosCurr1
  4564. //
  4565. this.ddjPosCurr1.AutoSize = true;
  4566. this.ddjPosCurr1.BackColor = System.Drawing.Color.Transparent;
  4567. this.ddjPosCurr1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4568. this.ddjPosCurr1.ForeColor = System.Drawing.Color.Blue;
  4569. this.ddjPosCurr1.Location = new System.Drawing.Point(117, 188);
  4570. this.ddjPosCurr1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4571. this.ddjPosCurr1.Name = "ddjPosCurr1";
  4572. this.ddjPosCurr1.Size = new System.Drawing.Size(31, 15);
  4573. this.ddjPosCurr1.TabIndex = 9;
  4574. this.ddjPosCurr1.Text = "---";
  4575. //
  4576. // label5
  4577. //
  4578. this.label5.AutoSize = true;
  4579. this.label5.BackColor = System.Drawing.Color.Transparent;
  4580. this.label5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4581. this.label5.Location = new System.Drawing.Point(3, 238);
  4582. this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4583. this.label5.Name = "label5";
  4584. this.label5.Size = new System.Drawing.Size(83, 15);
  4585. this.label5.TabIndex = 8;
  4586. this.label5.Text = "里 程 数:";
  4587. //
  4588. // label3
  4589. //
  4590. this.label3.AutoSize = true;
  4591. this.label3.BackColor = System.Drawing.Color.Transparent;
  4592. this.label3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4593. this.label3.Location = new System.Drawing.Point(3, 115);
  4594. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4595. this.label3.Name = "label3";
  4596. this.label3.Size = new System.Drawing.Size(82, 15);
  4597. this.label3.TabIndex = 6;
  4598. this.label3.Text = "工作状态:";
  4599. //
  4600. // label2
  4601. //
  4602. this.label2.AutoSize = true;
  4603. this.label2.BackColor = System.Drawing.Color.Transparent;
  4604. this.label2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4605. this.label2.Location = new System.Drawing.Point(3, 188);
  4606. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4607. this.label2.Name = "label2";
  4608. this.label2.Size = new System.Drawing.Size(82, 15);
  4609. this.label2.TabIndex = 1;
  4610. this.label2.Text = "当前位置:";
  4611. //
  4612. // lblsrm01
  4613. //
  4614. this.lblsrm01.AutoSize = true;
  4615. this.lblsrm01.BackColor = System.Drawing.Color.Transparent;
  4616. 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)));
  4617. this.lblsrm01.Location = new System.Drawing.Point(40, 32);
  4618. this.lblsrm01.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4619. this.lblsrm01.Name = "lblsrm01";
  4620. this.lblsrm01.Size = new System.Drawing.Size(115, 20);
  4621. this.lblsrm01.TabIndex = 0;
  4622. this.lblsrm01.Text = "1号 堆垛机";
  4623. this.lblsrm01.Click += new System.EventHandler(this.lblsrm01_Click);
  4624. //
  4625. // G1
  4626. //
  4627. this.G1.BackColor = System.Drawing.Color.Transparent;
  4628. this.G1.Image = ((System.Drawing.Image)(resources.GetObject("G1.Image")));
  4629. this.G1.InitialImage = null;
  4630. this.G1.Location = new System.Drawing.Point(88, -2);
  4631. this.G1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4632. this.G1.Name = "G1";
  4633. this.G1.Size = new System.Drawing.Size(35, 32);
  4634. this.G1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4635. this.G1.TabIndex = 65;
  4636. this.G1.TabStop = false;
  4637. this.G1.Tag = "1";
  4638. //
  4639. // R1
  4640. //
  4641. this.R1.BackColor = System.Drawing.Color.Transparent;
  4642. this.R1.Location = new System.Drawing.Point(87, -2);
  4643. this.R1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4644. this.R1.Name = "R1";
  4645. this.R1.Size = new System.Drawing.Size(35, 32);
  4646. this.R1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4647. this.R1.TabIndex = 5;
  4648. this.R1.TabStop = false;
  4649. //
  4650. // pnlDDJ2
  4651. //
  4652. this.pnlDDJ2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ2.BackgroundImage")));
  4653. this.pnlDDJ2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4654. this.pnlDDJ2.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  4655. this.pnlDDJ2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  4656. this.pnlDDJ2.Controls.Add(this.lblInStatus2);
  4657. this.pnlDDJ2.Controls.Add(this.lblOutStatus2);
  4658. this.pnlDDJ2.Controls.Add(this.lblDDJWarning2);
  4659. this.pnlDDJ2.Controls.Add(this.ddjPosTo2);
  4660. this.pnlDDJ2.Controls.Add(this.ddjPosFrom2);
  4661. this.pnlDDJ2.Controls.Add(this.label15);
  4662. this.pnlDDJ2.Controls.Add(this.label16);
  4663. this.pnlDDJ2.Controls.Add(this.ddjMode2);
  4664. this.pnlDDJ2.Controls.Add(this.ddjOrdId2);
  4665. this.pnlDDJ2.Controls.Add(this.label22);
  4666. this.pnlDDJ2.Controls.Add(this.ddjOptType2);
  4667. this.pnlDDJ2.Controls.Add(this.label26);
  4668. this.pnlDDJ2.Controls.Add(this.ddjTotal_KM2);
  4669. this.pnlDDJ2.Controls.Add(this.label29);
  4670. this.pnlDDJ2.Controls.Add(this.ddjWorkTime2);
  4671. this.pnlDDJ2.Controls.Add(this.label32);
  4672. this.pnlDDJ2.Controls.Add(this.ddjStatus2);
  4673. this.pnlDDJ2.Controls.Add(this.ddjPosCurr2);
  4674. this.pnlDDJ2.Controls.Add(this.label83);
  4675. this.pnlDDJ2.Controls.Add(this.label86);
  4676. this.pnlDDJ2.Controls.Add(this.label87);
  4677. this.pnlDDJ2.Controls.Add(this.lblsrm02);
  4678. this.pnlDDJ2.Controls.Add(this.G2);
  4679. this.pnlDDJ2.Controls.Add(this.pictureBox6);
  4680. this.pnlDDJ2.Location = new System.Drawing.Point(235, -1);
  4681. this.pnlDDJ2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4682. this.pnlDDJ2.Name = "pnlDDJ2";
  4683. this.pnlDDJ2.Size = new System.Drawing.Size(217, 325);
  4684. this.pnlDDJ2.TabIndex = 26;
  4685. //
  4686. // lblInStatus2
  4687. //
  4688. this.lblInStatus2.BackColor = System.Drawing.Color.DarkGray;
  4689. this.lblInStatus2.Location = new System.Drawing.Point(4, 2);
  4690. this.lblInStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4691. this.lblInStatus2.Name = "lblInStatus2";
  4692. this.lblInStatus2.Size = new System.Drawing.Size(37, 30);
  4693. this.lblInStatus2.TabIndex = 95;
  4694. this.lblInStatus2.Tag = "2";
  4695. this.lblInStatus2.Text = "入";
  4696. this.lblInStatus2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4697. //
  4698. // lblOutStatus2
  4699. //
  4700. this.lblOutStatus2.BackColor = System.Drawing.Color.DarkGray;
  4701. this.lblOutStatus2.Location = new System.Drawing.Point(169, 2);
  4702. this.lblOutStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4703. this.lblOutStatus2.Name = "lblOutStatus2";
  4704. this.lblOutStatus2.Size = new System.Drawing.Size(37, 30);
  4705. this.lblOutStatus2.TabIndex = 94;
  4706. this.lblOutStatus2.Text = "出";
  4707. this.lblOutStatus2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4708. //
  4709. // lblDDJWarning2
  4710. //
  4711. this.lblDDJWarning2.BackColor = System.Drawing.Color.Transparent;
  4712. this.lblDDJWarning2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4713. this.lblDDJWarning2.ForeColor = System.Drawing.Color.Red;
  4714. this.lblDDJWarning2.Location = new System.Drawing.Point(5, 58);
  4715. this.lblDDJWarning2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4716. this.lblDDJWarning2.Name = "lblDDJWarning2";
  4717. this.lblDDJWarning2.Size = new System.Drawing.Size(205, 30);
  4718. this.lblDDJWarning2.TabIndex = 93;
  4719. //
  4720. // ddjPosTo2
  4721. //
  4722. this.ddjPosTo2.AutoSize = true;
  4723. this.ddjPosTo2.BackColor = System.Drawing.Color.Transparent;
  4724. this.ddjPosTo2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4725. this.ddjPosTo2.ForeColor = System.Drawing.Color.Blue;
  4726. this.ddjPosTo2.Location = new System.Drawing.Point(123, 290);
  4727. this.ddjPosTo2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4728. this.ddjPosTo2.Name = "ddjPosTo2";
  4729. this.ddjPosTo2.Size = new System.Drawing.Size(31, 15);
  4730. this.ddjPosTo2.TabIndex = 91;
  4731. this.ddjPosTo2.Text = "---";
  4732. //
  4733. // ddjPosFrom2
  4734. //
  4735. this.ddjPosFrom2.AutoSize = true;
  4736. this.ddjPosFrom2.BackColor = System.Drawing.Color.Transparent;
  4737. this.ddjPosFrom2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4738. this.ddjPosFrom2.ForeColor = System.Drawing.Color.Blue;
  4739. this.ddjPosFrom2.Location = new System.Drawing.Point(123, 262);
  4740. this.ddjPosFrom2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4741. this.ddjPosFrom2.Name = "ddjPosFrom2";
  4742. this.ddjPosFrom2.Size = new System.Drawing.Size(31, 15);
  4743. this.ddjPosFrom2.TabIndex = 90;
  4744. this.ddjPosFrom2.Text = "---";
  4745. //
  4746. // label15
  4747. //
  4748. this.label15.AutoSize = true;
  4749. this.label15.BackColor = System.Drawing.Color.Transparent;
  4750. this.label15.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4751. this.label15.Location = new System.Drawing.Point(5, 262);
  4752. this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4753. this.label15.Name = "label15";
  4754. this.label15.Size = new System.Drawing.Size(82, 15);
  4755. this.label15.TabIndex = 89;
  4756. this.label15.Text = "起始位置:";
  4757. //
  4758. // label16
  4759. //
  4760. this.label16.AutoSize = true;
  4761. this.label16.BackColor = System.Drawing.Color.Transparent;
  4762. this.label16.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4763. this.label16.Location = new System.Drawing.Point(5, 290);
  4764. this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4765. this.label16.Name = "label16";
  4766. this.label16.Size = new System.Drawing.Size(82, 15);
  4767. this.label16.TabIndex = 88;
  4768. this.label16.Text = "目标位置:";
  4769. //
  4770. // ddjMode2
  4771. //
  4772. this.ddjMode2.AutoSize = true;
  4773. this.ddjMode2.BackColor = System.Drawing.Color.Transparent;
  4774. this.ddjMode2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4775. this.ddjMode2.ForeColor = System.Drawing.Color.Blue;
  4776. this.ddjMode2.Location = new System.Drawing.Point(120, 90);
  4777. this.ddjMode2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4778. this.ddjMode2.Name = "ddjMode2";
  4779. this.ddjMode2.Size = new System.Drawing.Size(31, 15);
  4780. this.ddjMode2.TabIndex = 79;
  4781. this.ddjMode2.Text = "---";
  4782. //
  4783. // ddjOrdId2
  4784. //
  4785. this.ddjOrdId2.AutoSize = true;
  4786. this.ddjOrdId2.BackColor = System.Drawing.Color.Transparent;
  4787. this.ddjOrdId2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4788. this.ddjOrdId2.ForeColor = System.Drawing.Color.Blue;
  4789. this.ddjOrdId2.Location = new System.Drawing.Point(120, 140);
  4790. this.ddjOrdId2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4791. this.ddjOrdId2.Name = "ddjOrdId2";
  4792. this.ddjOrdId2.Size = new System.Drawing.Size(31, 15);
  4793. this.ddjOrdId2.TabIndex = 87;
  4794. this.ddjOrdId2.Text = "---";
  4795. //
  4796. // label22
  4797. //
  4798. this.label22.AutoSize = true;
  4799. this.label22.BackColor = System.Drawing.Color.Transparent;
  4800. this.label22.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4801. this.label22.Location = new System.Drawing.Point(5, 140);
  4802. this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4803. this.label22.Name = "label22";
  4804. this.label22.Size = new System.Drawing.Size(82, 15);
  4805. this.label22.TabIndex = 86;
  4806. this.label22.Text = "工作指令:";
  4807. //
  4808. // ddjOptType2
  4809. //
  4810. this.ddjOptType2.AutoSize = true;
  4811. this.ddjOptType2.BackColor = System.Drawing.Color.Transparent;
  4812. this.ddjOptType2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4813. this.ddjOptType2.ForeColor = System.Drawing.Color.Blue;
  4814. this.ddjOptType2.Location = new System.Drawing.Point(120, 162);
  4815. this.ddjOptType2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4816. this.ddjOptType2.Name = "ddjOptType2";
  4817. this.ddjOptType2.Size = new System.Drawing.Size(31, 15);
  4818. this.ddjOptType2.TabIndex = 85;
  4819. this.ddjOptType2.Text = "---";
  4820. //
  4821. // label26
  4822. //
  4823. this.label26.AutoSize = true;
  4824. this.label26.BackColor = System.Drawing.Color.Transparent;
  4825. this.label26.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4826. this.label26.Location = new System.Drawing.Point(5, 162);
  4827. this.label26.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4828. this.label26.Name = "label26";
  4829. this.label26.Size = new System.Drawing.Size(82, 15);
  4830. this.label26.TabIndex = 84;
  4831. this.label26.Text = "作业类型:";
  4832. //
  4833. // ddjTotal_KM2
  4834. //
  4835. this.ddjTotal_KM2.AutoSize = true;
  4836. this.ddjTotal_KM2.BackColor = System.Drawing.Color.Transparent;
  4837. this.ddjTotal_KM2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4838. this.ddjTotal_KM2.ForeColor = System.Drawing.Color.Blue;
  4839. this.ddjTotal_KM2.Location = new System.Drawing.Point(121, 238);
  4840. this.ddjTotal_KM2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4841. this.ddjTotal_KM2.Name = "ddjTotal_KM2";
  4842. this.ddjTotal_KM2.Size = new System.Drawing.Size(31, 15);
  4843. this.ddjTotal_KM2.TabIndex = 83;
  4844. this.ddjTotal_KM2.Text = "---";
  4845. //
  4846. // label29
  4847. //
  4848. this.label29.AutoSize = true;
  4849. this.label29.BackColor = System.Drawing.Color.Transparent;
  4850. this.label29.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4851. this.label29.Location = new System.Drawing.Point(5, 90);
  4852. this.label29.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4853. this.label29.Name = "label29";
  4854. this.label29.Size = new System.Drawing.Size(82, 15);
  4855. this.label29.TabIndex = 82;
  4856. this.label29.Text = "工作模式:";
  4857. //
  4858. // ddjWorkTime2
  4859. //
  4860. this.ddjWorkTime2.AutoSize = true;
  4861. this.ddjWorkTime2.BackColor = System.Drawing.Color.Transparent;
  4862. this.ddjWorkTime2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4863. this.ddjWorkTime2.ForeColor = System.Drawing.Color.Red;
  4864. this.ddjWorkTime2.Location = new System.Drawing.Point(121, 212);
  4865. this.ddjWorkTime2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4866. this.ddjWorkTime2.Name = "ddjWorkTime2";
  4867. this.ddjWorkTime2.Size = new System.Drawing.Size(31, 15);
  4868. this.ddjWorkTime2.TabIndex = 81;
  4869. this.ddjWorkTime2.Text = "---";
  4870. //
  4871. // label32
  4872. //
  4873. this.label32.AutoSize = true;
  4874. this.label32.BackColor = System.Drawing.Color.Transparent;
  4875. this.label32.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4876. this.label32.Location = new System.Drawing.Point(5, 212);
  4877. this.label32.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4878. this.label32.Name = "label32";
  4879. this.label32.Size = new System.Drawing.Size(82, 15);
  4880. this.label32.TabIndex = 80;
  4881. this.label32.Text = "运行时长:";
  4882. //
  4883. // ddjStatus2
  4884. //
  4885. this.ddjStatus2.AutoSize = true;
  4886. this.ddjStatus2.BackColor = System.Drawing.Color.Transparent;
  4887. this.ddjStatus2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4888. this.ddjStatus2.ForeColor = System.Drawing.Color.Blue;
  4889. this.ddjStatus2.Location = new System.Drawing.Point(120, 112);
  4890. this.ddjStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4891. this.ddjStatus2.Name = "ddjStatus2";
  4892. this.ddjStatus2.Size = new System.Drawing.Size(31, 15);
  4893. this.ddjStatus2.TabIndex = 78;
  4894. this.ddjStatus2.Text = "---";
  4895. //
  4896. // ddjPosCurr2
  4897. //
  4898. this.ddjPosCurr2.AutoSize = true;
  4899. this.ddjPosCurr2.BackColor = System.Drawing.Color.Transparent;
  4900. this.ddjPosCurr2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4901. this.ddjPosCurr2.ForeColor = System.Drawing.Color.Blue;
  4902. this.ddjPosCurr2.Location = new System.Drawing.Point(121, 185);
  4903. this.ddjPosCurr2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4904. this.ddjPosCurr2.Name = "ddjPosCurr2";
  4905. this.ddjPosCurr2.Size = new System.Drawing.Size(31, 15);
  4906. this.ddjPosCurr2.TabIndex = 77;
  4907. this.ddjPosCurr2.Text = "---";
  4908. //
  4909. // label83
  4910. //
  4911. this.label83.AutoSize = true;
  4912. this.label83.BackColor = System.Drawing.Color.Transparent;
  4913. this.label83.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4914. this.label83.Location = new System.Drawing.Point(5, 238);
  4915. this.label83.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4916. this.label83.Name = "label83";
  4917. this.label83.Size = new System.Drawing.Size(83, 15);
  4918. this.label83.TabIndex = 76;
  4919. this.label83.Text = "里 程 数:";
  4920. //
  4921. // label86
  4922. //
  4923. this.label86.AutoSize = true;
  4924. this.label86.BackColor = System.Drawing.Color.Transparent;
  4925. this.label86.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4926. this.label86.Location = new System.Drawing.Point(5, 112);
  4927. this.label86.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4928. this.label86.Name = "label86";
  4929. this.label86.Size = new System.Drawing.Size(82, 15);
  4930. this.label86.TabIndex = 75;
  4931. this.label86.Text = "工作状态:";
  4932. //
  4933. // label87
  4934. //
  4935. this.label87.AutoSize = true;
  4936. this.label87.BackColor = System.Drawing.Color.Transparent;
  4937. this.label87.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4938. this.label87.Location = new System.Drawing.Point(5, 185);
  4939. this.label87.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4940. this.label87.Name = "label87";
  4941. this.label87.Size = new System.Drawing.Size(82, 15);
  4942. this.label87.TabIndex = 74;
  4943. this.label87.Text = "当前巷道:";
  4944. //
  4945. // lblsrm02
  4946. //
  4947. this.lblsrm02.AutoSize = true;
  4948. this.lblsrm02.BackColor = System.Drawing.Color.Transparent;
  4949. 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)));
  4950. this.lblsrm02.Location = new System.Drawing.Point(51, 32);
  4951. this.lblsrm02.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4952. this.lblsrm02.Name = "lblsrm02";
  4953. this.lblsrm02.Size = new System.Drawing.Size(115, 20);
  4954. this.lblsrm02.TabIndex = 0;
  4955. this.lblsrm02.Text = "2号 堆垛机";
  4956. this.lblsrm02.Click += new System.EventHandler(this.lblsrm01_Click);
  4957. //
  4958. // G2
  4959. //
  4960. this.G2.BackColor = System.Drawing.Color.Transparent;
  4961. this.G2.Image = ((System.Drawing.Image)(resources.GetObject("G2.Image")));
  4962. this.G2.Location = new System.Drawing.Point(91, -2);
  4963. this.G2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4964. this.G2.Name = "G2";
  4965. this.G2.Size = new System.Drawing.Size(35, 32);
  4966. this.G2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4967. this.G2.TabIndex = 65;
  4968. this.G2.TabStop = false;
  4969. this.G2.Tag = "1";
  4970. //
  4971. // pictureBox6
  4972. //
  4973. this.pictureBox6.BackColor = System.Drawing.Color.Transparent;
  4974. this.pictureBox6.Location = new System.Drawing.Point(91, -2);
  4975. this.pictureBox6.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4976. this.pictureBox6.Name = "pictureBox6";
  4977. this.pictureBox6.Size = new System.Drawing.Size(35, 32);
  4978. this.pictureBox6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4979. this.pictureBox6.TabIndex = 5;
  4980. this.pictureBox6.TabStop = false;
  4981. //
  4982. // pnlDDJ3
  4983. //
  4984. this.pnlDDJ3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ3.BackgroundImage")));
  4985. this.pnlDDJ3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4986. this.pnlDDJ3.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  4987. this.pnlDDJ3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  4988. this.pnlDDJ3.Controls.Add(this.lblInStatus3);
  4989. this.pnlDDJ3.Controls.Add(this.lblOutStatus3);
  4990. this.pnlDDJ3.Controls.Add(this.lblDDJWarning3);
  4991. this.pnlDDJ3.Controls.Add(this.ddjPosTo3);
  4992. this.pnlDDJ3.Controls.Add(this.ddjPosFrom3);
  4993. this.pnlDDJ3.Controls.Add(this.label43);
  4994. this.pnlDDJ3.Controls.Add(this.label51);
  4995. this.pnlDDJ3.Controls.Add(this.ddjMode3);
  4996. this.pnlDDJ3.Controls.Add(this.ddjOrdId3);
  4997. this.pnlDDJ3.Controls.Add(this.label55);
  4998. this.pnlDDJ3.Controls.Add(this.ddjOptType3);
  4999. this.pnlDDJ3.Controls.Add(this.label57);
  5000. this.pnlDDJ3.Controls.Add(this.ddjTotal_KM3);
  5001. this.pnlDDJ3.Controls.Add(this.label59);
  5002. this.pnlDDJ3.Controls.Add(this.ddjWorkTime3);
  5003. this.pnlDDJ3.Controls.Add(this.label61);
  5004. this.pnlDDJ3.Controls.Add(this.ddjStatus3);
  5005. this.pnlDDJ3.Controls.Add(this.ddjPosCurr3);
  5006. this.pnlDDJ3.Controls.Add(this.label64);
  5007. this.pnlDDJ3.Controls.Add(this.label65);
  5008. this.pnlDDJ3.Controls.Add(this.label66);
  5009. this.pnlDDJ3.Controls.Add(this.lblsrm03);
  5010. this.pnlDDJ3.Controls.Add(this.G3);
  5011. this.pnlDDJ3.Controls.Add(this.pictureBox10);
  5012. this.pnlDDJ3.Location = new System.Drawing.Point(457, -1);
  5013. this.pnlDDJ3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5014. this.pnlDDJ3.Name = "pnlDDJ3";
  5015. this.pnlDDJ3.Size = new System.Drawing.Size(217, 325);
  5016. this.pnlDDJ3.TabIndex = 28;
  5017. //
  5018. // lblInStatus3
  5019. //
  5020. this.lblInStatus3.BackColor = System.Drawing.Color.DarkGray;
  5021. this.lblInStatus3.Location = new System.Drawing.Point(4, 2);
  5022. this.lblInStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5023. this.lblInStatus3.Name = "lblInStatus3";
  5024. this.lblInStatus3.Size = new System.Drawing.Size(37, 30);
  5025. this.lblInStatus3.TabIndex = 96;
  5026. this.lblInStatus3.Tag = "3";
  5027. this.lblInStatus3.Text = "入";
  5028. this.lblInStatus3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5029. //
  5030. // lblOutStatus3
  5031. //
  5032. this.lblOutStatus3.BackColor = System.Drawing.Color.DarkGray;
  5033. this.lblOutStatus3.Location = new System.Drawing.Point(172, 2);
  5034. this.lblOutStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5035. this.lblOutStatus3.Name = "lblOutStatus3";
  5036. this.lblOutStatus3.Size = new System.Drawing.Size(37, 30);
  5037. this.lblOutStatus3.TabIndex = 94;
  5038. this.lblOutStatus3.Text = "出";
  5039. this.lblOutStatus3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5040. //
  5041. // lblDDJWarning3
  5042. //
  5043. this.lblDDJWarning3.BackColor = System.Drawing.Color.Transparent;
  5044. this.lblDDJWarning3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5045. this.lblDDJWarning3.ForeColor = System.Drawing.Color.Red;
  5046. this.lblDDJWarning3.Location = new System.Drawing.Point(7, 58);
  5047. this.lblDDJWarning3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5048. this.lblDDJWarning3.Name = "lblDDJWarning3";
  5049. this.lblDDJWarning3.Size = new System.Drawing.Size(201, 30);
  5050. this.lblDDJWarning3.TabIndex = 92;
  5051. //
  5052. // ddjPosTo3
  5053. //
  5054. this.ddjPosTo3.AutoSize = true;
  5055. this.ddjPosTo3.BackColor = System.Drawing.Color.Transparent;
  5056. this.ddjPosTo3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5057. this.ddjPosTo3.ForeColor = System.Drawing.Color.Blue;
  5058. this.ddjPosTo3.Location = new System.Drawing.Point(119, 292);
  5059. this.ddjPosTo3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5060. this.ddjPosTo3.Name = "ddjPosTo3";
  5061. this.ddjPosTo3.Size = new System.Drawing.Size(31, 15);
  5062. this.ddjPosTo3.TabIndex = 73;
  5063. this.ddjPosTo3.Text = "---";
  5064. //
  5065. // ddjPosFrom3
  5066. //
  5067. this.ddjPosFrom3.AutoSize = true;
  5068. this.ddjPosFrom3.BackColor = System.Drawing.Color.Transparent;
  5069. this.ddjPosFrom3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5070. this.ddjPosFrom3.ForeColor = System.Drawing.Color.Blue;
  5071. this.ddjPosFrom3.Location = new System.Drawing.Point(119, 265);
  5072. this.ddjPosFrom3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5073. this.ddjPosFrom3.Name = "ddjPosFrom3";
  5074. this.ddjPosFrom3.Size = new System.Drawing.Size(31, 15);
  5075. this.ddjPosFrom3.TabIndex = 72;
  5076. this.ddjPosFrom3.Text = "---";
  5077. //
  5078. // label43
  5079. //
  5080. this.label43.AutoSize = true;
  5081. this.label43.BackColor = System.Drawing.Color.Transparent;
  5082. this.label43.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5083. this.label43.Location = new System.Drawing.Point(4, 265);
  5084. this.label43.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5085. this.label43.Name = "label43";
  5086. this.label43.Size = new System.Drawing.Size(82, 15);
  5087. this.label43.TabIndex = 71;
  5088. this.label43.Text = "起始位置:";
  5089. //
  5090. // label51
  5091. //
  5092. this.label51.AutoSize = true;
  5093. this.label51.BackColor = System.Drawing.Color.Transparent;
  5094. this.label51.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5095. this.label51.Location = new System.Drawing.Point(4, 292);
  5096. this.label51.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5097. this.label51.Name = "label51";
  5098. this.label51.Size = new System.Drawing.Size(82, 15);
  5099. this.label51.TabIndex = 70;
  5100. this.label51.Text = "目标位置:";
  5101. //
  5102. // ddjMode3
  5103. //
  5104. this.ddjMode3.AutoSize = true;
  5105. this.ddjMode3.BackColor = System.Drawing.Color.Transparent;
  5106. this.ddjMode3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5107. this.ddjMode3.ForeColor = System.Drawing.Color.Blue;
  5108. this.ddjMode3.Location = new System.Drawing.Point(116, 92);
  5109. this.ddjMode3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5110. this.ddjMode3.Name = "ddjMode3";
  5111. this.ddjMode3.Size = new System.Drawing.Size(31, 15);
  5112. this.ddjMode3.TabIndex = 12;
  5113. this.ddjMode3.Text = "---";
  5114. //
  5115. // ddjOrdId3
  5116. //
  5117. this.ddjOrdId3.AutoSize = true;
  5118. this.ddjOrdId3.BackColor = System.Drawing.Color.Transparent;
  5119. this.ddjOrdId3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5120. this.ddjOrdId3.ForeColor = System.Drawing.Color.Blue;
  5121. this.ddjOrdId3.Location = new System.Drawing.Point(116, 142);
  5122. this.ddjOrdId3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5123. this.ddjOrdId3.Name = "ddjOrdId3";
  5124. this.ddjOrdId3.Size = new System.Drawing.Size(31, 15);
  5125. this.ddjOrdId3.TabIndex = 64;
  5126. this.ddjOrdId3.Text = "---";
  5127. //
  5128. // label55
  5129. //
  5130. this.label55.AutoSize = true;
  5131. this.label55.BackColor = System.Drawing.Color.Transparent;
  5132. this.label55.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5133. this.label55.Location = new System.Drawing.Point(3, 142);
  5134. this.label55.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5135. this.label55.Name = "label55";
  5136. this.label55.Size = new System.Drawing.Size(82, 15);
  5137. this.label55.TabIndex = 63;
  5138. this.label55.Text = "工作指令:";
  5139. //
  5140. // ddjOptType3
  5141. //
  5142. this.ddjOptType3.AutoSize = true;
  5143. this.ddjOptType3.BackColor = System.Drawing.Color.Transparent;
  5144. this.ddjOptType3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5145. this.ddjOptType3.ForeColor = System.Drawing.Color.Blue;
  5146. this.ddjOptType3.Location = new System.Drawing.Point(116, 162);
  5147. this.ddjOptType3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5148. this.ddjOptType3.Name = "ddjOptType3";
  5149. this.ddjOptType3.Size = new System.Drawing.Size(31, 15);
  5150. this.ddjOptType3.TabIndex = 62;
  5151. this.ddjOptType3.Text = "---";
  5152. //
  5153. // label57
  5154. //
  5155. this.label57.AutoSize = true;
  5156. this.label57.BackColor = System.Drawing.Color.Transparent;
  5157. this.label57.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5158. this.label57.Location = new System.Drawing.Point(3, 162);
  5159. this.label57.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5160. this.label57.Name = "label57";
  5161. this.label57.Size = new System.Drawing.Size(82, 15);
  5162. this.label57.TabIndex = 61;
  5163. this.label57.Text = "作业类型:";
  5164. //
  5165. // ddjTotal_KM3
  5166. //
  5167. this.ddjTotal_KM3.AutoSize = true;
  5168. this.ddjTotal_KM3.BackColor = System.Drawing.Color.Transparent;
  5169. this.ddjTotal_KM3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5170. this.ddjTotal_KM3.ForeColor = System.Drawing.Color.Blue;
  5171. this.ddjTotal_KM3.Location = new System.Drawing.Point(117, 238);
  5172. this.ddjTotal_KM3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5173. this.ddjTotal_KM3.Name = "ddjTotal_KM3";
  5174. this.ddjTotal_KM3.Size = new System.Drawing.Size(31, 15);
  5175. this.ddjTotal_KM3.TabIndex = 16;
  5176. this.ddjTotal_KM3.Text = "---";
  5177. //
  5178. // label59
  5179. //
  5180. this.label59.AutoSize = true;
  5181. this.label59.BackColor = System.Drawing.Color.Transparent;
  5182. this.label59.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5183. this.label59.Location = new System.Drawing.Point(3, 92);
  5184. this.label59.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5185. this.label59.Name = "label59";
  5186. this.label59.Size = new System.Drawing.Size(82, 15);
  5187. this.label59.TabIndex = 15;
  5188. this.label59.Text = "工作模式:";
  5189. //
  5190. // ddjWorkTime3
  5191. //
  5192. this.ddjWorkTime3.AutoSize = true;
  5193. this.ddjWorkTime3.BackColor = System.Drawing.Color.Transparent;
  5194. this.ddjWorkTime3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5195. this.ddjWorkTime3.ForeColor = System.Drawing.Color.Red;
  5196. this.ddjWorkTime3.Location = new System.Drawing.Point(117, 212);
  5197. this.ddjWorkTime3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5198. this.ddjWorkTime3.Name = "ddjWorkTime3";
  5199. this.ddjWorkTime3.Size = new System.Drawing.Size(31, 15);
  5200. this.ddjWorkTime3.TabIndex = 14;
  5201. this.ddjWorkTime3.Text = "---";
  5202. //
  5203. // label61
  5204. //
  5205. this.label61.AutoSize = true;
  5206. this.label61.BackColor = System.Drawing.Color.Transparent;
  5207. this.label61.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5208. this.label61.Location = new System.Drawing.Point(3, 212);
  5209. this.label61.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5210. this.label61.Name = "label61";
  5211. this.label61.Size = new System.Drawing.Size(82, 15);
  5212. this.label61.TabIndex = 13;
  5213. this.label61.Text = "运行时长:";
  5214. //
  5215. // ddjStatus3
  5216. //
  5217. this.ddjStatus3.AutoSize = true;
  5218. this.ddjStatus3.BackColor = System.Drawing.Color.Transparent;
  5219. this.ddjStatus3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5220. this.ddjStatus3.ForeColor = System.Drawing.Color.Blue;
  5221. this.ddjStatus3.Location = new System.Drawing.Point(116, 118);
  5222. this.ddjStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5223. this.ddjStatus3.Name = "ddjStatus3";
  5224. this.ddjStatus3.Size = new System.Drawing.Size(31, 15);
  5225. this.ddjStatus3.TabIndex = 10;
  5226. this.ddjStatus3.Text = "---";
  5227. //
  5228. // ddjPosCurr3
  5229. //
  5230. this.ddjPosCurr3.AutoSize = true;
  5231. this.ddjPosCurr3.BackColor = System.Drawing.Color.Transparent;
  5232. this.ddjPosCurr3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5233. this.ddjPosCurr3.ForeColor = System.Drawing.Color.Blue;
  5234. this.ddjPosCurr3.Location = new System.Drawing.Point(117, 188);
  5235. this.ddjPosCurr3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5236. this.ddjPosCurr3.Name = "ddjPosCurr3";
  5237. this.ddjPosCurr3.Size = new System.Drawing.Size(31, 15);
  5238. this.ddjPosCurr3.TabIndex = 9;
  5239. this.ddjPosCurr3.Text = "---";
  5240. //
  5241. // label64
  5242. //
  5243. this.label64.AutoSize = true;
  5244. this.label64.BackColor = System.Drawing.Color.Transparent;
  5245. this.label64.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5246. this.label64.Location = new System.Drawing.Point(3, 238);
  5247. this.label64.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5248. this.label64.Name = "label64";
  5249. this.label64.Size = new System.Drawing.Size(83, 15);
  5250. this.label64.TabIndex = 8;
  5251. this.label64.Text = "里 程 数:";
  5252. //
  5253. // label65
  5254. //
  5255. this.label65.AutoSize = true;
  5256. this.label65.BackColor = System.Drawing.Color.Transparent;
  5257. this.label65.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5258. this.label65.Location = new System.Drawing.Point(3, 115);
  5259. this.label65.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5260. this.label65.Name = "label65";
  5261. this.label65.Size = new System.Drawing.Size(82, 15);
  5262. this.label65.TabIndex = 6;
  5263. this.label65.Text = "工作状态:";
  5264. //
  5265. // label66
  5266. //
  5267. this.label66.AutoSize = true;
  5268. this.label66.BackColor = System.Drawing.Color.Transparent;
  5269. this.label66.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5270. this.label66.Location = new System.Drawing.Point(3, 188);
  5271. this.label66.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5272. this.label66.Name = "label66";
  5273. this.label66.Size = new System.Drawing.Size(82, 15);
  5274. this.label66.TabIndex = 1;
  5275. this.label66.Text = "当前巷道:";
  5276. //
  5277. // lblsrm03
  5278. //
  5279. this.lblsrm03.AutoSize = true;
  5280. this.lblsrm03.BackColor = System.Drawing.Color.Transparent;
  5281. 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)));
  5282. this.lblsrm03.Location = new System.Drawing.Point(40, 32);
  5283. this.lblsrm03.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5284. this.lblsrm03.Name = "lblsrm03";
  5285. this.lblsrm03.Size = new System.Drawing.Size(115, 20);
  5286. this.lblsrm03.TabIndex = 0;
  5287. this.lblsrm03.Text = "3号 堆垛机";
  5288. this.lblsrm03.Click += new System.EventHandler(this.lblsrm01_Click);
  5289. //
  5290. // G3
  5291. //
  5292. this.G3.BackColor = System.Drawing.Color.Transparent;
  5293. this.G3.Image = ((System.Drawing.Image)(resources.GetObject("G3.Image")));
  5294. this.G3.Location = new System.Drawing.Point(88, -2);
  5295. this.G3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5296. this.G3.Name = "G3";
  5297. this.G3.Size = new System.Drawing.Size(35, 32);
  5298. this.G3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5299. this.G3.TabIndex = 65;
  5300. this.G3.TabStop = false;
  5301. this.G3.Tag = "1";
  5302. //
  5303. // pictureBox10
  5304. //
  5305. this.pictureBox10.BackColor = System.Drawing.Color.Transparent;
  5306. this.pictureBox10.Location = new System.Drawing.Point(87, -2);
  5307. this.pictureBox10.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5308. this.pictureBox10.Name = "pictureBox10";
  5309. this.pictureBox10.Size = new System.Drawing.Size(35, 32);
  5310. this.pictureBox10.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5311. this.pictureBox10.TabIndex = 5;
  5312. this.pictureBox10.TabStop = false;
  5313. //
  5314. // pnlDDJ4
  5315. //
  5316. this.pnlDDJ4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ4.BackgroundImage")));
  5317. this.pnlDDJ4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5318. this.pnlDDJ4.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5319. this.pnlDDJ4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  5320. this.pnlDDJ4.Controls.Add(this.lblInStatus4);
  5321. this.pnlDDJ4.Controls.Add(this.lblOutStatus4);
  5322. this.pnlDDJ4.Controls.Add(this.lblDDJWarning4);
  5323. this.pnlDDJ4.Controls.Add(this.ddjPosTo4);
  5324. this.pnlDDJ4.Controls.Add(this.ddjPosFrom4);
  5325. this.pnlDDJ4.Controls.Add(this.label71);
  5326. this.pnlDDJ4.Controls.Add(this.label72);
  5327. this.pnlDDJ4.Controls.Add(this.ddjMode4);
  5328. this.pnlDDJ4.Controls.Add(this.ddjOrdId4);
  5329. this.pnlDDJ4.Controls.Add(this.label75);
  5330. this.pnlDDJ4.Controls.Add(this.ddjOptType4);
  5331. this.pnlDDJ4.Controls.Add(this.label77);
  5332. this.pnlDDJ4.Controls.Add(this.ddjTotal_KM4);
  5333. this.pnlDDJ4.Controls.Add(this.label79);
  5334. this.pnlDDJ4.Controls.Add(this.ddjWorkTime4);
  5335. this.pnlDDJ4.Controls.Add(this.label81);
  5336. this.pnlDDJ4.Controls.Add(this.ddjStatus4);
  5337. this.pnlDDJ4.Controls.Add(this.ddjPosCurr4);
  5338. this.pnlDDJ4.Controls.Add(this.label89);
  5339. this.pnlDDJ4.Controls.Add(this.label90);
  5340. this.pnlDDJ4.Controls.Add(this.label91);
  5341. this.pnlDDJ4.Controls.Add(this.lblsrm04);
  5342. this.pnlDDJ4.Controls.Add(this.G4);
  5343. this.pnlDDJ4.Controls.Add(this.pictureBox14);
  5344. this.pnlDDJ4.Location = new System.Drawing.Point(680, -1);
  5345. this.pnlDDJ4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5346. this.pnlDDJ4.Name = "pnlDDJ4";
  5347. this.pnlDDJ4.Size = new System.Drawing.Size(217, 325);
  5348. this.pnlDDJ4.TabIndex = 29;
  5349. //
  5350. // lblInStatus4
  5351. //
  5352. this.lblInStatus4.BackColor = System.Drawing.Color.DarkGray;
  5353. this.lblInStatus4.Location = new System.Drawing.Point(7, 2);
  5354. this.lblInStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5355. this.lblInStatus4.Name = "lblInStatus4";
  5356. this.lblInStatus4.Size = new System.Drawing.Size(37, 30);
  5357. this.lblInStatus4.TabIndex = 97;
  5358. this.lblInStatus4.Tag = "4";
  5359. this.lblInStatus4.Text = "入";
  5360. this.lblInStatus4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5361. //
  5362. // lblOutStatus4
  5363. //
  5364. this.lblOutStatus4.BackColor = System.Drawing.Color.DarkGray;
  5365. this.lblOutStatus4.Location = new System.Drawing.Point(165, 2);
  5366. this.lblOutStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5367. this.lblOutStatus4.Name = "lblOutStatus4";
  5368. this.lblOutStatus4.Size = new System.Drawing.Size(37, 30);
  5369. this.lblOutStatus4.TabIndex = 94;
  5370. this.lblOutStatus4.Text = "出";
  5371. this.lblOutStatus4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5372. //
  5373. // lblDDJWarning4
  5374. //
  5375. this.lblDDJWarning4.BackColor = System.Drawing.Color.Transparent;
  5376. this.lblDDJWarning4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5377. this.lblDDJWarning4.ForeColor = System.Drawing.Color.Red;
  5378. this.lblDDJWarning4.Location = new System.Drawing.Point(7, 58);
  5379. this.lblDDJWarning4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5380. this.lblDDJWarning4.Name = "lblDDJWarning4";
  5381. this.lblDDJWarning4.Size = new System.Drawing.Size(201, 30);
  5382. this.lblDDJWarning4.TabIndex = 92;
  5383. //
  5384. // ddjPosTo4
  5385. //
  5386. this.ddjPosTo4.AutoSize = true;
  5387. this.ddjPosTo4.BackColor = System.Drawing.Color.Transparent;
  5388. this.ddjPosTo4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5389. this.ddjPosTo4.ForeColor = System.Drawing.Color.Blue;
  5390. this.ddjPosTo4.Location = new System.Drawing.Point(119, 292);
  5391. this.ddjPosTo4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5392. this.ddjPosTo4.Name = "ddjPosTo4";
  5393. this.ddjPosTo4.Size = new System.Drawing.Size(31, 15);
  5394. this.ddjPosTo4.TabIndex = 73;
  5395. this.ddjPosTo4.Text = "---";
  5396. //
  5397. // ddjPosFrom4
  5398. //
  5399. this.ddjPosFrom4.AutoSize = true;
  5400. this.ddjPosFrom4.BackColor = System.Drawing.Color.Transparent;
  5401. this.ddjPosFrom4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5402. this.ddjPosFrom4.ForeColor = System.Drawing.Color.Blue;
  5403. this.ddjPosFrom4.Location = new System.Drawing.Point(119, 265);
  5404. this.ddjPosFrom4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5405. this.ddjPosFrom4.Name = "ddjPosFrom4";
  5406. this.ddjPosFrom4.Size = new System.Drawing.Size(31, 15);
  5407. this.ddjPosFrom4.TabIndex = 72;
  5408. this.ddjPosFrom4.Text = "---";
  5409. //
  5410. // label71
  5411. //
  5412. this.label71.AutoSize = true;
  5413. this.label71.BackColor = System.Drawing.Color.Transparent;
  5414. this.label71.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5415. this.label71.Location = new System.Drawing.Point(4, 265);
  5416. this.label71.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5417. this.label71.Name = "label71";
  5418. this.label71.Size = new System.Drawing.Size(82, 15);
  5419. this.label71.TabIndex = 71;
  5420. this.label71.Text = "起始位置:";
  5421. //
  5422. // label72
  5423. //
  5424. this.label72.AutoSize = true;
  5425. this.label72.BackColor = System.Drawing.Color.Transparent;
  5426. this.label72.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5427. this.label72.Location = new System.Drawing.Point(4, 292);
  5428. this.label72.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5429. this.label72.Name = "label72";
  5430. this.label72.Size = new System.Drawing.Size(82, 15);
  5431. this.label72.TabIndex = 70;
  5432. this.label72.Text = "目标位置:";
  5433. //
  5434. // ddjMode4
  5435. //
  5436. this.ddjMode4.AutoSize = true;
  5437. this.ddjMode4.BackColor = System.Drawing.Color.Transparent;
  5438. this.ddjMode4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5439. this.ddjMode4.ForeColor = System.Drawing.Color.Blue;
  5440. this.ddjMode4.Location = new System.Drawing.Point(116, 92);
  5441. this.ddjMode4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5442. this.ddjMode4.Name = "ddjMode4";
  5443. this.ddjMode4.Size = new System.Drawing.Size(31, 15);
  5444. this.ddjMode4.TabIndex = 12;
  5445. this.ddjMode4.Text = "---";
  5446. //
  5447. // ddjOrdId4
  5448. //
  5449. this.ddjOrdId4.AutoSize = true;
  5450. this.ddjOrdId4.BackColor = System.Drawing.Color.Transparent;
  5451. this.ddjOrdId4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5452. this.ddjOrdId4.ForeColor = System.Drawing.Color.Blue;
  5453. this.ddjOrdId4.Location = new System.Drawing.Point(116, 142);
  5454. this.ddjOrdId4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5455. this.ddjOrdId4.Name = "ddjOrdId4";
  5456. this.ddjOrdId4.Size = new System.Drawing.Size(31, 15);
  5457. this.ddjOrdId4.TabIndex = 64;
  5458. this.ddjOrdId4.Text = "---";
  5459. //
  5460. // label75
  5461. //
  5462. this.label75.AutoSize = true;
  5463. this.label75.BackColor = System.Drawing.Color.Transparent;
  5464. this.label75.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5465. this.label75.Location = new System.Drawing.Point(3, 142);
  5466. this.label75.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5467. this.label75.Name = "label75";
  5468. this.label75.Size = new System.Drawing.Size(82, 15);
  5469. this.label75.TabIndex = 63;
  5470. this.label75.Text = "工作指令:";
  5471. //
  5472. // ddjOptType4
  5473. //
  5474. this.ddjOptType4.AutoSize = true;
  5475. this.ddjOptType4.BackColor = System.Drawing.Color.Transparent;
  5476. this.ddjOptType4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5477. this.ddjOptType4.ForeColor = System.Drawing.Color.Blue;
  5478. this.ddjOptType4.Location = new System.Drawing.Point(116, 162);
  5479. this.ddjOptType4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5480. this.ddjOptType4.Name = "ddjOptType4";
  5481. this.ddjOptType4.Size = new System.Drawing.Size(31, 15);
  5482. this.ddjOptType4.TabIndex = 62;
  5483. this.ddjOptType4.Text = "---";
  5484. //
  5485. // label77
  5486. //
  5487. this.label77.AutoSize = true;
  5488. this.label77.BackColor = System.Drawing.Color.Transparent;
  5489. this.label77.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5490. this.label77.Location = new System.Drawing.Point(3, 162);
  5491. this.label77.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5492. this.label77.Name = "label77";
  5493. this.label77.Size = new System.Drawing.Size(82, 15);
  5494. this.label77.TabIndex = 61;
  5495. this.label77.Text = "作业类型:";
  5496. //
  5497. // ddjTotal_KM4
  5498. //
  5499. this.ddjTotal_KM4.AutoSize = true;
  5500. this.ddjTotal_KM4.BackColor = System.Drawing.Color.Transparent;
  5501. this.ddjTotal_KM4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5502. this.ddjTotal_KM4.ForeColor = System.Drawing.Color.Blue;
  5503. this.ddjTotal_KM4.Location = new System.Drawing.Point(117, 238);
  5504. this.ddjTotal_KM4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5505. this.ddjTotal_KM4.Name = "ddjTotal_KM4";
  5506. this.ddjTotal_KM4.Size = new System.Drawing.Size(31, 15);
  5507. this.ddjTotal_KM4.TabIndex = 16;
  5508. this.ddjTotal_KM4.Text = "---";
  5509. //
  5510. // label79
  5511. //
  5512. this.label79.AutoSize = true;
  5513. this.label79.BackColor = System.Drawing.Color.Transparent;
  5514. this.label79.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5515. this.label79.Location = new System.Drawing.Point(3, 92);
  5516. this.label79.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5517. this.label79.Name = "label79";
  5518. this.label79.Size = new System.Drawing.Size(82, 15);
  5519. this.label79.TabIndex = 15;
  5520. this.label79.Text = "工作模式:";
  5521. //
  5522. // ddjWorkTime4
  5523. //
  5524. this.ddjWorkTime4.AutoSize = true;
  5525. this.ddjWorkTime4.BackColor = System.Drawing.Color.Transparent;
  5526. this.ddjWorkTime4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5527. this.ddjWorkTime4.ForeColor = System.Drawing.Color.Red;
  5528. this.ddjWorkTime4.Location = new System.Drawing.Point(117, 212);
  5529. this.ddjWorkTime4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5530. this.ddjWorkTime4.Name = "ddjWorkTime4";
  5531. this.ddjWorkTime4.Size = new System.Drawing.Size(31, 15);
  5532. this.ddjWorkTime4.TabIndex = 14;
  5533. this.ddjWorkTime4.Text = "---";
  5534. //
  5535. // label81
  5536. //
  5537. this.label81.AutoSize = true;
  5538. this.label81.BackColor = System.Drawing.Color.Transparent;
  5539. this.label81.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5540. this.label81.Location = new System.Drawing.Point(3, 212);
  5541. this.label81.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5542. this.label81.Name = "label81";
  5543. this.label81.Size = new System.Drawing.Size(82, 15);
  5544. this.label81.TabIndex = 13;
  5545. this.label81.Text = "运行时长:";
  5546. //
  5547. // ddjStatus4
  5548. //
  5549. this.ddjStatus4.AutoSize = true;
  5550. this.ddjStatus4.BackColor = System.Drawing.Color.Transparent;
  5551. this.ddjStatus4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5552. this.ddjStatus4.ForeColor = System.Drawing.Color.Blue;
  5553. this.ddjStatus4.Location = new System.Drawing.Point(116, 115);
  5554. this.ddjStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5555. this.ddjStatus4.Name = "ddjStatus4";
  5556. this.ddjStatus4.Size = new System.Drawing.Size(31, 15);
  5557. this.ddjStatus4.TabIndex = 10;
  5558. this.ddjStatus4.Text = "---";
  5559. //
  5560. // ddjPosCurr4
  5561. //
  5562. this.ddjPosCurr4.AutoSize = true;
  5563. this.ddjPosCurr4.BackColor = System.Drawing.Color.Transparent;
  5564. this.ddjPosCurr4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5565. this.ddjPosCurr4.ForeColor = System.Drawing.Color.Blue;
  5566. this.ddjPosCurr4.Location = new System.Drawing.Point(117, 188);
  5567. this.ddjPosCurr4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5568. this.ddjPosCurr4.Name = "ddjPosCurr4";
  5569. this.ddjPosCurr4.Size = new System.Drawing.Size(31, 15);
  5570. this.ddjPosCurr4.TabIndex = 9;
  5571. this.ddjPosCurr4.Text = "---";
  5572. //
  5573. // label89
  5574. //
  5575. this.label89.AutoSize = true;
  5576. this.label89.BackColor = System.Drawing.Color.Transparent;
  5577. this.label89.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5578. this.label89.Location = new System.Drawing.Point(3, 238);
  5579. this.label89.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5580. this.label89.Name = "label89";
  5581. this.label89.Size = new System.Drawing.Size(83, 15);
  5582. this.label89.TabIndex = 8;
  5583. this.label89.Text = "里 程 数:";
  5584. //
  5585. // label90
  5586. //
  5587. this.label90.AutoSize = true;
  5588. this.label90.BackColor = System.Drawing.Color.Transparent;
  5589. this.label90.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5590. this.label90.Location = new System.Drawing.Point(3, 115);
  5591. this.label90.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5592. this.label90.Name = "label90";
  5593. this.label90.Size = new System.Drawing.Size(82, 15);
  5594. this.label90.TabIndex = 6;
  5595. this.label90.Text = "工作状态:";
  5596. //
  5597. // label91
  5598. //
  5599. this.label91.AutoSize = true;
  5600. this.label91.BackColor = System.Drawing.Color.Transparent;
  5601. this.label91.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5602. this.label91.Location = new System.Drawing.Point(3, 188);
  5603. this.label91.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5604. this.label91.Name = "label91";
  5605. this.label91.Size = new System.Drawing.Size(82, 15);
  5606. this.label91.TabIndex = 1;
  5607. this.label91.Text = "当前巷道:";
  5608. //
  5609. // lblsrm04
  5610. //
  5611. this.lblsrm04.AutoSize = true;
  5612. this.lblsrm04.BackColor = System.Drawing.Color.Transparent;
  5613. 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)));
  5614. this.lblsrm04.Location = new System.Drawing.Point(40, 32);
  5615. this.lblsrm04.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5616. this.lblsrm04.Name = "lblsrm04";
  5617. this.lblsrm04.Size = new System.Drawing.Size(115, 20);
  5618. this.lblsrm04.TabIndex = 0;
  5619. this.lblsrm04.Text = "4号 堆垛机";
  5620. this.lblsrm04.Click += new System.EventHandler(this.lblsrm01_Click);
  5621. //
  5622. // G4
  5623. //
  5624. this.G4.BackColor = System.Drawing.Color.Transparent;
  5625. this.G4.Image = ((System.Drawing.Image)(resources.GetObject("G4.Image")));
  5626. this.G4.Location = new System.Drawing.Point(88, -2);
  5627. this.G4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5628. this.G4.Name = "G4";
  5629. this.G4.Size = new System.Drawing.Size(35, 32);
  5630. this.G4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5631. this.G4.TabIndex = 65;
  5632. this.G4.TabStop = false;
  5633. this.G4.Tag = "1";
  5634. //
  5635. // pictureBox14
  5636. //
  5637. this.pictureBox14.BackColor = System.Drawing.Color.Transparent;
  5638. this.pictureBox14.Location = new System.Drawing.Point(87, -2);
  5639. this.pictureBox14.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5640. this.pictureBox14.Name = "pictureBox14";
  5641. this.pictureBox14.Size = new System.Drawing.Size(35, 32);
  5642. this.pictureBox14.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5643. this.pictureBox14.TabIndex = 5;
  5644. this.pictureBox14.TabStop = false;
  5645. //
  5646. // myPanel1
  5647. //
  5648. this.myPanel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel1.BackgroundImage")));
  5649. this.myPanel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5650. this.myPanel1.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5651. this.myPanel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  5652. this.myPanel1.Controls.Add(this.lblInStatus5);
  5653. this.myPanel1.Controls.Add(this.lblOutStatus5);
  5654. this.myPanel1.Controls.Add(this.label11);
  5655. this.myPanel1.Controls.Add(this.ddjPosTo5);
  5656. this.myPanel1.Controls.Add(this.ddjPosFrom5);
  5657. this.myPanel1.Controls.Add(this.label17);
  5658. this.myPanel1.Controls.Add(this.label18);
  5659. this.myPanel1.Controls.Add(this.ddjMode5);
  5660. this.myPanel1.Controls.Add(this.ddjOrdId5);
  5661. this.myPanel1.Controls.Add(this.label21);
  5662. this.myPanel1.Controls.Add(this.ddjOptType5);
  5663. this.myPanel1.Controls.Add(this.label24);
  5664. this.myPanel1.Controls.Add(this.ddjTotal_KM5);
  5665. this.myPanel1.Controls.Add(this.label27);
  5666. this.myPanel1.Controls.Add(this.ddjWorkTime5);
  5667. this.myPanel1.Controls.Add(this.label30);
  5668. this.myPanel1.Controls.Add(this.ddjStatus5);
  5669. this.myPanel1.Controls.Add(this.ddjPosCurr5);
  5670. this.myPanel1.Controls.Add(this.label36);
  5671. this.myPanel1.Controls.Add(this.label37);
  5672. this.myPanel1.Controls.Add(this.label38);
  5673. this.myPanel1.Controls.Add(this.lblsrm05);
  5674. this.myPanel1.Controls.Add(this.G5);
  5675. this.myPanel1.Controls.Add(this.pictureBox3);
  5676. this.myPanel1.Location = new System.Drawing.Point(903, -1);
  5677. this.myPanel1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5678. this.myPanel1.Name = "myPanel1";
  5679. this.myPanel1.Size = new System.Drawing.Size(217, 325);
  5680. this.myPanel1.TabIndex = 30;
  5681. //
  5682. // lblInStatus5
  5683. //
  5684. this.lblInStatus5.BackColor = System.Drawing.Color.DarkGray;
  5685. this.lblInStatus5.Location = new System.Drawing.Point(7, 2);
  5686. this.lblInStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5687. this.lblInStatus5.Name = "lblInStatus5";
  5688. this.lblInStatus5.Size = new System.Drawing.Size(37, 30);
  5689. this.lblInStatus5.TabIndex = 97;
  5690. this.lblInStatus5.Tag = "4";
  5691. this.lblInStatus5.Text = "入";
  5692. this.lblInStatus5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5693. //
  5694. // lblOutStatus5
  5695. //
  5696. this.lblOutStatus5.BackColor = System.Drawing.Color.DarkGray;
  5697. this.lblOutStatus5.Location = new System.Drawing.Point(165, 2);
  5698. this.lblOutStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5699. this.lblOutStatus5.Name = "lblOutStatus5";
  5700. this.lblOutStatus5.Size = new System.Drawing.Size(37, 30);
  5701. this.lblOutStatus5.TabIndex = 94;
  5702. this.lblOutStatus5.Text = "出";
  5703. this.lblOutStatus5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5704. //
  5705. // label11
  5706. //
  5707. this.label11.BackColor = System.Drawing.Color.Transparent;
  5708. this.label11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5709. this.label11.ForeColor = System.Drawing.Color.Red;
  5710. this.label11.Location = new System.Drawing.Point(7, 58);
  5711. this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5712. this.label11.Name = "label11";
  5713. this.label11.Size = new System.Drawing.Size(201, 30);
  5714. this.label11.TabIndex = 92;
  5715. //
  5716. // ddjPosTo5
  5717. //
  5718. this.ddjPosTo5.AutoSize = true;
  5719. this.ddjPosTo5.BackColor = System.Drawing.Color.Transparent;
  5720. this.ddjPosTo5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5721. this.ddjPosTo5.ForeColor = System.Drawing.Color.Blue;
  5722. this.ddjPosTo5.Location = new System.Drawing.Point(119, 292);
  5723. this.ddjPosTo5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5724. this.ddjPosTo5.Name = "ddjPosTo5";
  5725. this.ddjPosTo5.Size = new System.Drawing.Size(31, 15);
  5726. this.ddjPosTo5.TabIndex = 73;
  5727. this.ddjPosTo5.Text = "---";
  5728. //
  5729. // ddjPosFrom5
  5730. //
  5731. this.ddjPosFrom5.AutoSize = true;
  5732. this.ddjPosFrom5.BackColor = System.Drawing.Color.Transparent;
  5733. this.ddjPosFrom5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5734. this.ddjPosFrom5.ForeColor = System.Drawing.Color.Blue;
  5735. this.ddjPosFrom5.Location = new System.Drawing.Point(119, 265);
  5736. this.ddjPosFrom5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5737. this.ddjPosFrom5.Name = "ddjPosFrom5";
  5738. this.ddjPosFrom5.Size = new System.Drawing.Size(31, 15);
  5739. this.ddjPosFrom5.TabIndex = 72;
  5740. this.ddjPosFrom5.Text = "---";
  5741. //
  5742. // label17
  5743. //
  5744. this.label17.AutoSize = true;
  5745. this.label17.BackColor = System.Drawing.Color.Transparent;
  5746. this.label17.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5747. this.label17.Location = new System.Drawing.Point(4, 265);
  5748. this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5749. this.label17.Name = "label17";
  5750. this.label17.Size = new System.Drawing.Size(82, 15);
  5751. this.label17.TabIndex = 71;
  5752. this.label17.Text = "起始位置:";
  5753. //
  5754. // label18
  5755. //
  5756. this.label18.AutoSize = true;
  5757. this.label18.BackColor = System.Drawing.Color.Transparent;
  5758. this.label18.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5759. this.label18.Location = new System.Drawing.Point(4, 292);
  5760. this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5761. this.label18.Name = "label18";
  5762. this.label18.Size = new System.Drawing.Size(82, 15);
  5763. this.label18.TabIndex = 70;
  5764. this.label18.Text = "目标位置:";
  5765. //
  5766. // ddjMode5
  5767. //
  5768. this.ddjMode5.AutoSize = true;
  5769. this.ddjMode5.BackColor = System.Drawing.Color.Transparent;
  5770. this.ddjMode5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5771. this.ddjMode5.ForeColor = System.Drawing.Color.Blue;
  5772. this.ddjMode5.Location = new System.Drawing.Point(116, 92);
  5773. this.ddjMode5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5774. this.ddjMode5.Name = "ddjMode5";
  5775. this.ddjMode5.Size = new System.Drawing.Size(31, 15);
  5776. this.ddjMode5.TabIndex = 12;
  5777. this.ddjMode5.Text = "---";
  5778. //
  5779. // ddjOrdId5
  5780. //
  5781. this.ddjOrdId5.AutoSize = true;
  5782. this.ddjOrdId5.BackColor = System.Drawing.Color.Transparent;
  5783. this.ddjOrdId5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5784. this.ddjOrdId5.ForeColor = System.Drawing.Color.Blue;
  5785. this.ddjOrdId5.Location = new System.Drawing.Point(116, 142);
  5786. this.ddjOrdId5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5787. this.ddjOrdId5.Name = "ddjOrdId5";
  5788. this.ddjOrdId5.Size = new System.Drawing.Size(31, 15);
  5789. this.ddjOrdId5.TabIndex = 64;
  5790. this.ddjOrdId5.Text = "---";
  5791. //
  5792. // label21
  5793. //
  5794. this.label21.AutoSize = true;
  5795. this.label21.BackColor = System.Drawing.Color.Transparent;
  5796. this.label21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5797. this.label21.Location = new System.Drawing.Point(3, 142);
  5798. this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5799. this.label21.Name = "label21";
  5800. this.label21.Size = new System.Drawing.Size(82, 15);
  5801. this.label21.TabIndex = 63;
  5802. this.label21.Text = "工作指令:";
  5803. //
  5804. // ddjOptType5
  5805. //
  5806. this.ddjOptType5.AutoSize = true;
  5807. this.ddjOptType5.BackColor = System.Drawing.Color.Transparent;
  5808. this.ddjOptType5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5809. this.ddjOptType5.ForeColor = System.Drawing.Color.Blue;
  5810. this.ddjOptType5.Location = new System.Drawing.Point(116, 162);
  5811. this.ddjOptType5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5812. this.ddjOptType5.Name = "ddjOptType5";
  5813. this.ddjOptType5.Size = new System.Drawing.Size(31, 15);
  5814. this.ddjOptType5.TabIndex = 62;
  5815. this.ddjOptType5.Text = "---";
  5816. //
  5817. // label24
  5818. //
  5819. this.label24.AutoSize = true;
  5820. this.label24.BackColor = System.Drawing.Color.Transparent;
  5821. this.label24.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5822. this.label24.Location = new System.Drawing.Point(3, 162);
  5823. this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5824. this.label24.Name = "label24";
  5825. this.label24.Size = new System.Drawing.Size(82, 15);
  5826. this.label24.TabIndex = 61;
  5827. this.label24.Text = "作业类型:";
  5828. //
  5829. // ddjTotal_KM5
  5830. //
  5831. this.ddjTotal_KM5.AutoSize = true;
  5832. this.ddjTotal_KM5.BackColor = System.Drawing.Color.Transparent;
  5833. this.ddjTotal_KM5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5834. this.ddjTotal_KM5.ForeColor = System.Drawing.SystemColors.ControlText;
  5835. this.ddjTotal_KM5.Location = new System.Drawing.Point(117, 238);
  5836. this.ddjTotal_KM5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5837. this.ddjTotal_KM5.Name = "ddjTotal_KM5";
  5838. this.ddjTotal_KM5.Size = new System.Drawing.Size(31, 15);
  5839. this.ddjTotal_KM5.TabIndex = 16;
  5840. this.ddjTotal_KM5.Text = "---";
  5841. //
  5842. // label27
  5843. //
  5844. this.label27.AutoSize = true;
  5845. this.label27.BackColor = System.Drawing.Color.Transparent;
  5846. this.label27.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5847. this.label27.Location = new System.Drawing.Point(3, 92);
  5848. this.label27.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5849. this.label27.Name = "label27";
  5850. this.label27.Size = new System.Drawing.Size(82, 15);
  5851. this.label27.TabIndex = 15;
  5852. this.label27.Text = "工作模式:";
  5853. //
  5854. // ddjWorkTime5
  5855. //
  5856. this.ddjWorkTime5.AutoSize = true;
  5857. this.ddjWorkTime5.BackColor = System.Drawing.Color.Transparent;
  5858. this.ddjWorkTime5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5859. this.ddjWorkTime5.ForeColor = System.Drawing.Color.Red;
  5860. this.ddjWorkTime5.Location = new System.Drawing.Point(117, 212);
  5861. this.ddjWorkTime5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5862. this.ddjWorkTime5.Name = "ddjWorkTime5";
  5863. this.ddjWorkTime5.Size = new System.Drawing.Size(31, 15);
  5864. this.ddjWorkTime5.TabIndex = 14;
  5865. this.ddjWorkTime5.Text = "---";
  5866. //
  5867. // label30
  5868. //
  5869. this.label30.AutoSize = true;
  5870. this.label30.BackColor = System.Drawing.Color.Transparent;
  5871. this.label30.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5872. this.label30.Location = new System.Drawing.Point(3, 212);
  5873. this.label30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5874. this.label30.Name = "label30";
  5875. this.label30.Size = new System.Drawing.Size(82, 15);
  5876. this.label30.TabIndex = 13;
  5877. this.label30.Text = "运行时长:";
  5878. //
  5879. // ddjStatus5
  5880. //
  5881. this.ddjStatus5.AutoSize = true;
  5882. this.ddjStatus5.BackColor = System.Drawing.Color.Transparent;
  5883. this.ddjStatus5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5884. this.ddjStatus5.ForeColor = System.Drawing.Color.Blue;
  5885. this.ddjStatus5.Location = new System.Drawing.Point(116, 115);
  5886. this.ddjStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5887. this.ddjStatus5.Name = "ddjStatus5";
  5888. this.ddjStatus5.Size = new System.Drawing.Size(31, 15);
  5889. this.ddjStatus5.TabIndex = 10;
  5890. this.ddjStatus5.Text = "---";
  5891. //
  5892. // ddjPosCurr5
  5893. //
  5894. this.ddjPosCurr5.AutoSize = true;
  5895. this.ddjPosCurr5.BackColor = System.Drawing.Color.Transparent;
  5896. this.ddjPosCurr5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5897. this.ddjPosCurr5.ForeColor = System.Drawing.Color.Blue;
  5898. this.ddjPosCurr5.Location = new System.Drawing.Point(117, 188);
  5899. this.ddjPosCurr5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5900. this.ddjPosCurr5.Name = "ddjPosCurr5";
  5901. this.ddjPosCurr5.Size = new System.Drawing.Size(31, 15);
  5902. this.ddjPosCurr5.TabIndex = 9;
  5903. this.ddjPosCurr5.Text = "---";
  5904. //
  5905. // label36
  5906. //
  5907. this.label36.AutoSize = true;
  5908. this.label36.BackColor = System.Drawing.Color.Transparent;
  5909. this.label36.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5910. this.label36.ForeColor = System.Drawing.SystemColors.ControlText;
  5911. this.label36.Location = new System.Drawing.Point(3, 238);
  5912. this.label36.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5913. this.label36.Name = "label36";
  5914. this.label36.Size = new System.Drawing.Size(83, 15);
  5915. this.label36.TabIndex = 8;
  5916. this.label36.Text = "里 程 数:";
  5917. //
  5918. // label37
  5919. //
  5920. this.label37.AutoSize = true;
  5921. this.label37.BackColor = System.Drawing.Color.Transparent;
  5922. this.label37.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5923. this.label37.Location = new System.Drawing.Point(3, 115);
  5924. this.label37.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5925. this.label37.Name = "label37";
  5926. this.label37.Size = new System.Drawing.Size(82, 15);
  5927. this.label37.TabIndex = 6;
  5928. this.label37.Text = "工作状态:";
  5929. //
  5930. // label38
  5931. //
  5932. this.label38.AutoSize = true;
  5933. this.label38.BackColor = System.Drawing.Color.Transparent;
  5934. this.label38.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5935. this.label38.Location = new System.Drawing.Point(3, 188);
  5936. this.label38.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5937. this.label38.Name = "label38";
  5938. this.label38.Size = new System.Drawing.Size(82, 15);
  5939. this.label38.TabIndex = 1;
  5940. this.label38.Text = "当前巷道:";
  5941. //
  5942. // lblsrm05
  5943. //
  5944. this.lblsrm05.AutoSize = true;
  5945. this.lblsrm05.BackColor = System.Drawing.Color.Transparent;
  5946. 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)));
  5947. this.lblsrm05.Location = new System.Drawing.Point(40, 32);
  5948. this.lblsrm05.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5949. this.lblsrm05.Name = "lblsrm05";
  5950. this.lblsrm05.Size = new System.Drawing.Size(115, 20);
  5951. this.lblsrm05.TabIndex = 0;
  5952. this.lblsrm05.Text = "5号 堆垛机";
  5953. this.lblsrm05.Click += new System.EventHandler(this.lblsrm01_Click);
  5954. //
  5955. // G5
  5956. //
  5957. this.G5.BackColor = System.Drawing.Color.Transparent;
  5958. this.G5.Image = ((System.Drawing.Image)(resources.GetObject("G5.Image")));
  5959. this.G5.Location = new System.Drawing.Point(88, -2);
  5960. this.G5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5961. this.G5.Name = "G5";
  5962. this.G5.Size = new System.Drawing.Size(35, 32);
  5963. this.G5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5964. this.G5.TabIndex = 65;
  5965. this.G5.TabStop = false;
  5966. this.G5.Tag = "1";
  5967. //
  5968. // pictureBox3
  5969. //
  5970. this.pictureBox3.BackColor = System.Drawing.Color.Transparent;
  5971. this.pictureBox3.Location = new System.Drawing.Point(87, -2);
  5972. this.pictureBox3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5973. this.pictureBox3.Name = "pictureBox3";
  5974. this.pictureBox3.Size = new System.Drawing.Size(35, 32);
  5975. this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5976. this.pictureBox3.TabIndex = 5;
  5977. this.pictureBox3.TabStop = false;
  5978. //
  5979. // pnlRGV1089
  5980. //
  5981. this.pnlRGV1089.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlRGV1089.BackgroundImage")));
  5982. this.pnlRGV1089.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5983. this.pnlRGV1089.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5984. this.pnlRGV1089.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  5985. this.pnlRGV1089.Controls.Add(this.label7);
  5986. this.pnlRGV1089.Controls.Add(this.label8);
  5987. this.pnlRGV1089.Controls.Add(this.label9);
  5988. this.pnlRGV1089.Controls.Add(this.rgvOptType2);
  5989. this.pnlRGV1089.Controls.Add(this.label31);
  5990. this.pnlRGV1089.Controls.Add(this.lblRGVWarning1089);
  5991. this.pnlRGV1089.Controls.Add(this.rgvPosCurr2);
  5992. this.pnlRGV1089.Controls.Add(this.rgvMode2);
  5993. this.pnlRGV1089.Controls.Add(this.rgvOrdId2);
  5994. this.pnlRGV1089.Controls.Add(this.label50);
  5995. this.pnlRGV1089.Controls.Add(this.rgvPosTo2);
  5996. this.pnlRGV1089.Controls.Add(this.label53);
  5997. this.pnlRGV1089.Controls.Add(this.rgvPosFrom2);
  5998. this.pnlRGV1089.Controls.Add(this.rgvStatus2);
  5999. this.pnlRGV1089.Controls.Add(this.label63);
  6000. this.pnlRGV1089.Controls.Add(this.lblrgv1089);
  6001. this.pnlRGV1089.Controls.Add(this.GV2);
  6002. this.pnlRGV1089.Controls.Add(this.pictureBox4);
  6003. this.pnlRGV1089.Location = new System.Drawing.Point(1343, 0);
  6004. this.pnlRGV1089.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6005. this.pnlRGV1089.Name = "pnlRGV1089";
  6006. this.pnlRGV1089.Size = new System.Drawing.Size(213, 324);
  6007. this.pnlRGV1089.TabIndex = 99;
  6008. //
  6009. // label7
  6010. //
  6011. this.label7.AutoSize = true;
  6012. this.label7.BackColor = System.Drawing.Color.Transparent;
  6013. this.label7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6014. this.label7.Location = new System.Drawing.Point(5, 244);
  6015. this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6016. this.label7.Name = "label7";
  6017. this.label7.Size = new System.Drawing.Size(82, 15);
  6018. this.label7.TabIndex = 106;
  6019. this.label7.Text = "光电状态:";
  6020. //
  6021. // label8
  6022. //
  6023. this.label8.AutoSize = true;
  6024. this.label8.BackColor = System.Drawing.Color.Transparent;
  6025. this.label8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6026. this.label8.Location = new System.Drawing.Point(4, 191);
  6027. this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6028. this.label8.Name = "label8";
  6029. this.label8.Size = new System.Drawing.Size(82, 15);
  6030. this.label8.TabIndex = 105;
  6031. this.label8.Text = "起始地址:";
  6032. //
  6033. // label9
  6034. //
  6035. this.label9.AutoSize = true;
  6036. this.label9.BackColor = System.Drawing.Color.Transparent;
  6037. this.label9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6038. this.label9.ForeColor = System.Drawing.SystemColors.ControlText;
  6039. this.label9.Location = new System.Drawing.Point(4, 216);
  6040. this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6041. this.label9.Name = "label9";
  6042. this.label9.Size = new System.Drawing.Size(82, 15);
  6043. this.label9.TabIndex = 104;
  6044. this.label9.Text = "目标地址:";
  6045. //
  6046. // rgvOptType2
  6047. //
  6048. this.rgvOptType2.AutoSize = true;
  6049. this.rgvOptType2.BackColor = System.Drawing.Color.Transparent;
  6050. this.rgvOptType2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6051. this.rgvOptType2.ForeColor = System.Drawing.Color.Blue;
  6052. this.rgvOptType2.Location = new System.Drawing.Point(96, 166);
  6053. this.rgvOptType2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6054. this.rgvOptType2.Name = "rgvOptType2";
  6055. this.rgvOptType2.Size = new System.Drawing.Size(31, 15);
  6056. this.rgvOptType2.TabIndex = 101;
  6057. this.rgvOptType2.Text = "---";
  6058. //
  6059. // label31
  6060. //
  6061. this.label31.AutoSize = true;
  6062. this.label31.BackColor = System.Drawing.Color.Transparent;
  6063. this.label31.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6064. this.label31.Location = new System.Drawing.Point(3, 166);
  6065. this.label31.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6066. this.label31.Name = "label31";
  6067. this.label31.Size = new System.Drawing.Size(82, 15);
  6068. this.label31.TabIndex = 100;
  6069. this.label31.Text = "作业类型:";
  6070. //
  6071. // lblRGVWarning1089
  6072. //
  6073. this.lblRGVWarning1089.BackColor = System.Drawing.Color.Transparent;
  6074. this.lblRGVWarning1089.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6075. this.lblRGVWarning1089.ForeColor = System.Drawing.Color.Red;
  6076. this.lblRGVWarning1089.Location = new System.Drawing.Point(7, 58);
  6077. this.lblRGVWarning1089.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6078. this.lblRGVWarning1089.Name = "lblRGVWarning1089";
  6079. this.lblRGVWarning1089.Size = new System.Drawing.Size(201, 30);
  6080. this.lblRGVWarning1089.TabIndex = 92;
  6081. //
  6082. // rgvPosCurr2
  6083. //
  6084. this.rgvPosCurr2.AutoSize = true;
  6085. this.rgvPosCurr2.BackColor = System.Drawing.Color.Transparent;
  6086. this.rgvPosCurr2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6087. this.rgvPosCurr2.ForeColor = System.Drawing.Color.Blue;
  6088. this.rgvPosCurr2.Location = new System.Drawing.Point(95, 244);
  6089. this.rgvPosCurr2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6090. this.rgvPosCurr2.Name = "rgvPosCurr2";
  6091. this.rgvPosCurr2.Size = new System.Drawing.Size(31, 15);
  6092. this.rgvPosCurr2.TabIndex = 72;
  6093. this.rgvPosCurr2.Text = "---";
  6094. //
  6095. // rgvMode2
  6096. //
  6097. this.rgvMode2.AutoSize = true;
  6098. this.rgvMode2.BackColor = System.Drawing.Color.Transparent;
  6099. this.rgvMode2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6100. this.rgvMode2.ForeColor = System.Drawing.Color.Blue;
  6101. this.rgvMode2.Location = new System.Drawing.Point(96, 92);
  6102. this.rgvMode2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6103. this.rgvMode2.Name = "rgvMode2";
  6104. this.rgvMode2.Size = new System.Drawing.Size(31, 15);
  6105. this.rgvMode2.TabIndex = 12;
  6106. this.rgvMode2.Text = "---";
  6107. //
  6108. // rgvOrdId2
  6109. //
  6110. this.rgvOrdId2.AutoSize = true;
  6111. this.rgvOrdId2.BackColor = System.Drawing.Color.Transparent;
  6112. this.rgvOrdId2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6113. this.rgvOrdId2.ForeColor = System.Drawing.Color.Blue;
  6114. this.rgvOrdId2.Location = new System.Drawing.Point(96, 142);
  6115. this.rgvOrdId2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6116. this.rgvOrdId2.Name = "rgvOrdId2";
  6117. this.rgvOrdId2.Size = new System.Drawing.Size(31, 15);
  6118. this.rgvOrdId2.TabIndex = 64;
  6119. this.rgvOrdId2.Text = "---";
  6120. //
  6121. // label50
  6122. //
  6123. this.label50.AutoSize = true;
  6124. this.label50.BackColor = System.Drawing.Color.Transparent;
  6125. this.label50.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6126. this.label50.Location = new System.Drawing.Point(3, 142);
  6127. this.label50.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6128. this.label50.Name = "label50";
  6129. this.label50.Size = new System.Drawing.Size(82, 15);
  6130. this.label50.TabIndex = 63;
  6131. this.label50.Text = "工作指令:";
  6132. //
  6133. // rgvPosTo2
  6134. //
  6135. this.rgvPosTo2.AutoSize = true;
  6136. this.rgvPosTo2.BackColor = System.Drawing.Color.Transparent;
  6137. this.rgvPosTo2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6138. this.rgvPosTo2.ForeColor = System.Drawing.Color.Blue;
  6139. this.rgvPosTo2.Location = new System.Drawing.Point(93, 216);
  6140. this.rgvPosTo2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6141. this.rgvPosTo2.Name = "rgvPosTo2";
  6142. this.rgvPosTo2.Size = new System.Drawing.Size(31, 15);
  6143. this.rgvPosTo2.TabIndex = 16;
  6144. this.rgvPosTo2.Text = "---";
  6145. //
  6146. // label53
  6147. //
  6148. this.label53.AutoSize = true;
  6149. this.label53.BackColor = System.Drawing.Color.Transparent;
  6150. this.label53.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6151. this.label53.Location = new System.Drawing.Point(3, 92);
  6152. this.label53.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6153. this.label53.Name = "label53";
  6154. this.label53.Size = new System.Drawing.Size(82, 15);
  6155. this.label53.TabIndex = 15;
  6156. this.label53.Text = "工作模式:";
  6157. //
  6158. // rgvPosFrom2
  6159. //
  6160. this.rgvPosFrom2.AutoSize = true;
  6161. this.rgvPosFrom2.BackColor = System.Drawing.Color.Transparent;
  6162. this.rgvPosFrom2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6163. this.rgvPosFrom2.ForeColor = System.Drawing.Color.Blue;
  6164. this.rgvPosFrom2.Location = new System.Drawing.Point(93, 191);
  6165. this.rgvPosFrom2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6166. this.rgvPosFrom2.Name = "rgvPosFrom2";
  6167. this.rgvPosFrom2.Size = new System.Drawing.Size(31, 15);
  6168. this.rgvPosFrom2.TabIndex = 14;
  6169. this.rgvPosFrom2.Text = "---";
  6170. //
  6171. // rgvStatus2
  6172. //
  6173. this.rgvStatus2.AutoSize = true;
  6174. this.rgvStatus2.BackColor = System.Drawing.Color.Transparent;
  6175. this.rgvStatus2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6176. this.rgvStatus2.ForeColor = System.Drawing.Color.Blue;
  6177. this.rgvStatus2.Location = new System.Drawing.Point(96, 115);
  6178. this.rgvStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6179. this.rgvStatus2.Name = "rgvStatus2";
  6180. this.rgvStatus2.Size = new System.Drawing.Size(31, 15);
  6181. this.rgvStatus2.TabIndex = 10;
  6182. this.rgvStatus2.Text = "---";
  6183. //
  6184. // label63
  6185. //
  6186. this.label63.AutoSize = true;
  6187. this.label63.BackColor = System.Drawing.Color.Transparent;
  6188. this.label63.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6189. this.label63.Location = new System.Drawing.Point(3, 115);
  6190. this.label63.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6191. this.label63.Name = "label63";
  6192. this.label63.Size = new System.Drawing.Size(82, 15);
  6193. this.label63.TabIndex = 6;
  6194. this.label63.Text = "工作状态:";
  6195. //
  6196. // lblrgv1089
  6197. //
  6198. this.lblrgv1089.AutoSize = true;
  6199. this.lblrgv1089.BackColor = System.Drawing.Color.Transparent;
  6200. 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)));
  6201. this.lblrgv1089.Location = new System.Drawing.Point(59, 32);
  6202. this.lblrgv1089.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6203. this.lblrgv1089.Name = "lblrgv1089";
  6204. this.lblrgv1089.Size = new System.Drawing.Size(53, 20);
  6205. this.lblrgv1089.TabIndex = 0;
  6206. this.lblrgv1089.Text = "RGV2";
  6207. this.lblrgv1089.Click += new System.EventHandler(this.lblsrm01_Click);
  6208. //
  6209. // GV2
  6210. //
  6211. this.GV2.BackColor = System.Drawing.Color.Transparent;
  6212. this.GV2.Image = ((System.Drawing.Image)(resources.GetObject("GV2.Image")));
  6213. this.GV2.Location = new System.Drawing.Point(88, -2);
  6214. this.GV2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6215. this.GV2.Name = "GV2";
  6216. this.GV2.Size = new System.Drawing.Size(35, 32);
  6217. this.GV2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6218. this.GV2.TabIndex = 65;
  6219. this.GV2.TabStop = false;
  6220. this.GV2.Tag = "1";
  6221. //
  6222. // pictureBox4
  6223. //
  6224. this.pictureBox4.BackColor = System.Drawing.Color.Transparent;
  6225. this.pictureBox4.Location = new System.Drawing.Point(87, -2);
  6226. this.pictureBox4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6227. this.pictureBox4.Name = "pictureBox4";
  6228. this.pictureBox4.Size = new System.Drawing.Size(35, 32);
  6229. this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6230. this.pictureBox4.TabIndex = 5;
  6231. this.pictureBox4.TabStop = false;
  6232. //
  6233. // pnlRGV1091
  6234. //
  6235. this.pnlRGV1091.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlRGV1091.BackgroundImage")));
  6236. this.pnlRGV1091.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6237. this.pnlRGV1091.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6238. this.pnlRGV1091.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6239. this.pnlRGV1091.Controls.Add(this.label14);
  6240. this.pnlRGV1091.Controls.Add(this.label19);
  6241. this.pnlRGV1091.Controls.Add(this.label20);
  6242. this.pnlRGV1091.Controls.Add(this.rgvOptType3);
  6243. this.pnlRGV1091.Controls.Add(this.label74);
  6244. this.pnlRGV1091.Controls.Add(this.lblRGVWarning1091);
  6245. this.pnlRGV1091.Controls.Add(this.rgvPosCurr3);
  6246. this.pnlRGV1091.Controls.Add(this.rgvMode3);
  6247. this.pnlRGV1091.Controls.Add(this.rgvOrdId3);
  6248. this.pnlRGV1091.Controls.Add(this.label94);
  6249. this.pnlRGV1091.Controls.Add(this.rgvPosTo3);
  6250. this.pnlRGV1091.Controls.Add(this.label96);
  6251. this.pnlRGV1091.Controls.Add(this.rgvPosFrom3);
  6252. this.pnlRGV1091.Controls.Add(this.rgvStatus3);
  6253. this.pnlRGV1091.Controls.Add(this.label102);
  6254. this.pnlRGV1091.Controls.Add(this.lblrgv1091);
  6255. this.pnlRGV1091.Controls.Add(this.GV3);
  6256. this.pnlRGV1091.Controls.Add(this.pictureBox7);
  6257. this.pnlRGV1091.Location = new System.Drawing.Point(1561, 0);
  6258. this.pnlRGV1091.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6259. this.pnlRGV1091.Name = "pnlRGV1091";
  6260. this.pnlRGV1091.Size = new System.Drawing.Size(213, 324);
  6261. this.pnlRGV1091.TabIndex = 104;
  6262. //
  6263. // label14
  6264. //
  6265. this.label14.AutoSize = true;
  6266. this.label14.BackColor = System.Drawing.Color.Transparent;
  6267. this.label14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6268. this.label14.Location = new System.Drawing.Point(4, 241);
  6269. this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6270. this.label14.Name = "label14";
  6271. this.label14.Size = new System.Drawing.Size(82, 15);
  6272. this.label14.TabIndex = 106;
  6273. this.label14.Text = "光电状态:";
  6274. //
  6275. // label19
  6276. //
  6277. this.label19.AutoSize = true;
  6278. this.label19.BackColor = System.Drawing.Color.Transparent;
  6279. this.label19.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6280. this.label19.Location = new System.Drawing.Point(3, 189);
  6281. this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6282. this.label19.Name = "label19";
  6283. this.label19.Size = new System.Drawing.Size(82, 15);
  6284. this.label19.TabIndex = 105;
  6285. this.label19.Text = "起始地址:";
  6286. //
  6287. // label20
  6288. //
  6289. this.label20.AutoSize = true;
  6290. this.label20.BackColor = System.Drawing.Color.Transparent;
  6291. this.label20.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6292. this.label20.ForeColor = System.Drawing.SystemColors.ControlText;
  6293. this.label20.Location = new System.Drawing.Point(3, 214);
  6294. this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6295. this.label20.Name = "label20";
  6296. this.label20.Size = new System.Drawing.Size(82, 15);
  6297. this.label20.TabIndex = 104;
  6298. this.label20.Text = "目标地址:";
  6299. //
  6300. // rgvOptType3
  6301. //
  6302. this.rgvOptType3.AutoSize = true;
  6303. this.rgvOptType3.BackColor = System.Drawing.Color.Transparent;
  6304. this.rgvOptType3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6305. this.rgvOptType3.ForeColor = System.Drawing.Color.Blue;
  6306. this.rgvOptType3.Location = new System.Drawing.Point(96, 166);
  6307. this.rgvOptType3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6308. this.rgvOptType3.Name = "rgvOptType3";
  6309. this.rgvOptType3.Size = new System.Drawing.Size(31, 15);
  6310. this.rgvOptType3.TabIndex = 101;
  6311. this.rgvOptType3.Text = "---";
  6312. //
  6313. // label74
  6314. //
  6315. this.label74.AutoSize = true;
  6316. this.label74.BackColor = System.Drawing.Color.Transparent;
  6317. this.label74.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6318. this.label74.Location = new System.Drawing.Point(3, 166);
  6319. this.label74.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6320. this.label74.Name = "label74";
  6321. this.label74.Size = new System.Drawing.Size(82, 15);
  6322. this.label74.TabIndex = 100;
  6323. this.label74.Text = "作业类型:";
  6324. //
  6325. // lblRGVWarning1091
  6326. //
  6327. this.lblRGVWarning1091.BackColor = System.Drawing.Color.Transparent;
  6328. this.lblRGVWarning1091.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6329. this.lblRGVWarning1091.ForeColor = System.Drawing.Color.Red;
  6330. this.lblRGVWarning1091.Location = new System.Drawing.Point(7, 58);
  6331. this.lblRGVWarning1091.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6332. this.lblRGVWarning1091.Name = "lblRGVWarning1091";
  6333. this.lblRGVWarning1091.Size = new System.Drawing.Size(201, 30);
  6334. this.lblRGVWarning1091.TabIndex = 92;
  6335. //
  6336. // rgvPosCurr3
  6337. //
  6338. this.rgvPosCurr3.AutoSize = true;
  6339. this.rgvPosCurr3.BackColor = System.Drawing.Color.Transparent;
  6340. this.rgvPosCurr3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6341. this.rgvPosCurr3.ForeColor = System.Drawing.Color.Blue;
  6342. this.rgvPosCurr3.Location = new System.Drawing.Point(99, 242);
  6343. this.rgvPosCurr3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6344. this.rgvPosCurr3.Name = "rgvPosCurr3";
  6345. this.rgvPosCurr3.Size = new System.Drawing.Size(31, 15);
  6346. this.rgvPosCurr3.TabIndex = 72;
  6347. this.rgvPosCurr3.Text = "---";
  6348. //
  6349. // rgvMode3
  6350. //
  6351. this.rgvMode3.AutoSize = true;
  6352. this.rgvMode3.BackColor = System.Drawing.Color.Transparent;
  6353. this.rgvMode3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6354. this.rgvMode3.ForeColor = System.Drawing.Color.Blue;
  6355. this.rgvMode3.Location = new System.Drawing.Point(96, 92);
  6356. this.rgvMode3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6357. this.rgvMode3.Name = "rgvMode3";
  6358. this.rgvMode3.Size = new System.Drawing.Size(31, 15);
  6359. this.rgvMode3.TabIndex = 12;
  6360. this.rgvMode3.Text = "---";
  6361. //
  6362. // rgvOrdId3
  6363. //
  6364. this.rgvOrdId3.AutoSize = true;
  6365. this.rgvOrdId3.BackColor = System.Drawing.Color.Transparent;
  6366. this.rgvOrdId3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6367. this.rgvOrdId3.ForeColor = System.Drawing.Color.Blue;
  6368. this.rgvOrdId3.Location = new System.Drawing.Point(96, 142);
  6369. this.rgvOrdId3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6370. this.rgvOrdId3.Name = "rgvOrdId3";
  6371. this.rgvOrdId3.Size = new System.Drawing.Size(31, 15);
  6372. this.rgvOrdId3.TabIndex = 64;
  6373. this.rgvOrdId3.Text = "---";
  6374. //
  6375. // label94
  6376. //
  6377. this.label94.AutoSize = true;
  6378. this.label94.BackColor = System.Drawing.Color.Transparent;
  6379. this.label94.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6380. this.label94.Location = new System.Drawing.Point(3, 142);
  6381. this.label94.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6382. this.label94.Name = "label94";
  6383. this.label94.Size = new System.Drawing.Size(82, 15);
  6384. this.label94.TabIndex = 63;
  6385. this.label94.Text = "工作指令:";
  6386. //
  6387. // rgvPosTo3
  6388. //
  6389. this.rgvPosTo3.AutoSize = true;
  6390. this.rgvPosTo3.BackColor = System.Drawing.Color.Transparent;
  6391. this.rgvPosTo3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6392. this.rgvPosTo3.ForeColor = System.Drawing.Color.Blue;
  6393. this.rgvPosTo3.Location = new System.Drawing.Point(97, 215);
  6394. this.rgvPosTo3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6395. this.rgvPosTo3.Name = "rgvPosTo3";
  6396. this.rgvPosTo3.Size = new System.Drawing.Size(31, 15);
  6397. this.rgvPosTo3.TabIndex = 16;
  6398. this.rgvPosTo3.Text = "---";
  6399. //
  6400. // label96
  6401. //
  6402. this.label96.AutoSize = true;
  6403. this.label96.BackColor = System.Drawing.Color.Transparent;
  6404. this.label96.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6405. this.label96.Location = new System.Drawing.Point(3, 92);
  6406. this.label96.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6407. this.label96.Name = "label96";
  6408. this.label96.Size = new System.Drawing.Size(82, 15);
  6409. this.label96.TabIndex = 15;
  6410. this.label96.Text = "工作模式:";
  6411. //
  6412. // rgvPosFrom3
  6413. //
  6414. this.rgvPosFrom3.AutoSize = true;
  6415. this.rgvPosFrom3.BackColor = System.Drawing.Color.Transparent;
  6416. this.rgvPosFrom3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6417. this.rgvPosFrom3.ForeColor = System.Drawing.Color.Blue;
  6418. this.rgvPosFrom3.Location = new System.Drawing.Point(97, 190);
  6419. this.rgvPosFrom3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6420. this.rgvPosFrom3.Name = "rgvPosFrom3";
  6421. this.rgvPosFrom3.Size = new System.Drawing.Size(31, 15);
  6422. this.rgvPosFrom3.TabIndex = 14;
  6423. this.rgvPosFrom3.Text = "---";
  6424. //
  6425. // rgvStatus3
  6426. //
  6427. this.rgvStatus3.AutoSize = true;
  6428. this.rgvStatus3.BackColor = System.Drawing.Color.Transparent;
  6429. this.rgvStatus3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6430. this.rgvStatus3.ForeColor = System.Drawing.Color.Blue;
  6431. this.rgvStatus3.Location = new System.Drawing.Point(96, 115);
  6432. this.rgvStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6433. this.rgvStatus3.Name = "rgvStatus3";
  6434. this.rgvStatus3.Size = new System.Drawing.Size(31, 15);
  6435. this.rgvStatus3.TabIndex = 10;
  6436. this.rgvStatus3.Text = "---";
  6437. //
  6438. // label102
  6439. //
  6440. this.label102.AutoSize = true;
  6441. this.label102.BackColor = System.Drawing.Color.Transparent;
  6442. this.label102.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6443. this.label102.Location = new System.Drawing.Point(3, 115);
  6444. this.label102.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6445. this.label102.Name = "label102";
  6446. this.label102.Size = new System.Drawing.Size(82, 15);
  6447. this.label102.TabIndex = 6;
  6448. this.label102.Text = "工作状态:";
  6449. //
  6450. // lblrgv1091
  6451. //
  6452. this.lblrgv1091.AutoSize = true;
  6453. this.lblrgv1091.BackColor = System.Drawing.Color.Transparent;
  6454. 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)));
  6455. this.lblrgv1091.Location = new System.Drawing.Point(59, 32);
  6456. this.lblrgv1091.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6457. this.lblrgv1091.Name = "lblrgv1091";
  6458. this.lblrgv1091.Size = new System.Drawing.Size(53, 20);
  6459. this.lblrgv1091.TabIndex = 0;
  6460. this.lblrgv1091.Text = "RGV3";
  6461. this.lblrgv1091.Click += new System.EventHandler(this.lblsrm01_Click);
  6462. //
  6463. // GV3
  6464. //
  6465. this.GV3.BackColor = System.Drawing.Color.Transparent;
  6466. this.GV3.Image = ((System.Drawing.Image)(resources.GetObject("GV3.Image")));
  6467. this.GV3.Location = new System.Drawing.Point(88, -2);
  6468. this.GV3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6469. this.GV3.Name = "GV3";
  6470. this.GV3.Size = new System.Drawing.Size(35, 32);
  6471. this.GV3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6472. this.GV3.TabIndex = 65;
  6473. this.GV3.TabStop = false;
  6474. this.GV3.Tag = "1";
  6475. //
  6476. // pictureBox7
  6477. //
  6478. this.pictureBox7.BackColor = System.Drawing.Color.Transparent;
  6479. this.pictureBox7.Location = new System.Drawing.Point(87, -2);
  6480. this.pictureBox7.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6481. this.pictureBox7.Name = "pictureBox7";
  6482. this.pictureBox7.Size = new System.Drawing.Size(35, 32);
  6483. this.pictureBox7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6484. this.pictureBox7.TabIndex = 5;
  6485. this.pictureBox7.TabStop = false;
  6486. //
  6487. // myPanel5
  6488. //
  6489. this.myPanel5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel5.BackgroundImage")));
  6490. this.myPanel5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6491. this.myPanel5.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6492. this.myPanel5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6493. this.myPanel5.Controls.Add(this.label25);
  6494. this.myPanel5.Controls.Add(this.label35);
  6495. this.myPanel5.Controls.Add(this.label39);
  6496. this.myPanel5.Controls.Add(this.rgvOptType4);
  6497. this.myPanel5.Controls.Add(this.label173);
  6498. this.myPanel5.Controls.Add(this.lblRGVWarning1007);
  6499. this.myPanel5.Controls.Add(this.rgvPosCurr4);
  6500. this.myPanel5.Controls.Add(this.rgvMode4);
  6501. this.myPanel5.Controls.Add(this.rgvOrdId4);
  6502. this.myPanel5.Controls.Add(this.label181);
  6503. this.myPanel5.Controls.Add(this.rgvPosTo4);
  6504. this.myPanel5.Controls.Add(this.label183);
  6505. this.myPanel5.Controls.Add(this.rgvPosFrom4);
  6506. this.myPanel5.Controls.Add(this.rgvStatus4);
  6507. this.myPanel5.Controls.Add(this.label189);
  6508. this.myPanel5.Controls.Add(this.lblrgv1007);
  6509. this.myPanel5.Controls.Add(this.GV4);
  6510. this.myPanel5.Controls.Add(this.pictureBox17);
  6511. this.myPanel5.Location = new System.Drawing.Point(1781, -1);
  6512. this.myPanel5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6513. this.myPanel5.Name = "myPanel5";
  6514. this.myPanel5.Size = new System.Drawing.Size(212, 325);
  6515. this.myPanel5.TabIndex = 107;
  6516. //
  6517. // label25
  6518. //
  6519. this.label25.AutoSize = true;
  6520. this.label25.BackColor = System.Drawing.Color.Transparent;
  6521. this.label25.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6522. this.label25.Location = new System.Drawing.Point(5, 242);
  6523. this.label25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6524. this.label25.Name = "label25";
  6525. this.label25.Size = new System.Drawing.Size(82, 15);
  6526. this.label25.TabIndex = 106;
  6527. this.label25.Text = "光电状态:";
  6528. //
  6529. // label35
  6530. //
  6531. this.label35.AutoSize = true;
  6532. this.label35.BackColor = System.Drawing.Color.Transparent;
  6533. this.label35.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6534. this.label35.Location = new System.Drawing.Point(4, 190);
  6535. this.label35.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6536. this.label35.Name = "label35";
  6537. this.label35.Size = new System.Drawing.Size(82, 15);
  6538. this.label35.TabIndex = 105;
  6539. this.label35.Text = "起始地址:";
  6540. //
  6541. // label39
  6542. //
  6543. this.label39.AutoSize = true;
  6544. this.label39.BackColor = System.Drawing.Color.Transparent;
  6545. this.label39.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6546. this.label39.ForeColor = System.Drawing.SystemColors.ControlText;
  6547. this.label39.Location = new System.Drawing.Point(4, 215);
  6548. this.label39.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6549. this.label39.Name = "label39";
  6550. this.label39.Size = new System.Drawing.Size(82, 15);
  6551. this.label39.TabIndex = 104;
  6552. this.label39.Text = "目标地址:";
  6553. //
  6554. // rgvOptType4
  6555. //
  6556. this.rgvOptType4.AutoSize = true;
  6557. this.rgvOptType4.BackColor = System.Drawing.Color.Transparent;
  6558. this.rgvOptType4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6559. this.rgvOptType4.ForeColor = System.Drawing.Color.Blue;
  6560. this.rgvOptType4.Location = new System.Drawing.Point(96, 166);
  6561. this.rgvOptType4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6562. this.rgvOptType4.Name = "rgvOptType4";
  6563. this.rgvOptType4.Size = new System.Drawing.Size(31, 15);
  6564. this.rgvOptType4.TabIndex = 101;
  6565. this.rgvOptType4.Text = "---";
  6566. //
  6567. // label173
  6568. //
  6569. this.label173.AutoSize = true;
  6570. this.label173.BackColor = System.Drawing.Color.Transparent;
  6571. this.label173.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6572. this.label173.Location = new System.Drawing.Point(3, 166);
  6573. this.label173.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6574. this.label173.Name = "label173";
  6575. this.label173.Size = new System.Drawing.Size(82, 15);
  6576. this.label173.TabIndex = 100;
  6577. this.label173.Text = "作业类型:";
  6578. //
  6579. // lblRGVWarning1007
  6580. //
  6581. this.lblRGVWarning1007.BackColor = System.Drawing.Color.Transparent;
  6582. this.lblRGVWarning1007.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6583. this.lblRGVWarning1007.ForeColor = System.Drawing.Color.Red;
  6584. this.lblRGVWarning1007.Location = new System.Drawing.Point(7, 58);
  6585. this.lblRGVWarning1007.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6586. this.lblRGVWarning1007.Name = "lblRGVWarning1007";
  6587. this.lblRGVWarning1007.Size = new System.Drawing.Size(201, 30);
  6588. this.lblRGVWarning1007.TabIndex = 92;
  6589. //
  6590. // rgvPosCurr4
  6591. //
  6592. this.rgvPosCurr4.AutoSize = true;
  6593. this.rgvPosCurr4.BackColor = System.Drawing.Color.Transparent;
  6594. this.rgvPosCurr4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6595. this.rgvPosCurr4.ForeColor = System.Drawing.Color.Blue;
  6596. this.rgvPosCurr4.Location = new System.Drawing.Point(99, 244);
  6597. this.rgvPosCurr4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6598. this.rgvPosCurr4.Name = "rgvPosCurr4";
  6599. this.rgvPosCurr4.Size = new System.Drawing.Size(31, 15);
  6600. this.rgvPosCurr4.TabIndex = 72;
  6601. this.rgvPosCurr4.Text = "---";
  6602. //
  6603. // rgvMode4
  6604. //
  6605. this.rgvMode4.AutoSize = true;
  6606. this.rgvMode4.BackColor = System.Drawing.Color.Transparent;
  6607. this.rgvMode4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6608. this.rgvMode4.ForeColor = System.Drawing.Color.Blue;
  6609. this.rgvMode4.Location = new System.Drawing.Point(96, 92);
  6610. this.rgvMode4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6611. this.rgvMode4.Name = "rgvMode4";
  6612. this.rgvMode4.Size = new System.Drawing.Size(31, 15);
  6613. this.rgvMode4.TabIndex = 12;
  6614. this.rgvMode4.Text = "---";
  6615. //
  6616. // rgvOrdId4
  6617. //
  6618. this.rgvOrdId4.AutoSize = true;
  6619. this.rgvOrdId4.BackColor = System.Drawing.Color.Transparent;
  6620. this.rgvOrdId4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6621. this.rgvOrdId4.ForeColor = System.Drawing.Color.Blue;
  6622. this.rgvOrdId4.Location = new System.Drawing.Point(96, 142);
  6623. this.rgvOrdId4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6624. this.rgvOrdId4.Name = "rgvOrdId4";
  6625. this.rgvOrdId4.Size = new System.Drawing.Size(31, 15);
  6626. this.rgvOrdId4.TabIndex = 64;
  6627. this.rgvOrdId4.Text = "---";
  6628. //
  6629. // label181
  6630. //
  6631. this.label181.AutoSize = true;
  6632. this.label181.BackColor = System.Drawing.Color.Transparent;
  6633. this.label181.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6634. this.label181.Location = new System.Drawing.Point(3, 142);
  6635. this.label181.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6636. this.label181.Name = "label181";
  6637. this.label181.Size = new System.Drawing.Size(82, 15);
  6638. this.label181.TabIndex = 63;
  6639. this.label181.Text = "工作指令:";
  6640. //
  6641. // rgvPosTo4
  6642. //
  6643. this.rgvPosTo4.AutoSize = true;
  6644. this.rgvPosTo4.BackColor = System.Drawing.Color.Transparent;
  6645. this.rgvPosTo4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6646. this.rgvPosTo4.ForeColor = System.Drawing.Color.Blue;
  6647. this.rgvPosTo4.Location = new System.Drawing.Point(97, 215);
  6648. this.rgvPosTo4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6649. this.rgvPosTo4.Name = "rgvPosTo4";
  6650. this.rgvPosTo4.Size = new System.Drawing.Size(31, 15);
  6651. this.rgvPosTo4.TabIndex = 16;
  6652. this.rgvPosTo4.Text = "---";
  6653. //
  6654. // label183
  6655. //
  6656. this.label183.AutoSize = true;
  6657. this.label183.BackColor = System.Drawing.Color.Transparent;
  6658. this.label183.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6659. this.label183.Location = new System.Drawing.Point(3, 92);
  6660. this.label183.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6661. this.label183.Name = "label183";
  6662. this.label183.Size = new System.Drawing.Size(82, 15);
  6663. this.label183.TabIndex = 15;
  6664. this.label183.Text = "工作模式:";
  6665. //
  6666. // rgvPosFrom4
  6667. //
  6668. this.rgvPosFrom4.AutoSize = true;
  6669. this.rgvPosFrom4.BackColor = System.Drawing.Color.Transparent;
  6670. this.rgvPosFrom4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6671. this.rgvPosFrom4.ForeColor = System.Drawing.Color.Blue;
  6672. this.rgvPosFrom4.Location = new System.Drawing.Point(97, 190);
  6673. this.rgvPosFrom4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6674. this.rgvPosFrom4.Name = "rgvPosFrom4";
  6675. this.rgvPosFrom4.Size = new System.Drawing.Size(31, 15);
  6676. this.rgvPosFrom4.TabIndex = 14;
  6677. this.rgvPosFrom4.Text = "---";
  6678. //
  6679. // rgvStatus4
  6680. //
  6681. this.rgvStatus4.AutoSize = true;
  6682. this.rgvStatus4.BackColor = System.Drawing.Color.Transparent;
  6683. this.rgvStatus4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6684. this.rgvStatus4.ForeColor = System.Drawing.Color.Blue;
  6685. this.rgvStatus4.Location = new System.Drawing.Point(96, 115);
  6686. this.rgvStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6687. this.rgvStatus4.Name = "rgvStatus4";
  6688. this.rgvStatus4.Size = new System.Drawing.Size(31, 15);
  6689. this.rgvStatus4.TabIndex = 10;
  6690. this.rgvStatus4.Text = "---";
  6691. //
  6692. // label189
  6693. //
  6694. this.label189.AutoSize = true;
  6695. this.label189.BackColor = System.Drawing.Color.Transparent;
  6696. this.label189.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6697. this.label189.Location = new System.Drawing.Point(3, 115);
  6698. this.label189.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6699. this.label189.Name = "label189";
  6700. this.label189.Size = new System.Drawing.Size(82, 15);
  6701. this.label189.TabIndex = 6;
  6702. this.label189.Text = "工作状态:";
  6703. //
  6704. // lblrgv1007
  6705. //
  6706. this.lblrgv1007.AutoSize = true;
  6707. this.lblrgv1007.BackColor = System.Drawing.Color.Transparent;
  6708. 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)));
  6709. this.lblrgv1007.Location = new System.Drawing.Point(59, 32);
  6710. this.lblrgv1007.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6711. this.lblrgv1007.Name = "lblrgv1007";
  6712. this.lblrgv1007.Size = new System.Drawing.Size(53, 20);
  6713. this.lblrgv1007.TabIndex = 0;
  6714. this.lblrgv1007.Text = "RGV4";
  6715. this.lblrgv1007.Click += new System.EventHandler(this.lblsrm01_Click);
  6716. //
  6717. // GV4
  6718. //
  6719. this.GV4.BackColor = System.Drawing.Color.Transparent;
  6720. this.GV4.Image = ((System.Drawing.Image)(resources.GetObject("GV4.Image")));
  6721. this.GV4.Location = new System.Drawing.Point(88, -2);
  6722. this.GV4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6723. this.GV4.Name = "GV4";
  6724. this.GV4.Size = new System.Drawing.Size(35, 32);
  6725. this.GV4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6726. this.GV4.TabIndex = 65;
  6727. this.GV4.TabStop = false;
  6728. this.GV4.Tag = "1";
  6729. //
  6730. // pictureBox17
  6731. //
  6732. this.pictureBox17.BackColor = System.Drawing.Color.Transparent;
  6733. this.pictureBox17.Location = new System.Drawing.Point(87, -2);
  6734. this.pictureBox17.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6735. this.pictureBox17.Name = "pictureBox17";
  6736. this.pictureBox17.Size = new System.Drawing.Size(35, 32);
  6737. this.pictureBox17.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6738. this.pictureBox17.TabIndex = 5;
  6739. this.pictureBox17.TabStop = false;
  6740. //
  6741. // myPanel11
  6742. //
  6743. this.myPanel11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel11.BackgroundImage")));
  6744. this.myPanel11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6745. this.myPanel11.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6746. this.myPanel11.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6747. this.myPanel11.Controls.Add(this.label40);
  6748. this.myPanel11.Controls.Add(this.label41);
  6749. this.myPanel11.Controls.Add(this.label42);
  6750. this.myPanel11.Controls.Add(this.rgvOptType5);
  6751. this.myPanel11.Controls.Add(this.label305);
  6752. this.myPanel11.Controls.Add(this.lblRGVWarning1175);
  6753. this.myPanel11.Controls.Add(this.rgvPosCurr5);
  6754. this.myPanel11.Controls.Add(this.rgvMode5);
  6755. this.myPanel11.Controls.Add(this.rgvOrdId5);
  6756. this.myPanel11.Controls.Add(this.label313);
  6757. this.myPanel11.Controls.Add(this.rgvPosTo5);
  6758. this.myPanel11.Controls.Add(this.label315);
  6759. this.myPanel11.Controls.Add(this.rgvPosFrom5);
  6760. this.myPanel11.Controls.Add(this.rgvStatus5);
  6761. this.myPanel11.Controls.Add(this.label321);
  6762. this.myPanel11.Controls.Add(this.lblrgv1175);
  6763. this.myPanel11.Controls.Add(this.GV5);
  6764. this.myPanel11.Controls.Add(this.pictureBox29);
  6765. this.myPanel11.Location = new System.Drawing.Point(1997, -1);
  6766. this.myPanel11.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6767. this.myPanel11.Name = "myPanel11";
  6768. this.myPanel11.Size = new System.Drawing.Size(212, 325);
  6769. this.myPanel11.TabIndex = 109;
  6770. //
  6771. // label40
  6772. //
  6773. this.label40.AutoSize = true;
  6774. this.label40.BackColor = System.Drawing.Color.Transparent;
  6775. this.label40.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6776. this.label40.Location = new System.Drawing.Point(8, 244);
  6777. this.label40.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6778. this.label40.Name = "label40";
  6779. this.label40.Size = new System.Drawing.Size(82, 15);
  6780. this.label40.TabIndex = 106;
  6781. this.label40.Text = "光电状态:";
  6782. //
  6783. // label41
  6784. //
  6785. this.label41.AutoSize = true;
  6786. this.label41.BackColor = System.Drawing.Color.Transparent;
  6787. this.label41.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6788. this.label41.Location = new System.Drawing.Point(7, 191);
  6789. this.label41.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6790. this.label41.Name = "label41";
  6791. this.label41.Size = new System.Drawing.Size(82, 15);
  6792. this.label41.TabIndex = 105;
  6793. this.label41.Text = "起始地址:";
  6794. //
  6795. // label42
  6796. //
  6797. this.label42.AutoSize = true;
  6798. this.label42.BackColor = System.Drawing.Color.Transparent;
  6799. this.label42.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6800. this.label42.ForeColor = System.Drawing.SystemColors.ControlText;
  6801. this.label42.Location = new System.Drawing.Point(7, 216);
  6802. this.label42.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6803. this.label42.Name = "label42";
  6804. this.label42.Size = new System.Drawing.Size(82, 15);
  6805. this.label42.TabIndex = 104;
  6806. this.label42.Text = "目标地址:";
  6807. //
  6808. // rgvOptType5
  6809. //
  6810. this.rgvOptType5.AutoSize = true;
  6811. this.rgvOptType5.BackColor = System.Drawing.Color.Transparent;
  6812. this.rgvOptType5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6813. this.rgvOptType5.ForeColor = System.Drawing.Color.Blue;
  6814. this.rgvOptType5.Location = new System.Drawing.Point(96, 166);
  6815. this.rgvOptType5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6816. this.rgvOptType5.Name = "rgvOptType5";
  6817. this.rgvOptType5.Size = new System.Drawing.Size(31, 15);
  6818. this.rgvOptType5.TabIndex = 101;
  6819. this.rgvOptType5.Text = "---";
  6820. //
  6821. // label305
  6822. //
  6823. this.label305.AutoSize = true;
  6824. this.label305.BackColor = System.Drawing.Color.Transparent;
  6825. this.label305.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6826. this.label305.Location = new System.Drawing.Point(3, 166);
  6827. this.label305.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6828. this.label305.Name = "label305";
  6829. this.label305.Size = new System.Drawing.Size(82, 15);
  6830. this.label305.TabIndex = 100;
  6831. this.label305.Text = "作业类型:";
  6832. //
  6833. // lblRGVWarning1175
  6834. //
  6835. this.lblRGVWarning1175.BackColor = System.Drawing.Color.Transparent;
  6836. this.lblRGVWarning1175.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6837. this.lblRGVWarning1175.ForeColor = System.Drawing.Color.Red;
  6838. this.lblRGVWarning1175.Location = new System.Drawing.Point(7, 58);
  6839. this.lblRGVWarning1175.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6840. this.lblRGVWarning1175.Name = "lblRGVWarning1175";
  6841. this.lblRGVWarning1175.Size = new System.Drawing.Size(201, 30);
  6842. this.lblRGVWarning1175.TabIndex = 92;
  6843. //
  6844. // rgvPosCurr5
  6845. //
  6846. this.rgvPosCurr5.AutoSize = true;
  6847. this.rgvPosCurr5.BackColor = System.Drawing.Color.Transparent;
  6848. this.rgvPosCurr5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6849. this.rgvPosCurr5.ForeColor = System.Drawing.Color.Blue;
  6850. this.rgvPosCurr5.Location = new System.Drawing.Point(99, 242);
  6851. this.rgvPosCurr5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6852. this.rgvPosCurr5.Name = "rgvPosCurr5";
  6853. this.rgvPosCurr5.Size = new System.Drawing.Size(31, 15);
  6854. this.rgvPosCurr5.TabIndex = 72;
  6855. this.rgvPosCurr5.Text = "---";
  6856. //
  6857. // rgvMode5
  6858. //
  6859. this.rgvMode5.AutoSize = true;
  6860. this.rgvMode5.BackColor = System.Drawing.Color.Transparent;
  6861. this.rgvMode5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6862. this.rgvMode5.ForeColor = System.Drawing.Color.Blue;
  6863. this.rgvMode5.Location = new System.Drawing.Point(96, 92);
  6864. this.rgvMode5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6865. this.rgvMode5.Name = "rgvMode5";
  6866. this.rgvMode5.Size = new System.Drawing.Size(31, 15);
  6867. this.rgvMode5.TabIndex = 12;
  6868. this.rgvMode5.Text = "---";
  6869. //
  6870. // rgvOrdId5
  6871. //
  6872. this.rgvOrdId5.AutoSize = true;
  6873. this.rgvOrdId5.BackColor = System.Drawing.Color.Transparent;
  6874. this.rgvOrdId5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6875. this.rgvOrdId5.ForeColor = System.Drawing.Color.Blue;
  6876. this.rgvOrdId5.Location = new System.Drawing.Point(96, 142);
  6877. this.rgvOrdId5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6878. this.rgvOrdId5.Name = "rgvOrdId5";
  6879. this.rgvOrdId5.Size = new System.Drawing.Size(31, 15);
  6880. this.rgvOrdId5.TabIndex = 64;
  6881. this.rgvOrdId5.Text = "---";
  6882. //
  6883. // label313
  6884. //
  6885. this.label313.AutoSize = true;
  6886. this.label313.BackColor = System.Drawing.Color.Transparent;
  6887. this.label313.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6888. this.label313.Location = new System.Drawing.Point(3, 142);
  6889. this.label313.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6890. this.label313.Name = "label313";
  6891. this.label313.Size = new System.Drawing.Size(82, 15);
  6892. this.label313.TabIndex = 63;
  6893. this.label313.Text = "工作指令:";
  6894. //
  6895. // rgvPosTo5
  6896. //
  6897. this.rgvPosTo5.AutoSize = true;
  6898. this.rgvPosTo5.BackColor = System.Drawing.Color.Transparent;
  6899. this.rgvPosTo5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6900. this.rgvPosTo5.ForeColor = System.Drawing.Color.Blue;
  6901. this.rgvPosTo5.Location = new System.Drawing.Point(97, 215);
  6902. this.rgvPosTo5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6903. this.rgvPosTo5.Name = "rgvPosTo5";
  6904. this.rgvPosTo5.Size = new System.Drawing.Size(31, 15);
  6905. this.rgvPosTo5.TabIndex = 16;
  6906. this.rgvPosTo5.Text = "---";
  6907. //
  6908. // label315
  6909. //
  6910. this.label315.AutoSize = true;
  6911. this.label315.BackColor = System.Drawing.Color.Transparent;
  6912. this.label315.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6913. this.label315.Location = new System.Drawing.Point(3, 92);
  6914. this.label315.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6915. this.label315.Name = "label315";
  6916. this.label315.Size = new System.Drawing.Size(82, 15);
  6917. this.label315.TabIndex = 15;
  6918. this.label315.Text = "工作模式:";
  6919. //
  6920. // rgvPosFrom5
  6921. //
  6922. this.rgvPosFrom5.AutoSize = true;
  6923. this.rgvPosFrom5.BackColor = System.Drawing.Color.Transparent;
  6924. this.rgvPosFrom5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6925. this.rgvPosFrom5.ForeColor = System.Drawing.Color.Blue;
  6926. this.rgvPosFrom5.Location = new System.Drawing.Point(97, 190);
  6927. this.rgvPosFrom5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6928. this.rgvPosFrom5.Name = "rgvPosFrom5";
  6929. this.rgvPosFrom5.Size = new System.Drawing.Size(31, 15);
  6930. this.rgvPosFrom5.TabIndex = 14;
  6931. this.rgvPosFrom5.Text = "---";
  6932. //
  6933. // rgvStatus5
  6934. //
  6935. this.rgvStatus5.AutoSize = true;
  6936. this.rgvStatus5.BackColor = System.Drawing.Color.Transparent;
  6937. this.rgvStatus5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6938. this.rgvStatus5.ForeColor = System.Drawing.Color.Blue;
  6939. this.rgvStatus5.Location = new System.Drawing.Point(96, 115);
  6940. this.rgvStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6941. this.rgvStatus5.Name = "rgvStatus5";
  6942. this.rgvStatus5.Size = new System.Drawing.Size(31, 15);
  6943. this.rgvStatus5.TabIndex = 10;
  6944. this.rgvStatus5.Text = "---";
  6945. //
  6946. // label321
  6947. //
  6948. this.label321.AutoSize = true;
  6949. this.label321.BackColor = System.Drawing.Color.Transparent;
  6950. this.label321.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6951. this.label321.Location = new System.Drawing.Point(3, 115);
  6952. this.label321.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6953. this.label321.Name = "label321";
  6954. this.label321.Size = new System.Drawing.Size(82, 15);
  6955. this.label321.TabIndex = 6;
  6956. this.label321.Text = "工作状态:";
  6957. //
  6958. // lblrgv1175
  6959. //
  6960. this.lblrgv1175.AutoSize = true;
  6961. this.lblrgv1175.BackColor = System.Drawing.Color.Transparent;
  6962. this.lblrgv1175.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6963. this.lblrgv1175.Location = new System.Drawing.Point(59, 32);
  6964. this.lblrgv1175.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6965. this.lblrgv1175.Name = "lblrgv1175";
  6966. this.lblrgv1175.Size = new System.Drawing.Size(53, 20);
  6967. this.lblrgv1175.TabIndex = 0;
  6968. this.lblrgv1175.Text = "RGV5";
  6969. this.lblrgv1175.Click += new System.EventHandler(this.lblsrm01_Click);
  6970. //
  6971. // GV5
  6972. //
  6973. this.GV5.BackColor = System.Drawing.Color.Transparent;
  6974. this.GV5.Image = ((System.Drawing.Image)(resources.GetObject("GV5.Image")));
  6975. this.GV5.Location = new System.Drawing.Point(88, -2);
  6976. this.GV5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6977. this.GV5.Name = "GV5";
  6978. this.GV5.Size = new System.Drawing.Size(35, 32);
  6979. this.GV5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6980. this.GV5.TabIndex = 65;
  6981. this.GV5.TabStop = false;
  6982. this.GV5.Tag = "1";
  6983. //
  6984. // pictureBox29
  6985. //
  6986. this.pictureBox29.BackColor = System.Drawing.Color.Transparent;
  6987. this.pictureBox29.Location = new System.Drawing.Point(87, -2);
  6988. this.pictureBox29.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6989. this.pictureBox29.Name = "pictureBox29";
  6990. this.pictureBox29.Size = new System.Drawing.Size(35, 32);
  6991. this.pictureBox29.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6992. this.pictureBox29.TabIndex = 5;
  6993. this.pictureBox29.TabStop = false;
  6994. //
  6995. // myPanel2
  6996. //
  6997. this.myPanel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel2.BackgroundImage")));
  6998. this.myPanel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6999. this.myPanel2.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  7000. this.myPanel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  7001. this.myPanel2.Controls.Add(this.myPanel4);
  7002. this.myPanel2.Controls.Add(this.rgvOptType1);
  7003. this.myPanel2.Controls.Add(this.label23);
  7004. this.myPanel2.Controls.Add(this.lblRGVWarning1444);
  7005. this.myPanel2.Controls.Add(this.rgvPosCurr1);
  7006. this.myPanel2.Controls.Add(this.label45);
  7007. this.myPanel2.Controls.Add(this.rgvMode1);
  7008. this.myPanel2.Controls.Add(this.rgvOrdId1);
  7009. this.myPanel2.Controls.Add(this.label58);
  7010. this.myPanel2.Controls.Add(this.rgvPosTo1);
  7011. this.myPanel2.Controls.Add(this.label69);
  7012. this.myPanel2.Controls.Add(this.rgvPosFrom1);
  7013. this.myPanel2.Controls.Add(this.label73);
  7014. this.myPanel2.Controls.Add(this.rgvStatus1);
  7015. this.myPanel2.Controls.Add(this.label80);
  7016. this.myPanel2.Controls.Add(this.label92);
  7017. this.myPanel2.Controls.Add(this.lblrgv1444);
  7018. this.myPanel2.Controls.Add(this.GV1);
  7019. this.myPanel2.Controls.Add(this.pictureBox5);
  7020. this.myPanel2.Location = new System.Drawing.Point(1125, 0);
  7021. this.myPanel2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7022. this.myPanel2.Name = "myPanel2";
  7023. this.myPanel2.Size = new System.Drawing.Size(212, 324);
  7024. this.myPanel2.TabIndex = 113;
  7025. //
  7026. // myPanel4
  7027. //
  7028. this.myPanel4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel4.BackgroundImage")));
  7029. this.myPanel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  7030. this.myPanel4.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  7031. this.myPanel4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  7032. this.myPanel4.Controls.Add(this.label124);
  7033. this.myPanel4.Controls.Add(this.label125);
  7034. this.myPanel4.Controls.Add(this.label126);
  7035. this.myPanel4.Controls.Add(this.label127);
  7036. this.myPanel4.Controls.Add(this.label128);
  7037. this.myPanel4.Controls.Add(this.label129);
  7038. this.myPanel4.Controls.Add(this.label130);
  7039. this.myPanel4.Controls.Add(this.label131);
  7040. this.myPanel4.Controls.Add(this.label132);
  7041. this.myPanel4.Controls.Add(this.label133);
  7042. this.myPanel4.Controls.Add(this.label134);
  7043. this.myPanel4.Controls.Add(this.label135);
  7044. this.myPanel4.Controls.Add(this.label136);
  7045. this.myPanel4.Controls.Add(this.label138);
  7046. this.myPanel4.Controls.Add(this.label140);
  7047. this.myPanel4.Controls.Add(this.label141);
  7048. this.myPanel4.Controls.Add(this.label142);
  7049. this.myPanel4.Controls.Add(this.label143);
  7050. this.myPanel4.Controls.Add(this.label144);
  7051. this.myPanel4.Controls.Add(this.label145);
  7052. this.myPanel4.Controls.Add(this.label146);
  7053. this.myPanel4.Controls.Add(this.label147);
  7054. this.myPanel4.Controls.Add(this.pictureBox11);
  7055. this.myPanel4.Controls.Add(this.pictureBox12);
  7056. this.myPanel4.Location = new System.Drawing.Point(252, -2);
  7057. this.myPanel4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7058. this.myPanel4.Name = "myPanel4";
  7059. this.myPanel4.Size = new System.Drawing.Size(244, 324);
  7060. this.myPanel4.TabIndex = 106;
  7061. //
  7062. // label124
  7063. //
  7064. this.label124.BackColor = System.Drawing.Color.DarkGray;
  7065. this.label124.Location = new System.Drawing.Point(163, 4);
  7066. this.label124.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7067. this.label124.Name = "label124";
  7068. this.label124.Size = new System.Drawing.Size(37, 30);
  7069. this.label124.TabIndex = 103;
  7070. this.label124.Text = "出";
  7071. this.label124.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7072. //
  7073. // label125
  7074. //
  7075. this.label125.BackColor = System.Drawing.Color.DarkGray;
  7076. this.label125.Location = new System.Drawing.Point(8, 4);
  7077. this.label125.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7078. this.label125.Name = "label125";
  7079. this.label125.Size = new System.Drawing.Size(37, 30);
  7080. this.label125.TabIndex = 102;
  7081. this.label125.Tag = "4";
  7082. this.label125.Text = "入";
  7083. this.label125.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7084. //
  7085. // label126
  7086. //
  7087. this.label126.AutoSize = true;
  7088. this.label126.BackColor = System.Drawing.Color.Transparent;
  7089. this.label126.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7090. this.label126.ForeColor = System.Drawing.Color.Blue;
  7091. this.label126.Location = new System.Drawing.Point(116, 166);
  7092. this.label126.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7093. this.label126.Name = "label126";
  7094. this.label126.Size = new System.Drawing.Size(31, 15);
  7095. this.label126.TabIndex = 101;
  7096. this.label126.Text = "---";
  7097. //
  7098. // label127
  7099. //
  7100. this.label127.AutoSize = true;
  7101. this.label127.BackColor = System.Drawing.Color.Transparent;
  7102. this.label127.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7103. this.label127.Location = new System.Drawing.Point(3, 166);
  7104. this.label127.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7105. this.label127.Name = "label127";
  7106. this.label127.Size = new System.Drawing.Size(82, 15);
  7107. this.label127.TabIndex = 100;
  7108. this.label127.Text = "作业类型:";
  7109. //
  7110. // label128
  7111. //
  7112. this.label128.BackColor = System.Drawing.Color.Transparent;
  7113. this.label128.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7114. this.label128.ForeColor = System.Drawing.Color.Red;
  7115. this.label128.Location = new System.Drawing.Point(7, 58);
  7116. this.label128.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7117. this.label128.Name = "label128";
  7118. this.label128.Size = new System.Drawing.Size(201, 30);
  7119. this.label128.TabIndex = 92;
  7120. //
  7121. // label129
  7122. //
  7123. this.label129.AutoSize = true;
  7124. this.label129.BackColor = System.Drawing.Color.Transparent;
  7125. this.label129.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7126. this.label129.ForeColor = System.Drawing.Color.Blue;
  7127. this.label129.Location = new System.Drawing.Point(119, 295);
  7128. this.label129.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7129. this.label129.Name = "label129";
  7130. this.label129.Size = new System.Drawing.Size(31, 15);
  7131. this.label129.TabIndex = 73;
  7132. this.label129.Text = "---";
  7133. //
  7134. // label130
  7135. //
  7136. this.label130.AutoSize = true;
  7137. this.label130.BackColor = System.Drawing.Color.Transparent;
  7138. this.label130.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7139. this.label130.ForeColor = System.Drawing.Color.Blue;
  7140. this.label130.Location = new System.Drawing.Point(119, 268);
  7141. this.label130.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7142. this.label130.Name = "label130";
  7143. this.label130.Size = new System.Drawing.Size(31, 15);
  7144. this.label130.TabIndex = 72;
  7145. this.label130.Text = "---";
  7146. //
  7147. // label131
  7148. //
  7149. this.label131.AutoSize = true;
  7150. this.label131.BackColor = System.Drawing.Color.Transparent;
  7151. this.label131.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7152. this.label131.Location = new System.Drawing.Point(4, 268);
  7153. this.label131.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7154. this.label131.Name = "label131";
  7155. this.label131.Size = new System.Drawing.Size(82, 15);
  7156. this.label131.TabIndex = 71;
  7157. this.label131.Text = "起始位置:";
  7158. //
  7159. // label132
  7160. //
  7161. this.label132.AutoSize = true;
  7162. this.label132.BackColor = System.Drawing.Color.Transparent;
  7163. this.label132.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7164. this.label132.Location = new System.Drawing.Point(4, 295);
  7165. this.label132.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7166. this.label132.Name = "label132";
  7167. this.label132.Size = new System.Drawing.Size(82, 15);
  7168. this.label132.TabIndex = 70;
  7169. this.label132.Text = "目标位置:";
  7170. //
  7171. // label133
  7172. //
  7173. this.label133.AutoSize = true;
  7174. this.label133.BackColor = System.Drawing.Color.Transparent;
  7175. this.label133.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7176. this.label133.ForeColor = System.Drawing.Color.Blue;
  7177. this.label133.Location = new System.Drawing.Point(116, 92);
  7178. this.label133.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7179. this.label133.Name = "label133";
  7180. this.label133.Size = new System.Drawing.Size(31, 15);
  7181. this.label133.TabIndex = 12;
  7182. this.label133.Text = "---";
  7183. //
  7184. // label134
  7185. //
  7186. this.label134.AutoSize = true;
  7187. this.label134.BackColor = System.Drawing.Color.Transparent;
  7188. this.label134.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7189. this.label134.ForeColor = System.Drawing.Color.Blue;
  7190. this.label134.Location = new System.Drawing.Point(116, 142);
  7191. this.label134.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7192. this.label134.Name = "label134";
  7193. this.label134.Size = new System.Drawing.Size(31, 15);
  7194. this.label134.TabIndex = 64;
  7195. this.label134.Text = "---";
  7196. //
  7197. // label135
  7198. //
  7199. this.label135.AutoSize = true;
  7200. this.label135.BackColor = System.Drawing.Color.Transparent;
  7201. this.label135.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7202. this.label135.Location = new System.Drawing.Point(3, 142);
  7203. this.label135.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7204. this.label135.Name = "label135";
  7205. this.label135.Size = new System.Drawing.Size(82, 15);
  7206. this.label135.TabIndex = 63;
  7207. this.label135.Text = "工作指令:";
  7208. //
  7209. // label136
  7210. //
  7211. this.label136.AutoSize = true;
  7212. this.label136.BackColor = System.Drawing.Color.Transparent;
  7213. this.label136.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7214. this.label136.ForeColor = System.Drawing.SystemColors.ControlText;
  7215. this.label136.Location = new System.Drawing.Point(117, 240);
  7216. this.label136.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7217. this.label136.Name = "label136";
  7218. this.label136.Size = new System.Drawing.Size(31, 15);
  7219. this.label136.TabIndex = 16;
  7220. this.label136.Text = "---";
  7221. //
  7222. // label138
  7223. //
  7224. this.label138.AutoSize = true;
  7225. this.label138.BackColor = System.Drawing.Color.Transparent;
  7226. this.label138.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7227. this.label138.Location = new System.Drawing.Point(3, 92);
  7228. this.label138.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7229. this.label138.Name = "label138";
  7230. this.label138.Size = new System.Drawing.Size(82, 15);
  7231. this.label138.TabIndex = 15;
  7232. this.label138.Text = "工作模式:";
  7233. //
  7234. // label140
  7235. //
  7236. this.label140.AutoSize = true;
  7237. this.label140.BackColor = System.Drawing.Color.Transparent;
  7238. this.label140.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7239. this.label140.ForeColor = System.Drawing.Color.Red;
  7240. this.label140.Location = new System.Drawing.Point(117, 215);
  7241. this.label140.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7242. this.label140.Name = "label140";
  7243. this.label140.Size = new System.Drawing.Size(31, 15);
  7244. this.label140.TabIndex = 14;
  7245. this.label140.Text = "---";
  7246. //
  7247. // label141
  7248. //
  7249. this.label141.AutoSize = true;
  7250. this.label141.BackColor = System.Drawing.Color.Transparent;
  7251. this.label141.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7252. this.label141.Location = new System.Drawing.Point(3, 215);
  7253. this.label141.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7254. this.label141.Name = "label141";
  7255. this.label141.Size = new System.Drawing.Size(82, 15);
  7256. this.label141.TabIndex = 13;
  7257. this.label141.Text = "运行时长:";
  7258. //
  7259. // label142
  7260. //
  7261. this.label142.AutoSize = true;
  7262. this.label142.BackColor = System.Drawing.Color.Transparent;
  7263. this.label142.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7264. this.label142.ForeColor = System.Drawing.Color.Blue;
  7265. this.label142.Location = new System.Drawing.Point(116, 115);
  7266. this.label142.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7267. this.label142.Name = "label142";
  7268. this.label142.Size = new System.Drawing.Size(31, 15);
  7269. this.label142.TabIndex = 10;
  7270. this.label142.Text = "---";
  7271. //
  7272. // label143
  7273. //
  7274. this.label143.AutoSize = true;
  7275. this.label143.BackColor = System.Drawing.Color.Transparent;
  7276. this.label143.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7277. this.label143.ForeColor = System.Drawing.Color.Blue;
  7278. this.label143.Location = new System.Drawing.Point(117, 190);
  7279. this.label143.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7280. this.label143.Name = "label143";
  7281. this.label143.Size = new System.Drawing.Size(31, 15);
  7282. this.label143.TabIndex = 9;
  7283. this.label143.Text = "---";
  7284. //
  7285. // label144
  7286. //
  7287. this.label144.AutoSize = true;
  7288. this.label144.BackColor = System.Drawing.Color.Transparent;
  7289. this.label144.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7290. this.label144.ForeColor = System.Drawing.SystemColors.ControlText;
  7291. this.label144.Location = new System.Drawing.Point(3, 240);
  7292. this.label144.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7293. this.label144.Name = "label144";
  7294. this.label144.Size = new System.Drawing.Size(83, 15);
  7295. this.label144.TabIndex = 8;
  7296. this.label144.Text = "里 程 数:";
  7297. //
  7298. // label145
  7299. //
  7300. this.label145.AutoSize = true;
  7301. this.label145.BackColor = System.Drawing.Color.Transparent;
  7302. this.label145.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7303. this.label145.Location = new System.Drawing.Point(3, 115);
  7304. this.label145.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7305. this.label145.Name = "label145";
  7306. this.label145.Size = new System.Drawing.Size(82, 15);
  7307. this.label145.TabIndex = 6;
  7308. this.label145.Text = "工作状态:";
  7309. //
  7310. // label146
  7311. //
  7312. this.label146.AutoSize = true;
  7313. this.label146.BackColor = System.Drawing.Color.Transparent;
  7314. this.label146.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7315. this.label146.Location = new System.Drawing.Point(3, 190);
  7316. this.label146.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7317. this.label146.Name = "label146";
  7318. this.label146.Size = new System.Drawing.Size(82, 15);
  7319. this.label146.TabIndex = 1;
  7320. this.label146.Text = "当前位置:";
  7321. //
  7322. // label147
  7323. //
  7324. this.label147.AutoSize = true;
  7325. this.label147.BackColor = System.Drawing.Color.Transparent;
  7326. 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)));
  7327. this.label147.Location = new System.Drawing.Point(59, 32);
  7328. this.label147.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7329. this.label147.Name = "label147";
  7330. this.label147.Size = new System.Drawing.Size(86, 20);
  7331. this.label147.TabIndex = 0;
  7332. this.label147.Text = "RGV1091";
  7333. //
  7334. // pictureBox11
  7335. //
  7336. this.pictureBox11.BackColor = System.Drawing.Color.Transparent;
  7337. this.pictureBox11.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox11.Image")));
  7338. this.pictureBox11.Location = new System.Drawing.Point(88, -2);
  7339. this.pictureBox11.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7340. this.pictureBox11.Name = "pictureBox11";
  7341. this.pictureBox11.Size = new System.Drawing.Size(35, 32);
  7342. this.pictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7343. this.pictureBox11.TabIndex = 65;
  7344. this.pictureBox11.TabStop = false;
  7345. this.pictureBox11.Tag = "1";
  7346. //
  7347. // pictureBox12
  7348. //
  7349. this.pictureBox12.BackColor = System.Drawing.Color.Transparent;
  7350. this.pictureBox12.Location = new System.Drawing.Point(87, -2);
  7351. this.pictureBox12.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7352. this.pictureBox12.Name = "pictureBox12";
  7353. this.pictureBox12.Size = new System.Drawing.Size(35, 32);
  7354. this.pictureBox12.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7355. this.pictureBox12.TabIndex = 5;
  7356. this.pictureBox12.TabStop = false;
  7357. //
  7358. // rgvOptType1
  7359. //
  7360. this.rgvOptType1.AutoSize = true;
  7361. this.rgvOptType1.BackColor = System.Drawing.Color.Transparent;
  7362. this.rgvOptType1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7363. this.rgvOptType1.ForeColor = System.Drawing.Color.Blue;
  7364. this.rgvOptType1.Location = new System.Drawing.Point(96, 166);
  7365. this.rgvOptType1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7366. this.rgvOptType1.Name = "rgvOptType1";
  7367. this.rgvOptType1.Size = new System.Drawing.Size(31, 15);
  7368. this.rgvOptType1.TabIndex = 101;
  7369. this.rgvOptType1.Text = "---";
  7370. //
  7371. // label23
  7372. //
  7373. this.label23.AutoSize = true;
  7374. this.label23.BackColor = System.Drawing.Color.Transparent;
  7375. this.label23.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7376. this.label23.Location = new System.Drawing.Point(3, 166);
  7377. this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7378. this.label23.Name = "label23";
  7379. this.label23.Size = new System.Drawing.Size(82, 15);
  7380. this.label23.TabIndex = 100;
  7381. this.label23.Text = "作业类型:";
  7382. //
  7383. // lblRGVWarning1444
  7384. //
  7385. this.lblRGVWarning1444.BackColor = System.Drawing.Color.Transparent;
  7386. this.lblRGVWarning1444.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7387. this.lblRGVWarning1444.ForeColor = System.Drawing.Color.Red;
  7388. this.lblRGVWarning1444.Location = new System.Drawing.Point(7, 58);
  7389. this.lblRGVWarning1444.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7390. this.lblRGVWarning1444.Name = "lblRGVWarning1444";
  7391. this.lblRGVWarning1444.Size = new System.Drawing.Size(201, 30);
  7392. this.lblRGVWarning1444.TabIndex = 92;
  7393. //
  7394. // rgvPosCurr1
  7395. //
  7396. this.rgvPosCurr1.AutoSize = true;
  7397. this.rgvPosCurr1.BackColor = System.Drawing.Color.Transparent;
  7398. this.rgvPosCurr1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7399. this.rgvPosCurr1.ForeColor = System.Drawing.Color.Blue;
  7400. this.rgvPosCurr1.Location = new System.Drawing.Point(99, 242);
  7401. this.rgvPosCurr1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7402. this.rgvPosCurr1.Name = "rgvPosCurr1";
  7403. this.rgvPosCurr1.Size = new System.Drawing.Size(31, 15);
  7404. this.rgvPosCurr1.TabIndex = 72;
  7405. this.rgvPosCurr1.Text = "---";
  7406. //
  7407. // label45
  7408. //
  7409. this.label45.AutoSize = true;
  7410. this.label45.BackColor = System.Drawing.Color.Transparent;
  7411. this.label45.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7412. this.label45.Location = new System.Drawing.Point(4, 242);
  7413. this.label45.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7414. this.label45.Name = "label45";
  7415. this.label45.Size = new System.Drawing.Size(82, 15);
  7416. this.label45.TabIndex = 71;
  7417. this.label45.Text = "光电状态:";
  7418. //
  7419. // rgvMode1
  7420. //
  7421. this.rgvMode1.AutoSize = true;
  7422. this.rgvMode1.BackColor = System.Drawing.Color.Transparent;
  7423. this.rgvMode1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7424. this.rgvMode1.ForeColor = System.Drawing.Color.Blue;
  7425. this.rgvMode1.Location = new System.Drawing.Point(96, 92);
  7426. this.rgvMode1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7427. this.rgvMode1.Name = "rgvMode1";
  7428. this.rgvMode1.Size = new System.Drawing.Size(31, 15);
  7429. this.rgvMode1.TabIndex = 12;
  7430. this.rgvMode1.Text = "---";
  7431. //
  7432. // rgvOrdId1
  7433. //
  7434. this.rgvOrdId1.AutoSize = true;
  7435. this.rgvOrdId1.BackColor = System.Drawing.Color.Transparent;
  7436. this.rgvOrdId1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7437. this.rgvOrdId1.ForeColor = System.Drawing.Color.Blue;
  7438. this.rgvOrdId1.Location = new System.Drawing.Point(96, 142);
  7439. this.rgvOrdId1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7440. this.rgvOrdId1.Name = "rgvOrdId1";
  7441. this.rgvOrdId1.Size = new System.Drawing.Size(31, 15);
  7442. this.rgvOrdId1.TabIndex = 64;
  7443. this.rgvOrdId1.Text = "---";
  7444. //
  7445. // label58
  7446. //
  7447. this.label58.AutoSize = true;
  7448. this.label58.BackColor = System.Drawing.Color.Transparent;
  7449. this.label58.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7450. this.label58.Location = new System.Drawing.Point(3, 142);
  7451. this.label58.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7452. this.label58.Name = "label58";
  7453. this.label58.Size = new System.Drawing.Size(82, 15);
  7454. this.label58.TabIndex = 63;
  7455. this.label58.Text = "工作指令:";
  7456. //
  7457. // rgvPosTo1
  7458. //
  7459. this.rgvPosTo1.AutoSize = true;
  7460. this.rgvPosTo1.BackColor = System.Drawing.Color.Transparent;
  7461. this.rgvPosTo1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7462. this.rgvPosTo1.ForeColor = System.Drawing.Color.Blue;
  7463. this.rgvPosTo1.Location = new System.Drawing.Point(97, 215);
  7464. this.rgvPosTo1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7465. this.rgvPosTo1.Name = "rgvPosTo1";
  7466. this.rgvPosTo1.Size = new System.Drawing.Size(31, 15);
  7467. this.rgvPosTo1.TabIndex = 16;
  7468. this.rgvPosTo1.Text = "---";
  7469. //
  7470. // label69
  7471. //
  7472. this.label69.AutoSize = true;
  7473. this.label69.BackColor = System.Drawing.Color.Transparent;
  7474. this.label69.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7475. this.label69.Location = new System.Drawing.Point(3, 92);
  7476. this.label69.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7477. this.label69.Name = "label69";
  7478. this.label69.Size = new System.Drawing.Size(82, 15);
  7479. this.label69.TabIndex = 15;
  7480. this.label69.Text = "工作模式:";
  7481. //
  7482. // rgvPosFrom1
  7483. //
  7484. this.rgvPosFrom1.AutoSize = true;
  7485. this.rgvPosFrom1.BackColor = System.Drawing.Color.Transparent;
  7486. this.rgvPosFrom1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7487. this.rgvPosFrom1.ForeColor = System.Drawing.Color.Blue;
  7488. this.rgvPosFrom1.Location = new System.Drawing.Point(97, 190);
  7489. this.rgvPosFrom1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7490. this.rgvPosFrom1.Name = "rgvPosFrom1";
  7491. this.rgvPosFrom1.Size = new System.Drawing.Size(31, 15);
  7492. this.rgvPosFrom1.TabIndex = 14;
  7493. this.rgvPosFrom1.Text = "---";
  7494. //
  7495. // label73
  7496. //
  7497. this.label73.AutoSize = true;
  7498. this.label73.BackColor = System.Drawing.Color.Transparent;
  7499. this.label73.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7500. this.label73.Location = new System.Drawing.Point(3, 190);
  7501. this.label73.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7502. this.label73.Name = "label73";
  7503. this.label73.Size = new System.Drawing.Size(82, 15);
  7504. this.label73.TabIndex = 13;
  7505. this.label73.Text = "起始地址:";
  7506. //
  7507. // rgvStatus1
  7508. //
  7509. this.rgvStatus1.AutoSize = true;
  7510. this.rgvStatus1.BackColor = System.Drawing.Color.Transparent;
  7511. this.rgvStatus1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7512. this.rgvStatus1.ForeColor = System.Drawing.Color.Blue;
  7513. this.rgvStatus1.Location = new System.Drawing.Point(96, 115);
  7514. this.rgvStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7515. this.rgvStatus1.Name = "rgvStatus1";
  7516. this.rgvStatus1.Size = new System.Drawing.Size(31, 15);
  7517. this.rgvStatus1.TabIndex = 10;
  7518. this.rgvStatus1.Text = "---";
  7519. //
  7520. // label80
  7521. //
  7522. this.label80.AutoSize = true;
  7523. this.label80.BackColor = System.Drawing.Color.Transparent;
  7524. this.label80.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7525. this.label80.ForeColor = System.Drawing.SystemColors.ControlText;
  7526. this.label80.Location = new System.Drawing.Point(3, 215);
  7527. this.label80.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7528. this.label80.Name = "label80";
  7529. this.label80.Size = new System.Drawing.Size(82, 15);
  7530. this.label80.TabIndex = 8;
  7531. this.label80.Text = "目标地址:";
  7532. //
  7533. // label92
  7534. //
  7535. this.label92.AutoSize = true;
  7536. this.label92.BackColor = System.Drawing.Color.Transparent;
  7537. this.label92.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7538. this.label92.Location = new System.Drawing.Point(3, 115);
  7539. this.label92.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7540. this.label92.Name = "label92";
  7541. this.label92.Size = new System.Drawing.Size(82, 15);
  7542. this.label92.TabIndex = 6;
  7543. this.label92.Text = "工作状态:";
  7544. //
  7545. // lblrgv1444
  7546. //
  7547. this.lblrgv1444.AutoSize = true;
  7548. this.lblrgv1444.BackColor = System.Drawing.Color.Transparent;
  7549. 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)));
  7550. this.lblrgv1444.Location = new System.Drawing.Point(59, 32);
  7551. this.lblrgv1444.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7552. this.lblrgv1444.Name = "lblrgv1444";
  7553. this.lblrgv1444.Size = new System.Drawing.Size(53, 20);
  7554. this.lblrgv1444.TabIndex = 0;
  7555. this.lblrgv1444.Text = "RGV1";
  7556. this.lblrgv1444.Click += new System.EventHandler(this.lblsrm01_Click);
  7557. //
  7558. // GV1
  7559. //
  7560. this.GV1.BackColor = System.Drawing.Color.Transparent;
  7561. this.GV1.Image = ((System.Drawing.Image)(resources.GetObject("GV1.Image")));
  7562. this.GV1.Location = new System.Drawing.Point(88, -2);
  7563. this.GV1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7564. this.GV1.Name = "GV1";
  7565. this.GV1.Size = new System.Drawing.Size(35, 32);
  7566. this.GV1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7567. this.GV1.TabIndex = 65;
  7568. this.GV1.TabStop = false;
  7569. this.GV1.Tag = "1";
  7570. //
  7571. // pictureBox5
  7572. //
  7573. this.pictureBox5.BackColor = System.Drawing.Color.Transparent;
  7574. this.pictureBox5.Location = new System.Drawing.Point(87, -2);
  7575. this.pictureBox5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7576. this.pictureBox5.Name = "pictureBox5";
  7577. this.pictureBox5.Size = new System.Drawing.Size(35, 32);
  7578. this.pictureBox5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7579. this.pictureBox5.TabIndex = 5;
  7580. this.pictureBox5.TabStop = false;
  7581. //
  7582. // pnlBottom
  7583. //
  7584. this.pnlBottom.AutoScroll = true;
  7585. this.pnlBottom.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlBottom.BackgroundImage")));
  7586. this.pnlBottom.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  7587. this.pnlBottom.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  7588. this.pnlBottom.Controls.Add(this.myPanel2);
  7589. this.pnlBottom.Controls.Add(this.myPanel11);
  7590. this.pnlBottom.Controls.Add(this.myPanel5);
  7591. this.pnlBottom.Controls.Add(this.pnlRGV1091);
  7592. this.pnlBottom.Controls.Add(this.pnlRGV1089);
  7593. this.pnlBottom.Controls.Add(this.myPanel1);
  7594. this.pnlBottom.Controls.Add(this.pnlDDJ4);
  7595. this.pnlBottom.Controls.Add(this.pnlDDJ3);
  7596. this.pnlBottom.Controls.Add(this.pnlDDJ2);
  7597. this.pnlBottom.Controls.Add(this.pnlDDJ1);
  7598. this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
  7599. this.pnlBottom.Location = new System.Drawing.Point(0, 725);
  7600. this.pnlBottom.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7601. this.pnlBottom.Name = "pnlBottom";
  7602. this.pnlBottom.Padding = new System.Windows.Forms.Padding(13, 0, 0, 0);
  7603. this.pnlBottom.Size = new System.Drawing.Size(1924, 330);
  7604. this.pnlBottom.TabIndex = 126;
  7605. //
  7606. // Frm_YongGuanMontior
  7607. //
  7608. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  7609. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  7610. this.ClientSize = new System.Drawing.Size(1924, 1055);
  7611. this.Controls.Add(this.tabControl1);
  7612. this.Controls.Add(this.pnlBottom);
  7613. this.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7614. this.Name = "Frm_YongGuanMontior";
  7615. this.Text = "Frm_YongGuanMontior";
  7616. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_YongGuanMontior_FormClosing);
  7617. this.Load += new System.EventHandler(this.Frm_YongGuanMontior_Load);
  7618. this.tabControl1.ResumeLayout(false);
  7619. this.tabPage1.ResumeLayout(false);
  7620. this.myTableLayoutPanel1.ResumeLayout(false);
  7621. this.myTableLayoutPanel1.PerformLayout();
  7622. this.pnlDDJ1.ResumeLayout(false);
  7623. this.pnlDDJ1.PerformLayout();
  7624. ((System.ComponentModel.ISupportInitialize)(this.G1)).EndInit();
  7625. ((System.ComponentModel.ISupportInitialize)(this.R1)).EndInit();
  7626. this.pnlDDJ2.ResumeLayout(false);
  7627. this.pnlDDJ2.PerformLayout();
  7628. ((System.ComponentModel.ISupportInitialize)(this.G2)).EndInit();
  7629. ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
  7630. this.pnlDDJ3.ResumeLayout(false);
  7631. this.pnlDDJ3.PerformLayout();
  7632. ((System.ComponentModel.ISupportInitialize)(this.G3)).EndInit();
  7633. ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit();
  7634. this.pnlDDJ4.ResumeLayout(false);
  7635. this.pnlDDJ4.PerformLayout();
  7636. ((System.ComponentModel.ISupportInitialize)(this.G4)).EndInit();
  7637. ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).EndInit();
  7638. this.myPanel1.ResumeLayout(false);
  7639. this.myPanel1.PerformLayout();
  7640. ((System.ComponentModel.ISupportInitialize)(this.G5)).EndInit();
  7641. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
  7642. this.pnlRGV1089.ResumeLayout(false);
  7643. this.pnlRGV1089.PerformLayout();
  7644. ((System.ComponentModel.ISupportInitialize)(this.GV2)).EndInit();
  7645. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
  7646. this.pnlRGV1091.ResumeLayout(false);
  7647. this.pnlRGV1091.PerformLayout();
  7648. ((System.ComponentModel.ISupportInitialize)(this.GV3)).EndInit();
  7649. ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit();
  7650. this.myPanel5.ResumeLayout(false);
  7651. this.myPanel5.PerformLayout();
  7652. ((System.ComponentModel.ISupportInitialize)(this.GV4)).EndInit();
  7653. ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).EndInit();
  7654. this.myPanel11.ResumeLayout(false);
  7655. this.myPanel11.PerformLayout();
  7656. ((System.ComponentModel.ISupportInitialize)(this.GV5)).EndInit();
  7657. ((System.ComponentModel.ISupportInitialize)(this.pictureBox29)).EndInit();
  7658. this.myPanel2.ResumeLayout(false);
  7659. this.myPanel2.PerformLayout();
  7660. this.myPanel4.ResumeLayout(false);
  7661. this.myPanel4.PerformLayout();
  7662. ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit();
  7663. ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit();
  7664. ((System.ComponentModel.ISupportInitialize)(this.GV1)).EndInit();
  7665. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
  7666. this.pnlBottom.ResumeLayout(false);
  7667. this.ResumeLayout(false);
  7668. }
  7669. #endregion
  7670. private System.Windows.Forms.TabControl tabControl1;
  7671. private System.Windows.Forms.TabPage tabPage1;
  7672. private From.MyTableLayoutPanel myTableLayoutPanel1;
  7673. private From.From_Montior.Conveyor6 conrgv3;
  7674. private From.TableCellLabel tableCellLabel1;
  7675. private From.TableCellLabel tableCellLabel2;
  7676. private From.From_Montior.Conveyor3_A con2187;
  7677. private From.From_Montior.Conveyor3_A con2182;
  7678. private From.From_Montior.Conveyor3_A con2181;
  7679. private From.From_Montior.Conveyor3_A con2180;
  7680. private From.From_Montior.Conveyor3_A con2271;
  7681. private From.From_Montior.Conveyor3_A con2211;
  7682. private From.From_Montior.Conveyor3_A con2152;
  7683. private From.From_Montior.Conveyor3_A con2210;
  7684. private From.TableCellLabel tableCellLabel3;
  7685. private From.TableCellLabel tableCellLabel4;
  7686. private From.From_Montior.Conveyor6 conrgv2;
  7687. private From.TableCellLabel tableCellLabel6;
  7688. private From.TableCellLabel tableCellLabel8;
  7689. private From.From_Montior.Conveyor3_B con2172;
  7690. private From.From_Montior.Conveyor3_A con2173;
  7691. private From.From_Montior.Conveyor3_B con2174;
  7692. private From.From_Montior.Conveyor3_A con2175;
  7693. private From.From_Montior.Conveyor3_B con2176;
  7694. private From.From_Montior.Conveyor3_A con2177;
  7695. private From.From_Montior.Conveyor_R con2147;
  7696. private From.From_Montior.Conveyor_R con2146;
  7697. private From.From_Montior.Conveyor_R con2148;
  7698. private From.From_Montior.Conveyor_R con2144;
  7699. private From.From_Montior.Conveyor_R con2145;
  7700. private From.From_Montior.Conveyor_R con2150;
  7701. private From.From_Montior.Conveyor_R con2161;
  7702. private From.From_Montior.Conveyor3_A con2378;
  7703. private From.From_Montior.Conveyor3_A con2384;
  7704. private From.From_Montior.Conveyor3_A con2381;
  7705. private From.From_Montior.Conveyor3_A con2380;
  7706. private From.From_Montior.Conveyor3_A con2379;
  7707. private From.From_Montior.Conveyor_L con2141;
  7708. private From.From_Montior.Conveyor_L con2274;
  7709. private From.From_Montior.Conveyor3_B con2140;
  7710. private From.From_Montior.Conveyor3_B con2143;
  7711. private System.Windows.Forms.Label label1;
  7712. private From.From_Montior.Conveyor_L con2138;
  7713. private From.From_Montior.Conveyor_L con2326;
  7714. private From.From_Montior.Conveyor con2135;
  7715. private From.From_Montior.Conveyor3_B con2273;
  7716. private From.From_Montior.Conveyor3_B con2129;
  7717. private From.From_Montior.Conveyor3_B con2128;
  7718. private From.From_Montior.Conveyor3_B con2131;
  7719. private System.Windows.Forms.Label label4;
  7720. private From.From_Montior.Conveyor_L con2126;
  7721. private From.From_Montior.Conveyor_L con2327;
  7722. private From.From_Montior.Conveyor con2123;
  7723. private From.From_Montior.Conveyor3_A con2377;
  7724. private From.From_Montior.Conveyor3_A con2374;
  7725. private From.From_Montior.Conveyor3_A con2385;
  7726. private From.From_Montior.Conveyor3_A con2386;
  7727. private From.From_Montior.Conveyor3_A con2375;
  7728. private From.From_Montior.Conveyor3_A con2376;
  7729. private From.From_Montior.Conveyor3_A con2382;
  7730. private From.From_Montior.Conveyor3_A con2387;
  7731. private From.From_Montior.Conveyor3_A con2372;
  7732. private From.From_Montior.Conveyor3_A con2370;
  7733. private From.From_Montior.Conveyor3_A con2371;
  7734. private From.From_Montior.Conveyor3_A con2388;
  7735. private From.From_Montior.Conveyor3_A con2368;
  7736. private From.From_Montior.Conveyor3_A con2369;
  7737. private From.From_Montior.Conveyor3_A con2365;
  7738. private From.From_Montior.Conveyor3_A con2366;
  7739. private From.From_Montior.Conveyor_R con2364;
  7740. private From.From_Montior.Conveyor_R con2362;
  7741. private From.From_Montior.Conveyor3_B con2120;
  7742. private From.From_Montior.Conveyor3_B con2119;
  7743. private From.From_Montior.Conveyor3_B con2122;
  7744. private From.From_Montior.Conveyor3_B con2272;
  7745. private From.TableCellLabel tableCellLabel9;
  7746. private From.From_Montior.Conveyor_R con2104;
  7747. private From.From_Montior.Conveyor_R con2102;
  7748. private From.From_Montior.Conveyor_R con2101;
  7749. private From.From_Montior.Conveyor_R con2103;
  7750. private From.From_Montior.Conveyor_R con2108;
  7751. private From.From_Montior.Conveyor_R con2107;
  7752. private From.From_Montior.Conveyor_R con2106;
  7753. private From.From_Montior.Conveyor_R con2105;
  7754. private From.From_Montior.Conveyor_R con2060;
  7755. private From.From_Montior.Conveyor_R con2079;
  7756. private From.From_Montior.Conveyor_R con2075;
  7757. private From.From_Montior.Conveyor_R con2080;
  7758. private From.From_Montior.Conveyor_R con2074;
  7759. private From.From_Montior.Conveyor_R con2078;
  7760. private From.From_Montior.Conveyor_R con2077;
  7761. private From.From_Montior.Conveyor_R con2325;
  7762. private From.From_Montior.Conveyor_R con2073;
  7763. private From.From_Montior.Conveyor_R con2071;
  7764. private From.From_Montior.Conveyor_R con2072;
  7765. private From.From_Montior.Conveyor_R con2076;
  7766. private From.From_Montior.Conveyor_R con2355;
  7767. private From.From_Montior.Conveyor_R con2037;
  7768. private From.From_Montior.Conveyor_R con2044;
  7769. private From.From_Montior.Conveyor_R con2046;
  7770. private From.From_Montior.Conveyor_R con2031;
  7771. private From.From_Montior.Conveyor_R con2029;
  7772. private From.From_Montior.Conveyor_R con2036;
  7773. private From.From_Montior.Conveyor_R con2017;
  7774. private From.From_Montior.Conveyor_R con2019;
  7775. private From.From_Montior.Conveyor_R con2024;
  7776. private From.From_Montior.Conveyor_R con2324;
  7777. private From.From_Montior.Conveyor_R con2353;
  7778. private From.From_Montior.Conveyor_R con2016;
  7779. private From.From_Montior.LocationPos locationPos35;
  7780. private From.TableCellLabel tableCellLabel15;
  7781. private From.TableCellLabel tableCellLabel29;
  7782. private From.TableCellLabel tableCellLabel30;
  7783. private From.From_Montior.LocationPos locationPos36;
  7784. private From.From_Montior.LocationPos locationPos37;
  7785. private From.From_Montior.Conveyor3_A con2084;
  7786. private From.From_Montior.Conveyor3_A con2086;
  7787. private From.From_Montior.Conveyor_R con2081;
  7788. private From.From_Montior.Conveyor_R con2088;
  7789. private System.Windows.Forms.Label label6;
  7790. private From.From_Montior.Conveyor_R con2015;
  7791. private From.From_Montior.Conveyor_R con2012;
  7792. private System.Windows.Forms.Label label12;
  7793. private From.From_Montior.Conveyor_R con2008;
  7794. private From.From_Montior.Conveyor_R con2011;
  7795. private System.Windows.Forms.Label label28;
  7796. private From.From_Montior.Conveyor_L con2323;
  7797. private From.From_Montior.Conveyor_L con2322;
  7798. private From.From_Montior.Conveyor3_B con2311;
  7799. private From.From_Montior.Conveyor3_B con2317;
  7800. private From.From_Montior.Conveyor3_B con2315;
  7801. private From.From_Montior.Conveyor3_B conv2314;
  7802. private From.From_Montior.Conveyor3_B con2312;
  7803. private From.From_Montior.Conveyor3_B con2313;
  7804. private From.From_Montior.Conveyor3_B con2316;
  7805. private From.From_Montior.Conveyor3_B con2319;
  7806. private From.From_Montior.Conveyor3_B con2320;
  7807. private From.From_Montior.Conveyor3_B con2318;
  7808. private From.From_Montior.Conveyor_L con2005;
  7809. private From.From_Montior.Conveyor_L con2302;
  7810. private From.From_Montior.Conveyor_L con2004;
  7811. private System.Windows.Forms.Label label33;
  7812. private From.From_Montior.Conveyor_R con2304;
  7813. private From.From_Montior.Conveyor_R con2003;
  7814. private From.From_Montior.Conveyor_R con2308;
  7815. private From.From_Montior.Conveyor_R con2307;
  7816. private From.From_Montior.Conveyor_R con2305;
  7817. private System.Windows.Forms.Label label34;
  7818. private From.TableCellLabel tableCellLabel31;
  7819. private From.From_Montior.LocationPos locationPos38;
  7820. private From.From_Montior.LocationPos locationPos39;
  7821. private From.From_Montior.LocationPos locationPos40;
  7822. private From.From_Montior.LocationPos locationPos41;
  7823. private From.From_Montior.srm srm11;
  7824. private From.From_Montior.Conveyor_L con2328;
  7825. private From.From_Montior.Conveyor_L con2117;
  7826. private From.From_Montior.LocationPos locationPos42;
  7827. private From.From_Montior.LocationPos locationPos43;
  7828. private From.From_Montior.srm srm12;
  7829. private From.From_Montior.LocationPos locationPos44;
  7830. private From.From_Montior.LocationPos locationPos45;
  7831. private From.From_Montior.LocationPos locationPos46;
  7832. private From.From_Montior.LocationPos locationPos47;
  7833. private From.From_Montior.srm srm13;
  7834. private From.From_Montior.LocationPos locationPos48;
  7835. private From.From_Montior.LocationPos locationPos49;
  7836. private From.From_Montior.srm srm14;
  7837. private From.From_Montior.LocationPos locationPos53;
  7838. private From.From_Montior.LocationPos locationPos54;
  7839. private From.From_Montior.srm srm15;
  7840. private From.From_Montior.LocationPos locationPos55;
  7841. private From.From_Montior.Conveyor con2114;
  7842. private From.From_Montior.Conveyor5 conrgv4;
  7843. private From.From_Montior.Conveyor con2359;
  7844. private From.From_Montior.Conveyor3_A con2360;
  7845. private From.TableCellLabel tableCellLabel32;
  7846. private From.TableCellLabel tableCellLabel33;
  7847. private From.TableCellLabel tableCellLabel34;
  7848. private From.From_Montior.Conveyor5 conrgv5;
  7849. private From.From_Montior.Conveyor3_A con2203;
  7850. private From.From_Montior.Conveyor3_A con2206;
  7851. private From.From_Montior.Conveyor3_A con2204;
  7852. private From.From_Montior.Conveyor3_A con2205;
  7853. private From.From_Montior.Conveyor3_A con2153;
  7854. private From.From_Montior.Conveyor3_A con2207;
  7855. private From.From_Montior.Conveyor3_A con2208;
  7856. private From.From_Montior.Conveyor3_A con2209;
  7857. private From.From_Montior.Conveyor3_A con2198;
  7858. private From.From_Montior.Conveyor3_A con2192;
  7859. private From.From_Montior.Conveyor3_A con2195;
  7860. private From.From_Montior.Conveyor3_A con2201;
  7861. private From.From_Montior.Conveyor3_A con2261;
  7862. private From.From_Montior.Conveyor3_A con2262;
  7863. private From.From_Montior.Conveyor3_A con2260;
  7864. private From.From_Montior.Conveyor3_A con2259;
  7865. private From.From_Montior.Conveyor3_A conveyor3_A17;
  7866. private From.From_Montior.Conveyor3_A con2263;
  7867. private From.From_Montior.Conveyor3_A con2264;
  7868. private From.From_Montior.Conveyor3_A con2265;
  7869. private From.TableCellLabel tableCellLabel23;
  7870. private From.TableCellLabel tableCellLabel24;
  7871. private From.From_Montior.Conveyor6 conrgv1;
  7872. private From.From_Montior.Conveyor3_B con2256;
  7873. private From.From_Montior.Conveyor3_A con2252;
  7874. private From.From_Montior.Conveyor3_B con2253;
  7875. private From.From_Montior.Conveyor3_A con2254;
  7876. private From.From_Montior.Conveyor3_B con2251;
  7877. private From.From_Montior.Conveyor3_A con2255;
  7878. private MyConrols.MyPanel pnlDDJ1;
  7879. private System.Windows.Forms.Label lblInStatus1;
  7880. private System.Windows.Forms.Label lblOutStatus1;
  7881. private System.Windows.Forms.Label lblDDJWarning1;
  7882. public System.Windows.Forms.Label ddjPosTo1;
  7883. public System.Windows.Forms.Label ddjPosFrom1;
  7884. private System.Windows.Forms.Label label84;
  7885. private System.Windows.Forms.Label label85;
  7886. public System.Windows.Forms.Label ddjMode1;
  7887. public System.Windows.Forms.Label ddjOrdId1;
  7888. private System.Windows.Forms.Label label137;
  7889. public System.Windows.Forms.Label ddjOptType1;
  7890. private System.Windows.Forms.Label label139;
  7891. public System.Windows.Forms.Label ddjTotal_KM1;
  7892. private System.Windows.Forms.Label label13;
  7893. public System.Windows.Forms.Label ddjWorkTime1;
  7894. private System.Windows.Forms.Label label10;
  7895. public System.Windows.Forms.Label ddjStatus1;
  7896. public System.Windows.Forms.Label ddjPosCurr1;
  7897. private System.Windows.Forms.Label label5;
  7898. private System.Windows.Forms.Label label3;
  7899. private System.Windows.Forms.Label label2;
  7900. private System.Windows.Forms.Label lblsrm01;
  7901. public System.Windows.Forms.PictureBox G1;
  7902. public System.Windows.Forms.PictureBox R1;
  7903. private MyConrols.MyPanel pnlDDJ2;
  7904. private System.Windows.Forms.Label lblInStatus2;
  7905. private System.Windows.Forms.Label lblOutStatus2;
  7906. private System.Windows.Forms.Label lblDDJWarning2;
  7907. public System.Windows.Forms.Label ddjPosTo2;
  7908. public System.Windows.Forms.Label ddjPosFrom2;
  7909. private System.Windows.Forms.Label label15;
  7910. private System.Windows.Forms.Label label16;
  7911. public System.Windows.Forms.Label ddjMode2;
  7912. public System.Windows.Forms.Label ddjOrdId2;
  7913. private System.Windows.Forms.Label label22;
  7914. public System.Windows.Forms.Label ddjOptType2;
  7915. private System.Windows.Forms.Label label26;
  7916. public System.Windows.Forms.Label ddjTotal_KM2;
  7917. private System.Windows.Forms.Label label29;
  7918. public System.Windows.Forms.Label ddjWorkTime2;
  7919. private System.Windows.Forms.Label label32;
  7920. public System.Windows.Forms.Label ddjStatus2;
  7921. public System.Windows.Forms.Label ddjPosCurr2;
  7922. private System.Windows.Forms.Label label83;
  7923. private System.Windows.Forms.Label label86;
  7924. private System.Windows.Forms.Label label87;
  7925. private System.Windows.Forms.Label lblsrm02;
  7926. public System.Windows.Forms.PictureBox G2;
  7927. public System.Windows.Forms.PictureBox pictureBox6;
  7928. private MyConrols.MyPanel pnlDDJ3;
  7929. private System.Windows.Forms.Label lblInStatus3;
  7930. private System.Windows.Forms.Label lblOutStatus3;
  7931. private System.Windows.Forms.Label lblDDJWarning3;
  7932. public System.Windows.Forms.Label ddjPosTo3;
  7933. public System.Windows.Forms.Label ddjPosFrom3;
  7934. private System.Windows.Forms.Label label43;
  7935. private System.Windows.Forms.Label label51;
  7936. public System.Windows.Forms.Label ddjMode3;
  7937. public System.Windows.Forms.Label ddjOrdId3;
  7938. private System.Windows.Forms.Label label55;
  7939. public System.Windows.Forms.Label ddjOptType3;
  7940. private System.Windows.Forms.Label label57;
  7941. public System.Windows.Forms.Label ddjTotal_KM3;
  7942. private System.Windows.Forms.Label label59;
  7943. public System.Windows.Forms.Label ddjWorkTime3;
  7944. private System.Windows.Forms.Label label61;
  7945. public System.Windows.Forms.Label ddjStatus3;
  7946. public System.Windows.Forms.Label ddjPosCurr3;
  7947. private System.Windows.Forms.Label label64;
  7948. private System.Windows.Forms.Label label65;
  7949. private System.Windows.Forms.Label label66;
  7950. private System.Windows.Forms.Label lblsrm03;
  7951. public System.Windows.Forms.PictureBox G3;
  7952. public System.Windows.Forms.PictureBox pictureBox10;
  7953. private MyConrols.MyPanel pnlDDJ4;
  7954. private System.Windows.Forms.Label lblInStatus4;
  7955. private System.Windows.Forms.Label lblOutStatus4;
  7956. private System.Windows.Forms.Label lblDDJWarning4;
  7957. public System.Windows.Forms.Label ddjPosTo4;
  7958. public System.Windows.Forms.Label ddjPosFrom4;
  7959. private System.Windows.Forms.Label label71;
  7960. private System.Windows.Forms.Label label72;
  7961. public System.Windows.Forms.Label ddjMode4;
  7962. public System.Windows.Forms.Label ddjOrdId4;
  7963. private System.Windows.Forms.Label label75;
  7964. public System.Windows.Forms.Label ddjOptType4;
  7965. private System.Windows.Forms.Label label77;
  7966. public System.Windows.Forms.Label ddjTotal_KM4;
  7967. private System.Windows.Forms.Label label79;
  7968. public System.Windows.Forms.Label ddjWorkTime4;
  7969. private System.Windows.Forms.Label label81;
  7970. public System.Windows.Forms.Label ddjStatus4;
  7971. public System.Windows.Forms.Label ddjPosCurr4;
  7972. private System.Windows.Forms.Label label89;
  7973. private System.Windows.Forms.Label label90;
  7974. private System.Windows.Forms.Label label91;
  7975. private System.Windows.Forms.Label lblsrm04;
  7976. public System.Windows.Forms.PictureBox G4;
  7977. public System.Windows.Forms.PictureBox pictureBox14;
  7978. private MyConrols.MyPanel myPanel1;
  7979. private System.Windows.Forms.Label lblInStatus5;
  7980. private System.Windows.Forms.Label lblOutStatus5;
  7981. private System.Windows.Forms.Label label11;
  7982. public System.Windows.Forms.Label ddjPosTo5;
  7983. public System.Windows.Forms.Label ddjPosFrom5;
  7984. private System.Windows.Forms.Label label17;
  7985. private System.Windows.Forms.Label label18;
  7986. public System.Windows.Forms.Label ddjMode5;
  7987. public System.Windows.Forms.Label ddjOrdId5;
  7988. private System.Windows.Forms.Label label21;
  7989. public System.Windows.Forms.Label ddjOptType5;
  7990. private System.Windows.Forms.Label label24;
  7991. public System.Windows.Forms.Label ddjTotal_KM5;
  7992. private System.Windows.Forms.Label label27;
  7993. public System.Windows.Forms.Label ddjWorkTime5;
  7994. private System.Windows.Forms.Label label30;
  7995. public System.Windows.Forms.Label ddjStatus5;
  7996. public System.Windows.Forms.Label ddjPosCurr5;
  7997. private System.Windows.Forms.Label label36;
  7998. private System.Windows.Forms.Label label37;
  7999. private System.Windows.Forms.Label label38;
  8000. private System.Windows.Forms.Label lblsrm05;
  8001. public System.Windows.Forms.PictureBox G5;
  8002. public System.Windows.Forms.PictureBox pictureBox3;
  8003. private MyConrols.MyPanel pnlRGV1089;
  8004. private System.Windows.Forms.Label label7;
  8005. private System.Windows.Forms.Label label8;
  8006. private System.Windows.Forms.Label label9;
  8007. public System.Windows.Forms.Label rgvOptType2;
  8008. private System.Windows.Forms.Label label31;
  8009. private System.Windows.Forms.Label lblRGVWarning1089;
  8010. public System.Windows.Forms.Label rgvPosCurr2;
  8011. public System.Windows.Forms.Label rgvMode2;
  8012. public System.Windows.Forms.Label rgvOrdId2;
  8013. private System.Windows.Forms.Label label50;
  8014. public System.Windows.Forms.Label rgvPosTo2;
  8015. private System.Windows.Forms.Label label53;
  8016. public System.Windows.Forms.Label rgvPosFrom2;
  8017. public System.Windows.Forms.Label rgvStatus2;
  8018. private System.Windows.Forms.Label label63;
  8019. private System.Windows.Forms.Label lblrgv1089;
  8020. public System.Windows.Forms.PictureBox GV2;
  8021. public System.Windows.Forms.PictureBox pictureBox4;
  8022. private MyConrols.MyPanel pnlRGV1091;
  8023. private System.Windows.Forms.Label label14;
  8024. private System.Windows.Forms.Label label19;
  8025. private System.Windows.Forms.Label label20;
  8026. public System.Windows.Forms.Label rgvOptType3;
  8027. private System.Windows.Forms.Label label74;
  8028. private System.Windows.Forms.Label lblRGVWarning1091;
  8029. public System.Windows.Forms.Label rgvPosCurr3;
  8030. public System.Windows.Forms.Label rgvMode3;
  8031. public System.Windows.Forms.Label rgvOrdId3;
  8032. private System.Windows.Forms.Label label94;
  8033. public System.Windows.Forms.Label rgvPosTo3;
  8034. private System.Windows.Forms.Label label96;
  8035. public System.Windows.Forms.Label rgvPosFrom3;
  8036. public System.Windows.Forms.Label rgvStatus3;
  8037. private System.Windows.Forms.Label label102;
  8038. private System.Windows.Forms.Label lblrgv1091;
  8039. public System.Windows.Forms.PictureBox GV3;
  8040. public System.Windows.Forms.PictureBox pictureBox7;
  8041. private MyConrols.MyPanel myPanel5;
  8042. private System.Windows.Forms.Label label25;
  8043. private System.Windows.Forms.Label label35;
  8044. private System.Windows.Forms.Label label39;
  8045. public System.Windows.Forms.Label rgvOptType4;
  8046. private System.Windows.Forms.Label label173;
  8047. private System.Windows.Forms.Label lblRGVWarning1007;
  8048. public System.Windows.Forms.Label rgvPosCurr4;
  8049. public System.Windows.Forms.Label rgvMode4;
  8050. public System.Windows.Forms.Label rgvOrdId4;
  8051. private System.Windows.Forms.Label label181;
  8052. public System.Windows.Forms.Label rgvPosTo4;
  8053. private System.Windows.Forms.Label label183;
  8054. public System.Windows.Forms.Label rgvPosFrom4;
  8055. public System.Windows.Forms.Label rgvStatus4;
  8056. private System.Windows.Forms.Label label189;
  8057. private System.Windows.Forms.Label lblrgv1007;
  8058. public System.Windows.Forms.PictureBox GV4;
  8059. public System.Windows.Forms.PictureBox pictureBox17;
  8060. private MyConrols.MyPanel myPanel11;
  8061. private System.Windows.Forms.Label label40;
  8062. private System.Windows.Forms.Label label41;
  8063. private System.Windows.Forms.Label label42;
  8064. public System.Windows.Forms.Label rgvOptType5;
  8065. private System.Windows.Forms.Label label305;
  8066. private System.Windows.Forms.Label lblRGVWarning1175;
  8067. public System.Windows.Forms.Label rgvPosCurr5;
  8068. public System.Windows.Forms.Label rgvMode5;
  8069. public System.Windows.Forms.Label rgvOrdId5;
  8070. private System.Windows.Forms.Label label313;
  8071. public System.Windows.Forms.Label rgvPosTo5;
  8072. private System.Windows.Forms.Label label315;
  8073. public System.Windows.Forms.Label rgvPosFrom5;
  8074. public System.Windows.Forms.Label rgvStatus5;
  8075. private System.Windows.Forms.Label label321;
  8076. private System.Windows.Forms.Label lblrgv1175;
  8077. public System.Windows.Forms.PictureBox GV5;
  8078. public System.Windows.Forms.PictureBox pictureBox29;
  8079. private MyConrols.MyPanel myPanel2;
  8080. private MyConrols.MyPanel myPanel4;
  8081. private System.Windows.Forms.Label label124;
  8082. private System.Windows.Forms.Label label125;
  8083. public System.Windows.Forms.Label label126;
  8084. private System.Windows.Forms.Label label127;
  8085. private System.Windows.Forms.Label label128;
  8086. public System.Windows.Forms.Label label129;
  8087. public System.Windows.Forms.Label label130;
  8088. private System.Windows.Forms.Label label131;
  8089. private System.Windows.Forms.Label label132;
  8090. public System.Windows.Forms.Label label133;
  8091. public System.Windows.Forms.Label label134;
  8092. private System.Windows.Forms.Label label135;
  8093. public System.Windows.Forms.Label label136;
  8094. private System.Windows.Forms.Label label138;
  8095. public System.Windows.Forms.Label label140;
  8096. private System.Windows.Forms.Label label141;
  8097. public System.Windows.Forms.Label label142;
  8098. public System.Windows.Forms.Label label143;
  8099. private System.Windows.Forms.Label label144;
  8100. private System.Windows.Forms.Label label145;
  8101. private System.Windows.Forms.Label label146;
  8102. private System.Windows.Forms.Label label147;
  8103. public System.Windows.Forms.PictureBox pictureBox11;
  8104. public System.Windows.Forms.PictureBox pictureBox12;
  8105. public System.Windows.Forms.Label rgvOptType1;
  8106. private System.Windows.Forms.Label label23;
  8107. private System.Windows.Forms.Label lblRGVWarning1444;
  8108. public System.Windows.Forms.Label rgvPosCurr1;
  8109. private System.Windows.Forms.Label label45;
  8110. public System.Windows.Forms.Label rgvMode1;
  8111. public System.Windows.Forms.Label rgvOrdId1;
  8112. private System.Windows.Forms.Label label58;
  8113. public System.Windows.Forms.Label rgvPosTo1;
  8114. private System.Windows.Forms.Label label69;
  8115. public System.Windows.Forms.Label rgvPosFrom1;
  8116. private System.Windows.Forms.Label label73;
  8117. public System.Windows.Forms.Label rgvStatus1;
  8118. private System.Windows.Forms.Label label80;
  8119. private System.Windows.Forms.Label label92;
  8120. private System.Windows.Forms.Label lblrgv1444;
  8121. public System.Windows.Forms.PictureBox GV1;
  8122. public System.Windows.Forms.PictureBox pictureBox5;
  8123. private MyConrols.MyPanel pnlBottom;
  8124. private From.From_Montior.Conveyor3_A con2309;
  8125. private From.From_Montior.Conveyor3_A con2310;
  8126. private From.From_Montior.Conveyor_R con2021;
  8127. private From.From_Montior.Conveyor_R con2022;
  8128. private From.From_Montior.Conveyor4_L_R con2026;
  8129. private From.TableCellLabel tableCellLabel10;
  8130. private From.TableCellLabel tableCellLabel11;
  8131. private From.From_Montior.Conveyor_R con2027;
  8132. private From.From_Montior.Conveyor_R con2034;
  8133. private From.From_Montior.Conveyor_R con2028;
  8134. private From.From_Montior.Conveyor_R con2035;
  8135. private From.From_Montior.Conveyor4_L_R con2033;
  8136. private From.TableCellLabel tableCellLabel12;
  8137. private From.TableCellLabel tableCellLabel13;
  8138. private From.From_Montior.Conveyor_R con2042;
  8139. private From.From_Montior.Conveyor_R con2050;
  8140. private From.From_Montior.Conveyor4_L_R con2048;
  8141. private From.TableCellLabel tableCellLabel14;
  8142. private From.TableCellLabel tableCellLabel16;
  8143. private From.From_Montior.Conveyor_R con2049;
  8144. private From.From_Montior.Conveyor_R con2041;
  8145. private From.From_Montior.Conveyor_R con2039;
  8146. private From.From_Montior.Conveyor_R con2062;
  8147. private From.From_Montior.Conveyor_R con2058;
  8148. private From.From_Montior.Conveyor_R con2053;
  8149. private From.From_Montior.Conveyor_R con2057;
  8150. private From.From_Montior.Conveyor4_L_R con2055;
  8151. private From.TableCellLabel tableCellLabel17;
  8152. private From.TableCellLabel tableCellLabel18;
  8153. private From.From_Montior.Conveyor_R con2056;
  8154. private From.From_Montior.Conveyor_R con2051;
  8155. private From.From_Montior.Conveyor_R con2275;
  8156. private From.From_Montior.Conveyor_R con2276;
  8157. private From.From_Montior.Conveyor_R con2277;
  8158. private From.From_Montior.Conveyor_R con2278;
  8159. private From.From_Montior.Conveyor_R con2279;
  8160. private From.From_Montior.Conveyor_R con2280;
  8161. private From.From_Montior.Conveyor3_A con2202;
  8162. private From.From_Montior.Conveyor_L con2137;
  8163. private From.From_Montior.Conveyor_L con2125;
  8164. private From.From_Montior.Conveyor_L con2116;
  8165. private From.From_Montior.Conveyor_R con2083;
  8166. private From.From_Montior.Conveyor_R con2010;
  8167. private From.From_Montior.Conveyor_R con2014;
  8168. private From.From_Montior.Conveyor_R con2282;
  8169. private From.From_Montior.Conveyor_R con2281;
  8170. }
  8171. }