123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941 |
- namespace WCS_Client.From
- {
- partial class Form_Monitior
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- //protected override void Dispose(bool disposing)
- //{
- // if (disposing && (components != null))
- // {
- // components.Dispose();
- // }
- // base.Dispose(disposing);
- //}
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form_Monitior));
- this.tabControl1 = new System.Windows.Forms.TabControl();
- this.tabPage1 = new System.Windows.Forms.TabPage();
- this.myTableLayoutPanel1 = new WCS_Client.From.MyTableLayoutPanel();
- this.conveyor_1018 = new WCS_Client.From.From_Montior.Conveyor3();
- this.conveyor_1048 = new WCS_Client.From.From_Montior.Conveyor3();
- this.conveyor_1017 = new WCS_Client.From.From_Montior.Conveyor3();
- this.conveyor_1015 = new WCS_Client.From.From_Montior.Conveyor3();
- this.conveyor_1036 = new WCS_Client.From.From_Montior.Conveyor3();
- this.conveyor_1037 = new WCS_Client.From.From_Montior.Conveyor3();
- this.conveyor_1039 = new WCS_Client.From.From_Montior.Conveyor3();
- this.conveyor_1040 = new WCS_Client.From.From_Montior.Conveyor3();
- this.conveyor_1038 = new WCS_Client.From.From_Montior.Conveyor3();
- this.myTableLayoutPanel2 = new WCS_Client.From.MyTableLayoutPanel();
- this.conveyor_1032 = new WCS_Client.From.From_Montior.Conveyor_R();
- this.conveyor_1035 = new WCS_Client.From.From_Montior.Conveyor_R();
- this.button1 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.conveyor_1001 = new WCS_Client.From.From_Montior.Conveyor4_left();
- this.conveyor_1003 = new WCS_Client.From.From_Montior.Conveyor4_left();
- this.conveyor_1005 = new WCS_Client.From.From_Montior.Conveyor4_left();
- this.conveyor_1041 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1116 = new WCS_Client.From.From_Montior.Conveyor5();
- this.conveyor_1051 = new WCS_Client.From.From_Montior.Conveyor4_left();
- this.conveyor_1053 = new WCS_Client.From.From_Montior.Conveyor4_left();
- this.conveyor_1055 = new WCS_Client.From.From_Montior.Conveyor4_left();
- this.conveyor_1062 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1063 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1064 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1065 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1066 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1067 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1068 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1069 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1070 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1071 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1072 = new WCS_Client.From.From_Montior.Conveyor();
- this.tableCellLabel23 = new WCS_Client.From.From_Montior.TableCellLabel2();
- this.tableCellLabel27 = new WCS_Client.From.From_Montior.TableCellLabel2();
- this.rgv01 = new WCS_Client.From.From_Montior.Rgv02();
- this.tableCellLabel1 = new WCS_Client.From.TableCellLabel();
- this.rgv02 = new WCS_Client.From.From_Montior.Rgv();
- this.tableCellLabel12 = new WCS_Client.From.TableCellLabel();
- this.tableCellLabel15 = new WCS_Client.From.TableCellLabel();
- this.tableCellLabel18 = new WCS_Client.From.TableCellLabel();
- this.rgv03 = new WCS_Client.From.From_Montior.Rgv();
- this.conveyor_1138 = new WCS_Client.From.From_Montior.Conveyor6();
- this.conveyor_1139 = new WCS_Client.From.From_Montior.Conveyor3();
- this.conveyor_1112 = new WCS_Client.From.From_Montior.Conveyor5();
- this.conveyor_1111 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1110 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1021 = new WCS_Client.From.From_Montior.Conveyor3_B();
- this.conveyor_1022 = new WCS_Client.From.From_Montior.Conveyor3_B();
- this.conveyor3_1027 = new WCS_Client.From.From_Montior.Conveyor3_B();
- this.conveyor_1029 = new WCS_Client.From.From_Montior.Conveyor_R();
- this.conveyor_1030 = new WCS_Client.From.From_Montior.Conveyor_R();
- this.conveyor_1031 = new WCS_Client.From.From_Montior.Conveyor_R();
- this.conveyor_1033 = new WCS_Client.From.From_Montior.Conveyor_R();
- this.conveyor_1013 = new WCS_Client.From.From_Montior.Conveyor_L();
- this.conveyor_1012 = new WCS_Client.From.From_Montior.Conveyor_L();
- this.conveyor_1011 = new WCS_Client.From.From_Montior.Conveyor_L();
- this.conveyor_1046 = new WCS_Client.From.From_Montior.Conveyor_L();
- this.conveyor_1019 = new WCS_Client.From.From_Montior.Conveyor_L();
- this.conveyor_1061 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
- this.conveyor_1050 = new WCS_Client.From.From_Montior.Conveyor4_right();
- this.conveyor_1052 = new WCS_Client.From.From_Montior.Conveyor4_right();
- this.conveyor_1054 = new WCS_Client.From.From_Montior.Conveyor4_right();
- this.conveyor_1002 = new WCS_Client.From.From_Montior.Conveyor4_right();
- this.conveyor_1004 = new WCS_Client.From.From_Montior.Conveyor4_right();
- this.conveyor_1006 = new WCS_Client.From.From_Montior.Conveyor4_right();
- this.conveyor_1118 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
- this.conveyor_1115 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
- this.locationPostion21 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion22 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion23 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion24 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion25 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion26 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion27 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion28 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion29 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion210 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion211 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion212 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion213 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion214 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion215 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion216 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion217 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.tableCellLabel210 = new WCS_Client.From.From_Montior.TableCellLabel2();
- this.srm03 = new WCS_Client.From.From_Montior.Srm3();
- this.tableCellLabel211 = new WCS_Client.From.From_Montior.TableCellLabel2();
- this.tableCellLabel212 = new WCS_Client.From.From_Montior.TableCellLabel2();
- this.tableCellLabel213 = new WCS_Client.From.From_Montior.TableCellLabel2();
- this.srm02 = new WCS_Client.From.From_Montior.Srm3();
- this.tableCellLabel214 = new WCS_Client.From.From_Montior.TableCellLabel2();
- this.tableCellLabel215 = new WCS_Client.From.From_Montior.TableCellLabel2();
- this.srm01 = new WCS_Client.From.From_Montior.Srm3();
- this.locationPostion218 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion219 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion220 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion221 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion222 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion223 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion224 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion225 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion226 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion227 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion228 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion229 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion230 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion231 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion232 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion233 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion234 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion235 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion236 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion237 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion238 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion239 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion240 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion241 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion242 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion243 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion244 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion245 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion246 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion247 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion248 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion249 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion250 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion251 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion252 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion253 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion254 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion255 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion256 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion257 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion258 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion259 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion260 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion261 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion262 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion263 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion264 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion265 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion266 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion267 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion268 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion269 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion270 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion271 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion272 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion273 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion274 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion275 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion276 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion277 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion278 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion279 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion280 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion281 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion282 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion283 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion284 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion285 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion286 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion287 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion288 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion289 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion290 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion291 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion292 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion293 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion294 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion295 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion296 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion297 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion298 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion299 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2100 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2101 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2102 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.conveyor_1044 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
- this.tabPage2 = new System.Windows.Forms.TabPage();
- this.tableLayoutPanel1 = new WCS_Client.From.MyTableLayoutPanel();
- this.tableCellLabel16 = new WCS_Client.From.TableCellLabel();
- this.conveyor_1090 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1092 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1093 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1094 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1095 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1096 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1097 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1098 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1099 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1100 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1101 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1102 = new WCS_Client.From.From_Montior.Conveyor();
- this.rgv04 = new WCS_Client.From.From_Montior.Rgv();
- this.tableCellLabel41 = new WCS_Client.From.TableCellLabel();
- this.conveyor_1081 = new WCS_Client.From.From_Montior.Conveyor4_left();
- this.conveyor_1083 = new WCS_Client.From.From_Montior.Conveyor4_left();
- this.conveyor_1085 = new WCS_Client.From.From_Montior.Conveyor4_left();
- this.conveyor2_1116 = new WCS_Client.From.From_Montior.Conveyor5();
- this.conveyor_1121 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1123 = new WCS_Client.From.From_Montior.Conveyor3();
- this.conveyor_1124 = new WCS_Client.From.From_Montior.Conveyor3();
- this.conveyor_1130 = new WCS_Client.From.From_Montior.Conveyor();
- this.conveyor_1132 = new WCS_Client.From.From_Montior.Conveyor3();
- this.conveyor_1133 = new WCS_Client.From.From_Montior.Conveyor3();
- this.conveyor_1134 = new WCS_Client.From.From_Montior.Conveyor3();
- this.conveyor_1136 = new WCS_Client.From.From_Montior.Conveyor3();
- this.conveyor_1137 = new WCS_Client.From.From_Montior.Conveyor6();
- this.conveyor2_1114 = new WCS_Client.From.From_Montior.Conveyor5();
- this.locationPostion2103 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2104 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2105 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2106 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2107 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2108 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2109 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2110 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2111 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2112 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2113 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2114 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2115 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2116 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2117 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2118 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.srm033 = new WCS_Client.From.From_Montior.Srm3();
- this.tableCellLabel216 = new WCS_Client.From.From_Montior.TableCellLabel2();
- this.tableCellLabel217 = new WCS_Client.From.From_Montior.TableCellLabel2();
- this.locationPostion2119 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2120 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2121 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2122 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2123 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2124 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2125 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2126 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2127 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2128 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2129 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2130 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2131 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2132 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2133 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2134 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2135 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2136 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2137 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2138 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2139 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2140 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2141 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2142 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2143 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2144 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2145 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2146 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2147 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2148 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2149 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2150 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2151 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2152 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2153 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2154 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2155 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2156 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2157 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2158 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2159 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2160 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2161 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2162 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2163 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2164 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2165 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2166 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.tableCellLabel218 = new WCS_Client.From.From_Montior.TableCellLabel2();
- this.tableCellLabel219 = new WCS_Client.From.From_Montior.TableCellLabel2();
- this.srm022 = new WCS_Client.From.From_Montior.Srm3();
- this.locationPostion2167 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2168 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2169 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2170 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2171 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2172 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2173 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2174 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2175 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2176 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2177 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2178 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2179 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2180 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2181 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2182 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2183 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2184 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2185 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2186 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2187 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2188 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2189 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2190 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2191 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2192 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2193 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2194 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2195 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2196 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2197 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.locationPostion2198 = new WCS_Client.From.From_Montior.LocationPostion2();
- this.tableCellLabel220 = new WCS_Client.From.From_Montior.TableCellLabel2();
- this.tableCellLabel221 = new WCS_Client.From.From_Montior.TableCellLabel2();
- this.srm011 = new WCS_Client.From.From_Montior.Srm3();
- this.conveyor_1080 = new WCS_Client.From.From_Montior.Conveyor4_right();
- this.conveyor_1082 = new WCS_Client.From.From_Montior.Conveyor4_right();
- this.conveyor_1084 = new WCS_Client.From.From_Montior.Conveyor4_right();
- this.conveyor_1103 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
- this.conveyor_1091 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
- this.conveyor_1120 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
- this.conveyor_1126 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
- this.conveyor_1127 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
- this.conveyor_1128 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
- this.conveyor_1129 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
- this.conveyor_1114 = new WCS_Client.From.From_Montior.Conveyor();
- this.tabControl1.SuspendLayout();
- this.tabPage1.SuspendLayout();
- this.myTableLayoutPanel1.SuspendLayout();
- this.myTableLayoutPanel2.SuspendLayout();
- this.tabPage2.SuspendLayout();
- this.tableLayoutPanel1.SuspendLayout();
- this.SuspendLayout();
- //
- // tabControl1
- //
- this.tabControl1.Controls.Add(this.tabPage1);
- this.tabControl1.Controls.Add(this.tabPage2);
- this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tabControl1.ItemSize = new System.Drawing.Size(120, 21);
- this.tabControl1.Location = new System.Drawing.Point(0, 0);
- this.tabControl1.Margin = new System.Windows.Forms.Padding(0);
- this.tabControl1.Name = "tabControl1";
- this.tabControl1.SelectedIndex = 0;
- this.tabControl1.Size = new System.Drawing.Size(1356, 810);
- this.tabControl1.TabIndex = 0;
- this.tabControl1.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.tabControl1_DrawItem);
- //
- // tabPage1
- //
- this.tabPage1.Controls.Add(this.myTableLayoutPanel1);
- this.tabPage1.Location = new System.Drawing.Point(4, 25);
- this.tabPage1.Margin = new System.Windows.Forms.Padding(0);
- this.tabPage1.Name = "tabPage1";
- this.tabPage1.Size = new System.Drawing.Size(1348, 781);
- this.tabPage1.TabIndex = 0;
- this.tabPage1.Text = "托盘立体库物流(一楼)";
- this.tabPage1.UseVisualStyleBackColor = true;
- //
- // myTableLayoutPanel1
- //
- this.myTableLayoutPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(144)))), ((int)(((byte)(154)))));
- this.myTableLayoutPanel1.ColumnCount = 31;
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.386142F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.224898F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.4318F));
- this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 179F));
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1018, 20, 0);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1048, 20, 1);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1017, 20, 2);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1015, 20, 3);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1036, 16, 3);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1037, 15, 3);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1039, 12, 3);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1040, 11, 3);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1038, 10, 3);
- this.myTableLayoutPanel1.Controls.Add(this.myTableLayoutPanel2, 21, 4);
- this.myTableLayoutPanel1.Controls.Add(this.button1, 13, 3);
- this.myTableLayoutPanel1.Controls.Add(this.button2, 14, 3);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1001, 22, 8);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1003, 22, 10);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1005, 22, 14);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1041, 25, 7);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1116, 26, 17);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1051, 3, 8);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1053, 3, 12);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1055, 3, 16);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1062, 1, 8);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1063, 1, 9);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1064, 1, 10);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1065, 1, 11);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1066, 1, 12);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1067, 1, 13);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1068, 1, 14);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1069, 1, 15);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1070, 1, 16);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1071, 1, 17);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1072, 1, 18);
- this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel23, 9, 2);
- this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel27, 17, 2);
- this.myTableLayoutPanel1.Controls.Add(this.rgv01, 15, 2);
- this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel1, 24, 3);
- this.myTableLayoutPanel1.Controls.Add(this.rgv02, 24, 11);
- this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel12, 24, 13);
- this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel15, 2, 5);
- this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel18, 2, 14);
- this.myTableLayoutPanel1.Controls.Add(this.rgv03, 2, 12);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1138, 29, 18);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1139, 29, 19);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1112, 27, 15);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1111, 28, 15);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1110, 29, 15);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1021, 17, 0);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1022, 17, 1);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor3_1027, 17, 3);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1029, 17, 4);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1030, 18, 4);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1031, 19, 4);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1033, 20, 4);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1013, 21, 3);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1012, 22, 3);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1011, 23, 3);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1046, 19, 3);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1019, 18, 3);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1061, 0, 6);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1050, 3, 6);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1052, 3, 10);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1054, 3, 14);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1002, 22, 6);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1004, 22, 12);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1006, 22, 16);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1118, 25, 17);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1115, 27, 17);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion21, 5, 6);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion22, 6, 6);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion23, 7, 6);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion24, 8, 6);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion25, 9, 6);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion26, 10, 6);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion27, 11, 6);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion28, 12, 6);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion29, 13, 6);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion210, 14, 6);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion211, 15, 6);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion212, 16, 6);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion213, 17, 6);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion214, 18, 6);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion215, 19, 6);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion216, 20, 6);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion217, 21, 6);
- this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel210, 5, 7);
- this.myTableLayoutPanel1.Controls.Add(this.srm03, 12, 7);
- this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel211, 14, 7);
- this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel212, 5, 11);
- this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel213, 14, 11);
- this.myTableLayoutPanel1.Controls.Add(this.srm02, 12, 11);
- this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel214, 5, 15);
- this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel215, 14, 15);
- this.myTableLayoutPanel1.Controls.Add(this.srm01, 12, 15);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion218, 5, 8);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion219, 6, 8);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion220, 7, 8);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion221, 8, 8);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion222, 9, 8);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion223, 10, 8);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion224, 11, 8);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion225, 12, 8);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion226, 13, 8);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion227, 14, 8);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion228, 15, 8);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion229, 16, 8);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion230, 17, 8);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion231, 18, 8);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion232, 19, 8);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion233, 20, 8);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion234, 21, 8);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion235, 5, 10);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion236, 6, 10);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion237, 7, 10);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion238, 8, 10);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion239, 9, 10);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion240, 10, 10);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion241, 11, 10);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion242, 12, 10);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion243, 13, 10);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion244, 14, 10);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion245, 15, 10);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion246, 16, 10);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion247, 17, 10);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion248, 18, 10);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion249, 19, 10);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion250, 20, 10);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion251, 21, 10);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion252, 5, 12);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion253, 6, 12);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion254, 7, 12);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion255, 8, 12);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion256, 9, 12);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion257, 10, 12);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion258, 11, 12);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion259, 12, 12);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion260, 13, 12);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion261, 14, 12);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion262, 15, 12);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion263, 16, 12);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion264, 17, 12);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion265, 18, 12);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion266, 19, 12);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion267, 20, 12);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion268, 21, 12);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion269, 5, 14);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion270, 6, 14);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion271, 7, 14);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion272, 8, 14);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion273, 9, 14);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion274, 10, 14);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion275, 11, 14);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion276, 12, 14);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion277, 13, 14);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion278, 14, 14);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion279, 15, 14);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion280, 16, 14);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion281, 17, 14);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion282, 18, 14);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion283, 19, 14);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion284, 20, 14);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion285, 21, 14);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion286, 5, 16);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion287, 6, 16);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion288, 7, 16);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion289, 8, 16);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion290, 9, 16);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion291, 10, 16);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion292, 11, 16);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion293, 12, 16);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion294, 13, 16);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion295, 14, 16);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion296, 15, 16);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion297, 16, 16);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion298, 17, 16);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion299, 18, 16);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion2100, 19, 16);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion2101, 20, 16);
- this.myTableLayoutPanel1.Controls.Add(this.locationPostion2102, 21, 16);
- this.myTableLayoutPanel1.Controls.Add(this.conveyor_1044, 26, 7);
- this.myTableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.myTableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
- this.myTableLayoutPanel1.Margin = new System.Windows.Forms.Padding(2);
- this.myTableLayoutPanel1.Name = "myTableLayoutPanel1";
- this.myTableLayoutPanel1.RowCount = 21;
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 1F));
- this.myTableLayoutPanel1.Size = new System.Drawing.Size(1348, 781);
- this.myTableLayoutPanel1.TabIndex = 1;
- this.myTableLayoutPanel1.CellPaint += new System.Windows.Forms.TableLayoutCellPaintEventHandler(this.myTableLayoutPanel1_CellPaint);
- //
- // conveyor_1018
- //
- this.conveyor_1018.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1018.Location = new System.Drawing.Point(760, 0);
- this.conveyor_1018.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1018.Name = "conveyor_1018";
- this.conveyor_1018.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1018.TabIndex = 0;
- //
- // conveyor_1048
- //
- this.conveyor_1048.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1048.Location = new System.Drawing.Point(760, 39);
- this.conveyor_1048.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1048.Name = "conveyor_1048";
- this.conveyor_1048.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1048.TabIndex = 1;
- //
- // conveyor_1017
- //
- this.conveyor_1017.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1017.Location = new System.Drawing.Point(760, 78);
- this.conveyor_1017.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1017.Name = "conveyor_1017";
- this.conveyor_1017.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1017.TabIndex = 2;
- //
- // conveyor_1015
- //
- this.conveyor_1015.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1015.Location = new System.Drawing.Point(760, 117);
- this.conveyor_1015.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1015.Name = "conveyor_1015";
- this.conveyor_1015.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1015.TabIndex = 3;
- //
- // conveyor_1036
- //
- this.conveyor_1036.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1036.Location = new System.Drawing.Point(609, 118);
- this.conveyor_1036.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1036.Name = "conveyor_1036";
- this.conveyor_1036.Size = new System.Drawing.Size(36, 37);
- this.conveyor_1036.TabIndex = 14;
- //
- // conveyor_1037
- //
- this.conveyor_1037.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1037.Location = new System.Drawing.Point(571, 118);
- this.conveyor_1037.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1037.Name = "conveyor_1037";
- this.conveyor_1037.Size = new System.Drawing.Size(36, 37);
- this.conveyor_1037.TabIndex = 19;
- //
- // conveyor_1039
- //
- this.conveyor_1039.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1039.Location = new System.Drawing.Point(457, 118);
- this.conveyor_1039.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1039.Name = "conveyor_1039";
- this.conveyor_1039.Size = new System.Drawing.Size(36, 37);
- this.conveyor_1039.TabIndex = 20;
- //
- // conveyor_1040
- //
- this.conveyor_1040.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1040.Location = new System.Drawing.Point(419, 118);
- this.conveyor_1040.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1040.Name = "conveyor_1040";
- this.conveyor_1040.Size = new System.Drawing.Size(36, 37);
- this.conveyor_1040.TabIndex = 21;
- //
- // conveyor_1038
- //
- this.conveyor_1038.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1038.Location = new System.Drawing.Point(381, 118);
- this.conveyor_1038.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1038.Name = "conveyor_1038";
- this.conveyor_1038.Size = new System.Drawing.Size(36, 37);
- this.conveyor_1038.TabIndex = 22;
- //
- // myTableLayoutPanel2
- //
- this.myTableLayoutPanel2.ColumnCount = 2;
- this.myTableLayoutPanel1.SetColumnSpan(this.myTableLayoutPanel2, 3);
- this.myTableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.myTableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.myTableLayoutPanel2.Controls.Add(this.conveyor_1032, 0, 0);
- this.myTableLayoutPanel2.Controls.Add(this.conveyor_1035, 1, 0);
- this.myTableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.myTableLayoutPanel2.Location = new System.Drawing.Point(798, 156);
- this.myTableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
- this.myTableLayoutPanel2.Name = "myTableLayoutPanel2";
- this.myTableLayoutPanel2.RowCount = 1;
- this.myTableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.myTableLayoutPanel2.Size = new System.Drawing.Size(114, 39);
- this.myTableLayoutPanel2.TabIndex = 23;
- //
- // conveyor_1032
- //
- this.conveyor_1032.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1032.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1032.Location = new System.Drawing.Point(0, 0);
- this.conveyor_1032.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1032.Name = "conveyor_1032";
- this.conveyor_1032.Size = new System.Drawing.Size(57, 39);
- this.conveyor_1032.TabIndex = 2;
- //
- // conveyor_1035
- //
- this.conveyor_1035.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1035.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1035.Location = new System.Drawing.Point(57, 0);
- this.conveyor_1035.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1035.Name = "conveyor_1035";
- this.conveyor_1035.Size = new System.Drawing.Size(57, 39);
- this.conveyor_1035.TabIndex = 3;
- //
- // button1
- //
- this.button1.BackColor = System.Drawing.Color.Gainsboro;
- this.button1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button1.Location = new System.Drawing.Point(495, 118);
- this.button1.Margin = new System.Windows.Forms.Padding(1);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(36, 37);
- this.button1.TabIndex = 24;
- this.button1.UseVisualStyleBackColor = false;
- //
- // button2
- //
- this.button2.BackColor = System.Drawing.Color.Gainsboro;
- this.button2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.button2.Location = new System.Drawing.Point(533, 118);
- this.button2.Margin = new System.Windows.Forms.Padding(1);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(36, 37);
- this.button2.TabIndex = 25;
- this.button2.UseVisualStyleBackColor = false;
- //
- // conveyor_1001
- //
- this.conveyor_1001.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1001, 2);
- this.conveyor_1001.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1001.Location = new System.Drawing.Point(836, 312);
- this.conveyor_1001.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1001.Name = "conveyor_1001";
- this.conveyor_1001.Size = new System.Drawing.Size(76, 39);
- this.conveyor_1001.TabIndex = 29;
- //
- // conveyor_1003
- //
- this.conveyor_1003.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1003, 2);
- this.conveyor_1003.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1003.Location = new System.Drawing.Point(836, 390);
- this.conveyor_1003.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1003.Name = "conveyor_1003";
- this.conveyor_1003.Size = new System.Drawing.Size(76, 39);
- this.conveyor_1003.TabIndex = 34;
- //
- // conveyor_1005
- //
- this.conveyor_1005.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1005, 2);
- this.conveyor_1005.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1005.Location = new System.Drawing.Point(836, 546);
- this.conveyor_1005.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1005.Name = "conveyor_1005";
- this.conveyor_1005.Size = new System.Drawing.Size(76, 39);
- this.conveyor_1005.TabIndex = 36;
- //
- // conveyor_1041
- //
- this.conveyor_1041.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1041.Location = new System.Drawing.Point(951, 273);
- this.conveyor_1041.Margin = new System.Windows.Forms.Padding(1, 0, 0, 0);
- this.conveyor_1041.Name = "conveyor_1041";
- this.conveyor_1041.Size = new System.Drawing.Size(37, 39);
- this.conveyor_1041.TabIndex = 42;
- //
- // conveyor_1116
- //
- this.conveyor_1116.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.conveyor_1116.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1116.Location = new System.Drawing.Point(988, 663);
- this.conveyor_1116.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1116.Name = "conveyor_1116";
- this.conveyor_1116.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1116.TabIndex = 46;
- //
- // conveyor_1051
- //
- this.conveyor_1051.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1051, 2);
- this.conveyor_1051.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1051.Location = new System.Drawing.Point(115, 312);
- this.conveyor_1051.Margin = new System.Windows.Forms.Padding(1, 0, 0, 0);
- this.conveyor_1051.Name = "conveyor_1051";
- this.conveyor_1051.Size = new System.Drawing.Size(75, 39);
- this.conveyor_1051.TabIndex = 50;
- //
- // conveyor_1053
- //
- this.conveyor_1053.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1053, 2);
- this.conveyor_1053.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1053.Location = new System.Drawing.Point(115, 468);
- this.conveyor_1053.Margin = new System.Windows.Forms.Padding(1, 0, 0, 0);
- this.conveyor_1053.Name = "conveyor_1053";
- this.conveyor_1053.Size = new System.Drawing.Size(75, 39);
- this.conveyor_1053.TabIndex = 52;
- //
- // conveyor_1055
- //
- this.conveyor_1055.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1055, 2);
- this.conveyor_1055.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1055.Location = new System.Drawing.Point(115, 624);
- this.conveyor_1055.Margin = new System.Windows.Forms.Padding(1, 0, 0, 0);
- this.conveyor_1055.Name = "conveyor_1055";
- this.conveyor_1055.Size = new System.Drawing.Size(75, 39);
- this.conveyor_1055.TabIndex = 54;
- //
- // conveyor_1062
- //
- this.conveyor_1062.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1062.Location = new System.Drawing.Point(39, 313);
- this.conveyor_1062.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1062.Name = "conveyor_1062";
- this.conveyor_1062.Size = new System.Drawing.Size(36, 37);
- this.conveyor_1062.TabIndex = 56;
- //
- // conveyor_1063
- //
- this.conveyor_1063.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1063.Location = new System.Drawing.Point(39, 352);
- this.conveyor_1063.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1063.Name = "conveyor_1063";
- this.conveyor_1063.Size = new System.Drawing.Size(36, 37);
- this.conveyor_1063.TabIndex = 58;
- //
- // conveyor_1064
- //
- this.conveyor_1064.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1064.Location = new System.Drawing.Point(39, 391);
- this.conveyor_1064.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1064.Name = "conveyor_1064";
- this.conveyor_1064.Size = new System.Drawing.Size(36, 37);
- this.conveyor_1064.TabIndex = 59;
- //
- // conveyor_1065
- //
- this.conveyor_1065.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1065.Location = new System.Drawing.Point(39, 430);
- this.conveyor_1065.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1065.Name = "conveyor_1065";
- this.conveyor_1065.Size = new System.Drawing.Size(36, 37);
- this.conveyor_1065.TabIndex = 60;
- //
- // conveyor_1066
- //
- this.conveyor_1066.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1066.Location = new System.Drawing.Point(39, 469);
- this.conveyor_1066.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1066.Name = "conveyor_1066";
- this.conveyor_1066.Size = new System.Drawing.Size(36, 37);
- this.conveyor_1066.TabIndex = 61;
- //
- // conveyor_1067
- //
- this.conveyor_1067.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1067.Location = new System.Drawing.Point(39, 508);
- this.conveyor_1067.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1067.Name = "conveyor_1067";
- this.conveyor_1067.Size = new System.Drawing.Size(36, 37);
- this.conveyor_1067.TabIndex = 62;
- //
- // conveyor_1068
- //
- this.conveyor_1068.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1068.Location = new System.Drawing.Point(39, 547);
- this.conveyor_1068.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1068.Name = "conveyor_1068";
- this.conveyor_1068.Size = new System.Drawing.Size(36, 37);
- this.conveyor_1068.TabIndex = 63;
- //
- // conveyor_1069
- //
- this.conveyor_1069.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1069.Location = new System.Drawing.Point(39, 586);
- this.conveyor_1069.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1069.Name = "conveyor_1069";
- this.conveyor_1069.Size = new System.Drawing.Size(36, 37);
- this.conveyor_1069.TabIndex = 64;
- //
- // conveyor_1070
- //
- this.conveyor_1070.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1070.Location = new System.Drawing.Point(39, 625);
- this.conveyor_1070.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1070.Name = "conveyor_1070";
- this.conveyor_1070.Size = new System.Drawing.Size(36, 37);
- this.conveyor_1070.TabIndex = 65;
- //
- // conveyor_1071
- //
- this.conveyor_1071.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1071.Location = new System.Drawing.Point(39, 664);
- this.conveyor_1071.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1071.Name = "conveyor_1071";
- this.conveyor_1071.Size = new System.Drawing.Size(36, 37);
- this.conveyor_1071.TabIndex = 66;
- //
- // conveyor_1072
- //
- this.conveyor_1072.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1072.Location = new System.Drawing.Point(39, 703);
- this.conveyor_1072.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1072.Name = "conveyor_1072";
- this.conveyor_1072.Size = new System.Drawing.Size(36, 37);
- this.conveyor_1072.TabIndex = 68;
- //
- // tableCellLabel23
- //
- this.tableCellLabel23.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel23.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel23.BackgroundImage")));
- this.tableCellLabel23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel23, 6);
- this.tableCellLabel23.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel23.Location = new System.Drawing.Point(343, 78);
- this.tableCellLabel23.Margin = new System.Windows.Forms.Padding(1, 0, 0, 0);
- this.tableCellLabel23.Name = "tableCellLabel23";
- this.tableCellLabel23.Size = new System.Drawing.Size(227, 39);
- this.tableCellLabel23.TabIndex = 71;
- //
- // tableCellLabel27
- //
- this.tableCellLabel27.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel27.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel27.BackgroundImage")));
- this.tableCellLabel27.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel27, 3);
- this.tableCellLabel27.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel27.Location = new System.Drawing.Point(646, 78);
- this.tableCellLabel27.Margin = new System.Windows.Forms.Padding(0);
- this.tableCellLabel27.Name = "tableCellLabel27";
- this.tableCellLabel27.Size = new System.Drawing.Size(114, 39);
- this.tableCellLabel27.TabIndex = 75;
- //
- // rgv01
- //
- this.myTableLayoutPanel1.SetColumnSpan(this.rgv01, 2);
- this.rgv01.Dock = System.Windows.Forms.DockStyle.Fill;
- this.rgv01.Location = new System.Drawing.Point(572, 80);
- this.rgv01.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.rgv01.Name = "rgv01";
- this.rgv01.Size = new System.Drawing.Size(72, 35);
- this.rgv01.TabIndex = 76;
- //
- // tableCellLabel1
- //
- this.tableCellLabel1.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel1.BackgroundImage")));
- this.tableCellLabel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.tableCellLabel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel1.Location = new System.Drawing.Point(912, 118);
- this.tableCellLabel1.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
- this.tableCellLabel1.Name = "tableCellLabel1";
- this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel1, 8);
- this.tableCellLabel1.Size = new System.Drawing.Size(38, 311);
- this.tableCellLabel1.TabIndex = 79;
- //
- // rgv02
- //
- this.rgv02.Dock = System.Windows.Forms.DockStyle.Fill;
- this.rgv02.Location = new System.Drawing.Point(914, 431);
- this.rgv02.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.rgv02.Name = "rgv02";
- this.myTableLayoutPanel1.SetRowSpan(this.rgv02, 2);
- this.rgv02.Size = new System.Drawing.Size(34, 74);
- this.rgv02.TabIndex = 90;
- //
- // tableCellLabel12
- //
- this.tableCellLabel12.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel12.BackgroundImage")));
- this.tableCellLabel12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.tableCellLabel12.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel12.Location = new System.Drawing.Point(912, 507);
- this.tableCellLabel12.Margin = new System.Windows.Forms.Padding(0);
- this.tableCellLabel12.Name = "tableCellLabel12";
- this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel12, 6);
- this.tableCellLabel12.Size = new System.Drawing.Size(38, 234);
- this.tableCellLabel12.TabIndex = 91;
- //
- // tableCellLabel15
- //
- this.tableCellLabel15.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel15.BackgroundImage")));
- this.tableCellLabel15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.tableCellLabel15.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel15.Location = new System.Drawing.Point(76, 196);
- this.tableCellLabel15.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
- this.tableCellLabel15.Name = "tableCellLabel15";
- this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel15, 7);
- this.tableCellLabel15.Size = new System.Drawing.Size(38, 272);
- this.tableCellLabel15.TabIndex = 94;
- //
- // tableCellLabel18
- //
- this.tableCellLabel18.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel18.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel18.BackgroundImage")));
- this.tableCellLabel18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.tableCellLabel18.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel18.Location = new System.Drawing.Point(76, 546);
- this.tableCellLabel18.Margin = new System.Windows.Forms.Padding(0);
- this.tableCellLabel18.Name = "tableCellLabel18";
- this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel18, 6);
- this.tableCellLabel18.Size = new System.Drawing.Size(38, 234);
- this.tableCellLabel18.TabIndex = 97;
- //
- // rgv03
- //
- this.rgv03.Dock = System.Windows.Forms.DockStyle.Fill;
- this.rgv03.Location = new System.Drawing.Point(78, 470);
- this.rgv03.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.rgv03.Name = "rgv03";
- this.myTableLayoutPanel1.SetRowSpan(this.rgv03, 2);
- this.rgv03.Size = new System.Drawing.Size(34, 74);
- this.rgv03.TabIndex = 109;
- //
- // conveyor_1138
- //
- this.conveyor_1138.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1138.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("conveyor_1138.BackgroundImage")));
- this.conveyor_1138.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.conveyor_1138.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1138.Location = new System.Drawing.Point(1102, 702);
- this.conveyor_1138.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1138.Name = "conveyor_1138";
- this.conveyor_1138.Size = new System.Drawing.Size(40, 39);
- this.conveyor_1138.TabIndex = 110;
- //
- // conveyor_1139
- //
- this.conveyor_1139.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1139.Location = new System.Drawing.Point(1102, 741);
- this.conveyor_1139.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1139.Name = "conveyor_1139";
- this.conveyor_1139.Size = new System.Drawing.Size(40, 39);
- this.conveyor_1139.TabIndex = 111;
- //
- // conveyor_1112
- //
- this.conveyor_1112.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.conveyor_1112.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1112.Location = new System.Drawing.Point(1026, 585);
- this.conveyor_1112.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1112.Name = "conveyor_1112";
- this.conveyor_1112.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1112.TabIndex = 112;
- //
- // conveyor_1111
- //
- this.conveyor_1111.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1111.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.conveyor_1111.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1111.Location = new System.Drawing.Point(1064, 585);
- this.conveyor_1111.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1111.Name = "conveyor_1111";
- this.conveyor_1111.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1111.TabIndex = 113;
- //
- // conveyor_1110
- //
- this.conveyor_1110.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1110.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.conveyor_1110.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1110.Location = new System.Drawing.Point(1102, 585);
- this.conveyor_1110.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1110.Name = "conveyor_1110";
- this.conveyor_1110.Size = new System.Drawing.Size(40, 39);
- this.conveyor_1110.TabIndex = 114;
- //
- // conveyor_1021
- //
- this.conveyor_1021.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1021.Location = new System.Drawing.Point(646, 0);
- this.conveyor_1021.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1021.Name = "conveyor_1021";
- this.conveyor_1021.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1021.TabIndex = 116;
- this.conveyor_1021.Tag = "1021";
- //
- // conveyor_1022
- //
- this.conveyor_1022.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1022.Location = new System.Drawing.Point(646, 39);
- this.conveyor_1022.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1022.Name = "conveyor_1022";
- this.conveyor_1022.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1022.TabIndex = 117;
- //
- // conveyor3_1027
- //
- this.conveyor3_1027.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor3_1027.Location = new System.Drawing.Point(646, 118);
- this.conveyor3_1027.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
- this.conveyor3_1027.Name = "conveyor3_1027";
- this.conveyor3_1027.Size = new System.Drawing.Size(38, 38);
- this.conveyor3_1027.TabIndex = 118;
- //
- // conveyor_1029
- //
- this.conveyor_1029.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1029.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1029.Location = new System.Drawing.Point(646, 156);
- this.conveyor_1029.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1029.Name = "conveyor_1029";
- this.conveyor_1029.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1029.TabIndex = 119;
- //
- // conveyor_1030
- //
- this.conveyor_1030.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1030.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1030.Location = new System.Drawing.Point(684, 156);
- this.conveyor_1030.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1030.Name = "conveyor_1030";
- this.conveyor_1030.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1030.TabIndex = 120;
- //
- // conveyor_1031
- //
- this.conveyor_1031.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1031.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1031.Location = new System.Drawing.Point(722, 156);
- this.conveyor_1031.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1031.Name = "conveyor_1031";
- this.conveyor_1031.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1031.TabIndex = 121;
- //
- // conveyor_1033
- //
- this.conveyor_1033.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1033.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1033.Location = new System.Drawing.Point(760, 156);
- this.conveyor_1033.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1033.Name = "conveyor_1033";
- this.conveyor_1033.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1033.TabIndex = 122;
- //
- // conveyor_1013
- //
- this.conveyor_1013.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1013.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1013.Location = new System.Drawing.Point(798, 117);
- this.conveyor_1013.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1013.Name = "conveyor_1013";
- this.conveyor_1013.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1013.TabIndex = 123;
- //
- // conveyor_1012
- //
- this.conveyor_1012.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1012.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1012.Location = new System.Drawing.Point(836, 117);
- this.conveyor_1012.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1012.Name = "conveyor_1012";
- this.conveyor_1012.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1012.TabIndex = 124;
- //
- // conveyor_1011
- //
- this.conveyor_1011.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1011.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1011.Location = new System.Drawing.Point(874, 117);
- this.conveyor_1011.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1011.Name = "conveyor_1011";
- this.conveyor_1011.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1011.TabIndex = 125;
- //
- // conveyor_1046
- //
- this.conveyor_1046.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1046.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1046.Location = new System.Drawing.Point(722, 117);
- this.conveyor_1046.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1046.Name = "conveyor_1046";
- this.conveyor_1046.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1046.TabIndex = 126;
- //
- // conveyor_1019
- //
- this.conveyor_1019.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1019.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1019.Location = new System.Drawing.Point(684, 117);
- this.conveyor_1019.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1019.Name = "conveyor_1019";
- this.conveyor_1019.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1019.TabIndex = 127;
- //
- // conveyor_1061
- //
- this.conveyor_1061.BackColor = System.Drawing.Color.Transparent;
- this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1061, 2);
- this.conveyor_1061.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1061.Location = new System.Drawing.Point(0, 234);
- this.conveyor_1061.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1061.Name = "conveyor_1061";
- this.conveyor_1061.Size = new System.Drawing.Size(76, 39);
- this.conveyor_1061.TabIndex = 128;
- //
- // conveyor_1050
- //
- this.conveyor_1050.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1050.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1050, 2);
- this.conveyor_1050.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1050.Location = new System.Drawing.Point(114, 234);
- this.conveyor_1050.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1050.Name = "conveyor_1050";
- this.conveyor_1050.Size = new System.Drawing.Size(76, 39);
- this.conveyor_1050.TabIndex = 129;
- //
- // conveyor_1052
- //
- this.conveyor_1052.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1052.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1052, 2);
- this.conveyor_1052.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1052.Location = new System.Drawing.Point(114, 390);
- this.conveyor_1052.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1052.Name = "conveyor_1052";
- this.conveyor_1052.Size = new System.Drawing.Size(76, 39);
- this.conveyor_1052.TabIndex = 130;
- //
- // conveyor_1054
- //
- this.conveyor_1054.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1054.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1054, 2);
- this.conveyor_1054.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1054.Location = new System.Drawing.Point(114, 546);
- this.conveyor_1054.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1054.Name = "conveyor_1054";
- this.conveyor_1054.Size = new System.Drawing.Size(76, 39);
- this.conveyor_1054.TabIndex = 131;
- //
- // conveyor_1002
- //
- this.conveyor_1002.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1002.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1002, 2);
- this.conveyor_1002.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1002.Location = new System.Drawing.Point(836, 234);
- this.conveyor_1002.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1002.Name = "conveyor_1002";
- this.conveyor_1002.Size = new System.Drawing.Size(76, 39);
- this.conveyor_1002.TabIndex = 132;
- //
- // conveyor_1004
- //
- this.conveyor_1004.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1004.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1004, 2);
- this.conveyor_1004.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1004.Location = new System.Drawing.Point(836, 468);
- this.conveyor_1004.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1004.Name = "conveyor_1004";
- this.conveyor_1004.Size = new System.Drawing.Size(76, 39);
- this.conveyor_1004.TabIndex = 133;
- //
- // conveyor_1006
- //
- this.conveyor_1006.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1006.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1006, 2);
- this.conveyor_1006.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1006.Location = new System.Drawing.Point(836, 624);
- this.conveyor_1006.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1006.Name = "conveyor_1006";
- this.conveyor_1006.Size = new System.Drawing.Size(76, 39);
- this.conveyor_1006.TabIndex = 134;
- //
- // conveyor_1118
- //
- this.conveyor_1118.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1118.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1118.Location = new System.Drawing.Point(950, 663);
- this.conveyor_1118.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1118.Name = "conveyor_1118";
- this.conveyor_1118.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1118.TabIndex = 135;
- //
- // conveyor_1115
- //
- this.conveyor_1115.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1115.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1115.Location = new System.Drawing.Point(1026, 663);
- this.conveyor_1115.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1115.Name = "conveyor_1115";
- this.conveyor_1115.Size = new System.Drawing.Size(38, 39);
- this.conveyor_1115.TabIndex = 136;
- //
- // locationPostion21
- //
- this.locationPostion21.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion21.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion21.BackgroundImage")));
- this.locationPostion21.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion21.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion21.Location = new System.Drawing.Point(190, 234);
- this.locationPostion21.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion21.Name = "locationPostion21";
- this.locationPostion21.Size = new System.Drawing.Size(39, 39);
- this.locationPostion21.TabIndex = 137;
- //
- // locationPostion22
- //
- this.locationPostion22.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion22.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion22.BackgroundImage")));
- this.locationPostion22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion22.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion22.Location = new System.Drawing.Point(229, 234);
- this.locationPostion22.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion22.Name = "locationPostion22";
- this.locationPostion22.Size = new System.Drawing.Size(37, 39);
- this.locationPostion22.TabIndex = 138;
- //
- // locationPostion23
- //
- this.locationPostion23.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion23.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion23.BackgroundImage")));
- this.locationPostion23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion23.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion23.Location = new System.Drawing.Point(266, 234);
- this.locationPostion23.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion23.Name = "locationPostion23";
- this.locationPostion23.Size = new System.Drawing.Size(38, 39);
- this.locationPostion23.TabIndex = 139;
- //
- // locationPostion24
- //
- this.locationPostion24.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion24.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion24.BackgroundImage")));
- this.locationPostion24.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion24.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion24.Location = new System.Drawing.Point(304, 234);
- this.locationPostion24.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion24.Name = "locationPostion24";
- this.locationPostion24.Size = new System.Drawing.Size(38, 39);
- this.locationPostion24.TabIndex = 140;
- //
- // locationPostion25
- //
- this.locationPostion25.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion25.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion25.BackgroundImage")));
- this.locationPostion25.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion25.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion25.Location = new System.Drawing.Point(342, 234);
- this.locationPostion25.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion25.Name = "locationPostion25";
- this.locationPostion25.Size = new System.Drawing.Size(38, 39);
- this.locationPostion25.TabIndex = 141;
- //
- // locationPostion26
- //
- this.locationPostion26.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion26.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion26.BackgroundImage")));
- this.locationPostion26.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion26.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion26.Location = new System.Drawing.Point(380, 234);
- this.locationPostion26.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion26.Name = "locationPostion26";
- this.locationPostion26.Size = new System.Drawing.Size(38, 39);
- this.locationPostion26.TabIndex = 142;
- //
- // locationPostion27
- //
- this.locationPostion27.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion27.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion27.BackgroundImage")));
- this.locationPostion27.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion27.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion27.Location = new System.Drawing.Point(418, 234);
- this.locationPostion27.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion27.Name = "locationPostion27";
- this.locationPostion27.Size = new System.Drawing.Size(38, 39);
- this.locationPostion27.TabIndex = 143;
- //
- // locationPostion28
- //
- this.locationPostion28.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion28.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion28.BackgroundImage")));
- this.locationPostion28.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion28.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion28.Location = new System.Drawing.Point(456, 234);
- this.locationPostion28.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion28.Name = "locationPostion28";
- this.locationPostion28.Size = new System.Drawing.Size(38, 39);
- this.locationPostion28.TabIndex = 144;
- //
- // locationPostion29
- //
- this.locationPostion29.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion29.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion29.BackgroundImage")));
- this.locationPostion29.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion29.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion29.Location = new System.Drawing.Point(494, 234);
- this.locationPostion29.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion29.Name = "locationPostion29";
- this.locationPostion29.Size = new System.Drawing.Size(38, 39);
- this.locationPostion29.TabIndex = 145;
- //
- // locationPostion210
- //
- this.locationPostion210.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion210.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion210.BackgroundImage")));
- this.locationPostion210.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion210.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion210.Location = new System.Drawing.Point(532, 234);
- this.locationPostion210.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion210.Name = "locationPostion210";
- this.locationPostion210.Size = new System.Drawing.Size(38, 39);
- this.locationPostion210.TabIndex = 146;
- //
- // locationPostion211
- //
- this.locationPostion211.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion211.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion211.BackgroundImage")));
- this.locationPostion211.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion211.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion211.Location = new System.Drawing.Point(570, 234);
- this.locationPostion211.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion211.Name = "locationPostion211";
- this.locationPostion211.Size = new System.Drawing.Size(38, 39);
- this.locationPostion211.TabIndex = 147;
- //
- // locationPostion212
- //
- this.locationPostion212.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion212.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion212.BackgroundImage")));
- this.locationPostion212.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion212.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion212.Location = new System.Drawing.Point(608, 234);
- this.locationPostion212.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion212.Name = "locationPostion212";
- this.locationPostion212.Size = new System.Drawing.Size(38, 39);
- this.locationPostion212.TabIndex = 148;
- //
- // locationPostion213
- //
- this.locationPostion213.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion213.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion213.BackgroundImage")));
- this.locationPostion213.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion213.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion213.Location = new System.Drawing.Point(646, 234);
- this.locationPostion213.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion213.Name = "locationPostion213";
- this.locationPostion213.Size = new System.Drawing.Size(38, 39);
- this.locationPostion213.TabIndex = 149;
- //
- // locationPostion214
- //
- this.locationPostion214.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion214.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion214.BackgroundImage")));
- this.locationPostion214.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion214.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion214.Location = new System.Drawing.Point(684, 234);
- this.locationPostion214.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion214.Name = "locationPostion214";
- this.locationPostion214.Size = new System.Drawing.Size(38, 39);
- this.locationPostion214.TabIndex = 150;
- //
- // locationPostion215
- //
- this.locationPostion215.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion215.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion215.BackgroundImage")));
- this.locationPostion215.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion215.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion215.Location = new System.Drawing.Point(722, 234);
- this.locationPostion215.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion215.Name = "locationPostion215";
- this.locationPostion215.Size = new System.Drawing.Size(38, 39);
- this.locationPostion215.TabIndex = 151;
- //
- // locationPostion216
- //
- this.locationPostion216.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion216.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion216.BackgroundImage")));
- this.locationPostion216.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion216.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion216.Location = new System.Drawing.Point(760, 234);
- this.locationPostion216.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion216.Name = "locationPostion216";
- this.locationPostion216.Size = new System.Drawing.Size(38, 39);
- this.locationPostion216.TabIndex = 152;
- //
- // locationPostion217
- //
- this.locationPostion217.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion217.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion217.BackgroundImage")));
- this.locationPostion217.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion217.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion217.Location = new System.Drawing.Point(798, 234);
- this.locationPostion217.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion217.Name = "locationPostion217";
- this.locationPostion217.Size = new System.Drawing.Size(38, 39);
- this.locationPostion217.TabIndex = 153;
- //
- // tableCellLabel210
- //
- this.tableCellLabel210.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel210.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel210.BackgroundImage")));
- this.tableCellLabel210.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel210, 7);
- this.tableCellLabel210.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel210.Location = new System.Drawing.Point(190, 273);
- this.tableCellLabel210.Margin = new System.Windows.Forms.Padding(0);
- this.tableCellLabel210.Name = "tableCellLabel210";
- this.tableCellLabel210.Size = new System.Drawing.Size(266, 39);
- this.tableCellLabel210.TabIndex = 154;
- //
- // srm03
- //
- this.srm03.BackColor = System.Drawing.Color.Transparent;
- this.srm03.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.myTableLayoutPanel1.SetColumnSpan(this.srm03, 2);
- this.srm03.Dock = System.Windows.Forms.DockStyle.Fill;
- this.srm03.Location = new System.Drawing.Point(456, 273);
- this.srm03.Margin = new System.Windows.Forms.Padding(0);
- this.srm03.Name = "srm03";
- this.srm03.Size = new System.Drawing.Size(76, 39);
- this.srm03.TabIndex = 155;
- //
- // tableCellLabel211
- //
- this.tableCellLabel211.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel211.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel211.BackgroundImage")));
- this.tableCellLabel211.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel211, 8);
- this.tableCellLabel211.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel211.Location = new System.Drawing.Point(532, 273);
- this.tableCellLabel211.Margin = new System.Windows.Forms.Padding(0);
- this.tableCellLabel211.Name = "tableCellLabel211";
- this.tableCellLabel211.Size = new System.Drawing.Size(304, 39);
- this.tableCellLabel211.TabIndex = 156;
- //
- // tableCellLabel212
- //
- this.tableCellLabel212.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel212.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel212.BackgroundImage")));
- this.tableCellLabel212.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel212, 7);
- this.tableCellLabel212.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel212.Location = new System.Drawing.Point(190, 429);
- this.tableCellLabel212.Margin = new System.Windows.Forms.Padding(0);
- this.tableCellLabel212.Name = "tableCellLabel212";
- this.tableCellLabel212.Size = new System.Drawing.Size(266, 39);
- this.tableCellLabel212.TabIndex = 157;
- //
- // tableCellLabel213
- //
- this.tableCellLabel213.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel213.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel213.BackgroundImage")));
- this.tableCellLabel213.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel213, 8);
- this.tableCellLabel213.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel213.Location = new System.Drawing.Point(532, 429);
- this.tableCellLabel213.Margin = new System.Windows.Forms.Padding(0);
- this.tableCellLabel213.Name = "tableCellLabel213";
- this.tableCellLabel213.Size = new System.Drawing.Size(304, 39);
- this.tableCellLabel213.TabIndex = 158;
- //
- // srm02
- //
- this.srm02.BackColor = System.Drawing.Color.Transparent;
- this.srm02.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.myTableLayoutPanel1.SetColumnSpan(this.srm02, 2);
- this.srm02.Dock = System.Windows.Forms.DockStyle.Fill;
- this.srm02.Location = new System.Drawing.Point(456, 429);
- this.srm02.Margin = new System.Windows.Forms.Padding(0);
- this.srm02.Name = "srm02";
- this.srm02.Size = new System.Drawing.Size(76, 39);
- this.srm02.TabIndex = 159;
- //
- // tableCellLabel214
- //
- this.tableCellLabel214.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel214.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel214.BackgroundImage")));
- this.tableCellLabel214.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel214, 7);
- this.tableCellLabel214.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel214.Location = new System.Drawing.Point(190, 585);
- this.tableCellLabel214.Margin = new System.Windows.Forms.Padding(0);
- this.tableCellLabel214.Name = "tableCellLabel214";
- this.tableCellLabel214.Size = new System.Drawing.Size(266, 39);
- this.tableCellLabel214.TabIndex = 160;
- //
- // tableCellLabel215
- //
- this.tableCellLabel215.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel215.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel215.BackgroundImage")));
- this.tableCellLabel215.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel215, 8);
- this.tableCellLabel215.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel215.Location = new System.Drawing.Point(532, 585);
- this.tableCellLabel215.Margin = new System.Windows.Forms.Padding(0);
- this.tableCellLabel215.Name = "tableCellLabel215";
- this.tableCellLabel215.Size = new System.Drawing.Size(304, 39);
- this.tableCellLabel215.TabIndex = 161;
- //
- // srm01
- //
- this.srm01.BackColor = System.Drawing.Color.Transparent;
- this.srm01.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.myTableLayoutPanel1.SetColumnSpan(this.srm01, 2);
- this.srm01.Dock = System.Windows.Forms.DockStyle.Fill;
- this.srm01.Location = new System.Drawing.Point(456, 585);
- this.srm01.Margin = new System.Windows.Forms.Padding(0);
- this.srm01.Name = "srm01";
- this.srm01.Size = new System.Drawing.Size(76, 39);
- this.srm01.TabIndex = 162;
- //
- // locationPostion218
- //
- this.locationPostion218.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion218.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion218.BackgroundImage")));
- this.locationPostion218.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion218.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion218.Location = new System.Drawing.Point(190, 312);
- this.locationPostion218.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion218.Name = "locationPostion218";
- this.locationPostion218.Size = new System.Drawing.Size(39, 39);
- this.locationPostion218.TabIndex = 163;
- //
- // locationPostion219
- //
- this.locationPostion219.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion219.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion219.BackgroundImage")));
- this.locationPostion219.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion219.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion219.Location = new System.Drawing.Point(229, 312);
- this.locationPostion219.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion219.Name = "locationPostion219";
- this.locationPostion219.Size = new System.Drawing.Size(37, 39);
- this.locationPostion219.TabIndex = 164;
- //
- // locationPostion220
- //
- this.locationPostion220.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion220.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion220.BackgroundImage")));
- this.locationPostion220.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion220.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion220.Location = new System.Drawing.Point(266, 312);
- this.locationPostion220.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion220.Name = "locationPostion220";
- this.locationPostion220.Size = new System.Drawing.Size(38, 39);
- this.locationPostion220.TabIndex = 165;
- //
- // locationPostion221
- //
- this.locationPostion221.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion221.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion221.BackgroundImage")));
- this.locationPostion221.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion221.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion221.Location = new System.Drawing.Point(304, 312);
- this.locationPostion221.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion221.Name = "locationPostion221";
- this.locationPostion221.Size = new System.Drawing.Size(38, 39);
- this.locationPostion221.TabIndex = 166;
- //
- // locationPostion222
- //
- this.locationPostion222.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion222.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion222.BackgroundImage")));
- this.locationPostion222.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion222.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion222.Location = new System.Drawing.Point(342, 312);
- this.locationPostion222.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion222.Name = "locationPostion222";
- this.locationPostion222.Size = new System.Drawing.Size(38, 39);
- this.locationPostion222.TabIndex = 167;
- //
- // locationPostion223
- //
- this.locationPostion223.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion223.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion223.BackgroundImage")));
- this.locationPostion223.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion223.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion223.Location = new System.Drawing.Point(380, 312);
- this.locationPostion223.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion223.Name = "locationPostion223";
- this.locationPostion223.Size = new System.Drawing.Size(38, 39);
- this.locationPostion223.TabIndex = 168;
- //
- // locationPostion224
- //
- this.locationPostion224.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion224.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion224.BackgroundImage")));
- this.locationPostion224.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion224.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion224.Location = new System.Drawing.Point(418, 312);
- this.locationPostion224.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion224.Name = "locationPostion224";
- this.locationPostion224.Size = new System.Drawing.Size(38, 39);
- this.locationPostion224.TabIndex = 169;
- //
- // locationPostion225
- //
- this.locationPostion225.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion225.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion225.BackgroundImage")));
- this.locationPostion225.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion225.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion225.Location = new System.Drawing.Point(456, 312);
- this.locationPostion225.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion225.Name = "locationPostion225";
- this.locationPostion225.Size = new System.Drawing.Size(38, 39);
- this.locationPostion225.TabIndex = 170;
- //
- // locationPostion226
- //
- this.locationPostion226.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion226.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion226.BackgroundImage")));
- this.locationPostion226.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion226.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion226.Location = new System.Drawing.Point(494, 312);
- this.locationPostion226.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion226.Name = "locationPostion226";
- this.locationPostion226.Size = new System.Drawing.Size(38, 39);
- this.locationPostion226.TabIndex = 171;
- //
- // locationPostion227
- //
- this.locationPostion227.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion227.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion227.BackgroundImage")));
- this.locationPostion227.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion227.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion227.Location = new System.Drawing.Point(532, 312);
- this.locationPostion227.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion227.Name = "locationPostion227";
- this.locationPostion227.Size = new System.Drawing.Size(38, 39);
- this.locationPostion227.TabIndex = 172;
- //
- // locationPostion228
- //
- this.locationPostion228.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion228.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion228.BackgroundImage")));
- this.locationPostion228.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion228.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion228.Location = new System.Drawing.Point(570, 312);
- this.locationPostion228.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion228.Name = "locationPostion228";
- this.locationPostion228.Size = new System.Drawing.Size(38, 39);
- this.locationPostion228.TabIndex = 173;
- //
- // locationPostion229
- //
- this.locationPostion229.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion229.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion229.BackgroundImage")));
- this.locationPostion229.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion229.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion229.Location = new System.Drawing.Point(608, 312);
- this.locationPostion229.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion229.Name = "locationPostion229";
- this.locationPostion229.Size = new System.Drawing.Size(38, 39);
- this.locationPostion229.TabIndex = 174;
- //
- // locationPostion230
- //
- this.locationPostion230.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion230.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion230.BackgroundImage")));
- this.locationPostion230.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion230.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion230.Location = new System.Drawing.Point(646, 312);
- this.locationPostion230.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion230.Name = "locationPostion230";
- this.locationPostion230.Size = new System.Drawing.Size(38, 39);
- this.locationPostion230.TabIndex = 175;
- //
- // locationPostion231
- //
- this.locationPostion231.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion231.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion231.BackgroundImage")));
- this.locationPostion231.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion231.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion231.Location = new System.Drawing.Point(684, 312);
- this.locationPostion231.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion231.Name = "locationPostion231";
- this.locationPostion231.Size = new System.Drawing.Size(38, 39);
- this.locationPostion231.TabIndex = 176;
- //
- // locationPostion232
- //
- this.locationPostion232.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion232.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion232.BackgroundImage")));
- this.locationPostion232.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion232.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion232.Location = new System.Drawing.Point(722, 312);
- this.locationPostion232.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion232.Name = "locationPostion232";
- this.locationPostion232.Size = new System.Drawing.Size(38, 39);
- this.locationPostion232.TabIndex = 177;
- //
- // locationPostion233
- //
- this.locationPostion233.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion233.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion233.BackgroundImage")));
- this.locationPostion233.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion233.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion233.Location = new System.Drawing.Point(760, 312);
- this.locationPostion233.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion233.Name = "locationPostion233";
- this.locationPostion233.Size = new System.Drawing.Size(38, 39);
- this.locationPostion233.TabIndex = 178;
- //
- // locationPostion234
- //
- this.locationPostion234.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion234.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion234.BackgroundImage")));
- this.locationPostion234.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion234.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion234.Location = new System.Drawing.Point(798, 312);
- this.locationPostion234.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion234.Name = "locationPostion234";
- this.locationPostion234.Size = new System.Drawing.Size(38, 39);
- this.locationPostion234.TabIndex = 179;
- //
- // locationPostion235
- //
- this.locationPostion235.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion235.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion235.BackgroundImage")));
- this.locationPostion235.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion235.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion235.Location = new System.Drawing.Point(190, 390);
- this.locationPostion235.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion235.Name = "locationPostion235";
- this.locationPostion235.Size = new System.Drawing.Size(39, 39);
- this.locationPostion235.TabIndex = 180;
- //
- // locationPostion236
- //
- this.locationPostion236.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion236.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion236.BackgroundImage")));
- this.locationPostion236.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion236.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion236.Location = new System.Drawing.Point(229, 390);
- this.locationPostion236.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion236.Name = "locationPostion236";
- this.locationPostion236.Size = new System.Drawing.Size(37, 39);
- this.locationPostion236.TabIndex = 181;
- //
- // locationPostion237
- //
- this.locationPostion237.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion237.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion237.BackgroundImage")));
- this.locationPostion237.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion237.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion237.Location = new System.Drawing.Point(266, 390);
- this.locationPostion237.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion237.Name = "locationPostion237";
- this.locationPostion237.Size = new System.Drawing.Size(38, 39);
- this.locationPostion237.TabIndex = 182;
- //
- // locationPostion238
- //
- this.locationPostion238.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion238.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion238.BackgroundImage")));
- this.locationPostion238.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion238.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion238.Location = new System.Drawing.Point(304, 390);
- this.locationPostion238.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion238.Name = "locationPostion238";
- this.locationPostion238.Size = new System.Drawing.Size(38, 39);
- this.locationPostion238.TabIndex = 183;
- //
- // locationPostion239
- //
- this.locationPostion239.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion239.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion239.BackgroundImage")));
- this.locationPostion239.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion239.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion239.Location = new System.Drawing.Point(342, 390);
- this.locationPostion239.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion239.Name = "locationPostion239";
- this.locationPostion239.Size = new System.Drawing.Size(38, 39);
- this.locationPostion239.TabIndex = 184;
- //
- // locationPostion240
- //
- this.locationPostion240.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion240.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion240.BackgroundImage")));
- this.locationPostion240.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion240.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion240.Location = new System.Drawing.Point(380, 390);
- this.locationPostion240.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion240.Name = "locationPostion240";
- this.locationPostion240.Size = new System.Drawing.Size(38, 39);
- this.locationPostion240.TabIndex = 185;
- //
- // locationPostion241
- //
- this.locationPostion241.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion241.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion241.BackgroundImage")));
- this.locationPostion241.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion241.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion241.Location = new System.Drawing.Point(418, 390);
- this.locationPostion241.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion241.Name = "locationPostion241";
- this.locationPostion241.Size = new System.Drawing.Size(38, 39);
- this.locationPostion241.TabIndex = 186;
- //
- // locationPostion242
- //
- this.locationPostion242.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion242.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion242.BackgroundImage")));
- this.locationPostion242.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion242.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion242.Location = new System.Drawing.Point(456, 390);
- this.locationPostion242.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion242.Name = "locationPostion242";
- this.locationPostion242.Size = new System.Drawing.Size(38, 39);
- this.locationPostion242.TabIndex = 187;
- //
- // locationPostion243
- //
- this.locationPostion243.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion243.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion243.BackgroundImage")));
- this.locationPostion243.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion243.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion243.Location = new System.Drawing.Point(494, 390);
- this.locationPostion243.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion243.Name = "locationPostion243";
- this.locationPostion243.Size = new System.Drawing.Size(38, 39);
- this.locationPostion243.TabIndex = 188;
- //
- // locationPostion244
- //
- this.locationPostion244.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion244.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion244.BackgroundImage")));
- this.locationPostion244.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion244.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion244.Location = new System.Drawing.Point(532, 390);
- this.locationPostion244.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion244.Name = "locationPostion244";
- this.locationPostion244.Size = new System.Drawing.Size(38, 39);
- this.locationPostion244.TabIndex = 189;
- //
- // locationPostion245
- //
- this.locationPostion245.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion245.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion245.BackgroundImage")));
- this.locationPostion245.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion245.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion245.Location = new System.Drawing.Point(570, 390);
- this.locationPostion245.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion245.Name = "locationPostion245";
- this.locationPostion245.Size = new System.Drawing.Size(38, 39);
- this.locationPostion245.TabIndex = 190;
- //
- // locationPostion246
- //
- this.locationPostion246.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion246.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion246.BackgroundImage")));
- this.locationPostion246.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion246.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion246.Location = new System.Drawing.Point(608, 390);
- this.locationPostion246.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion246.Name = "locationPostion246";
- this.locationPostion246.Size = new System.Drawing.Size(38, 39);
- this.locationPostion246.TabIndex = 191;
- //
- // locationPostion247
- //
- this.locationPostion247.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion247.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion247.BackgroundImage")));
- this.locationPostion247.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion247.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion247.Location = new System.Drawing.Point(646, 390);
- this.locationPostion247.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion247.Name = "locationPostion247";
- this.locationPostion247.Size = new System.Drawing.Size(38, 39);
- this.locationPostion247.TabIndex = 192;
- //
- // locationPostion248
- //
- this.locationPostion248.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion248.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion248.BackgroundImage")));
- this.locationPostion248.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion248.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion248.Location = new System.Drawing.Point(684, 390);
- this.locationPostion248.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion248.Name = "locationPostion248";
- this.locationPostion248.Size = new System.Drawing.Size(38, 39);
- this.locationPostion248.TabIndex = 193;
- //
- // locationPostion249
- //
- this.locationPostion249.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion249.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion249.BackgroundImage")));
- this.locationPostion249.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion249.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion249.Location = new System.Drawing.Point(722, 390);
- this.locationPostion249.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion249.Name = "locationPostion249";
- this.locationPostion249.Size = new System.Drawing.Size(38, 39);
- this.locationPostion249.TabIndex = 194;
- //
- // locationPostion250
- //
- this.locationPostion250.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion250.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion250.BackgroundImage")));
- this.locationPostion250.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion250.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion250.Location = new System.Drawing.Point(760, 390);
- this.locationPostion250.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion250.Name = "locationPostion250";
- this.locationPostion250.Size = new System.Drawing.Size(38, 39);
- this.locationPostion250.TabIndex = 195;
- //
- // locationPostion251
- //
- this.locationPostion251.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion251.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion251.BackgroundImage")));
- this.locationPostion251.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion251.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion251.Location = new System.Drawing.Point(798, 390);
- this.locationPostion251.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion251.Name = "locationPostion251";
- this.locationPostion251.Size = new System.Drawing.Size(38, 39);
- this.locationPostion251.TabIndex = 196;
- //
- // locationPostion252
- //
- this.locationPostion252.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion252.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion252.BackgroundImage")));
- this.locationPostion252.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion252.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion252.Location = new System.Drawing.Point(190, 468);
- this.locationPostion252.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion252.Name = "locationPostion252";
- this.locationPostion252.Size = new System.Drawing.Size(39, 39);
- this.locationPostion252.TabIndex = 197;
- //
- // locationPostion253
- //
- this.locationPostion253.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion253.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion253.BackgroundImage")));
- this.locationPostion253.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion253.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion253.Location = new System.Drawing.Point(229, 468);
- this.locationPostion253.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion253.Name = "locationPostion253";
- this.locationPostion253.Size = new System.Drawing.Size(37, 39);
- this.locationPostion253.TabIndex = 198;
- //
- // locationPostion254
- //
- this.locationPostion254.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion254.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion254.BackgroundImage")));
- this.locationPostion254.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion254.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion254.Location = new System.Drawing.Point(266, 468);
- this.locationPostion254.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion254.Name = "locationPostion254";
- this.locationPostion254.Size = new System.Drawing.Size(38, 39);
- this.locationPostion254.TabIndex = 199;
- //
- // locationPostion255
- //
- this.locationPostion255.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion255.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion255.BackgroundImage")));
- this.locationPostion255.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion255.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion255.Location = new System.Drawing.Point(304, 468);
- this.locationPostion255.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion255.Name = "locationPostion255";
- this.locationPostion255.Size = new System.Drawing.Size(38, 39);
- this.locationPostion255.TabIndex = 200;
- //
- // locationPostion256
- //
- this.locationPostion256.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion256.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion256.BackgroundImage")));
- this.locationPostion256.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion256.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion256.Location = new System.Drawing.Point(342, 468);
- this.locationPostion256.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion256.Name = "locationPostion256";
- this.locationPostion256.Size = new System.Drawing.Size(38, 39);
- this.locationPostion256.TabIndex = 201;
- //
- // locationPostion257
- //
- this.locationPostion257.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion257.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion257.BackgroundImage")));
- this.locationPostion257.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion257.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion257.Location = new System.Drawing.Point(380, 468);
- this.locationPostion257.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion257.Name = "locationPostion257";
- this.locationPostion257.Size = new System.Drawing.Size(38, 39);
- this.locationPostion257.TabIndex = 202;
- //
- // locationPostion258
- //
- this.locationPostion258.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion258.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion258.BackgroundImage")));
- this.locationPostion258.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion258.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion258.Location = new System.Drawing.Point(418, 468);
- this.locationPostion258.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion258.Name = "locationPostion258";
- this.locationPostion258.Size = new System.Drawing.Size(38, 39);
- this.locationPostion258.TabIndex = 203;
- //
- // locationPostion259
- //
- this.locationPostion259.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion259.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion259.BackgroundImage")));
- this.locationPostion259.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion259.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion259.Location = new System.Drawing.Point(456, 468);
- this.locationPostion259.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion259.Name = "locationPostion259";
- this.locationPostion259.Size = new System.Drawing.Size(38, 39);
- this.locationPostion259.TabIndex = 204;
- //
- // locationPostion260
- //
- this.locationPostion260.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion260.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion260.BackgroundImage")));
- this.locationPostion260.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion260.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion260.Location = new System.Drawing.Point(494, 468);
- this.locationPostion260.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion260.Name = "locationPostion260";
- this.locationPostion260.Size = new System.Drawing.Size(38, 39);
- this.locationPostion260.TabIndex = 205;
- //
- // locationPostion261
- //
- this.locationPostion261.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion261.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion261.BackgroundImage")));
- this.locationPostion261.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion261.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion261.Location = new System.Drawing.Point(532, 468);
- this.locationPostion261.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion261.Name = "locationPostion261";
- this.locationPostion261.Size = new System.Drawing.Size(38, 39);
- this.locationPostion261.TabIndex = 206;
- //
- // locationPostion262
- //
- this.locationPostion262.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion262.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion262.BackgroundImage")));
- this.locationPostion262.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion262.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion262.Location = new System.Drawing.Point(570, 468);
- this.locationPostion262.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion262.Name = "locationPostion262";
- this.locationPostion262.Size = new System.Drawing.Size(38, 39);
- this.locationPostion262.TabIndex = 207;
- //
- // locationPostion263
- //
- this.locationPostion263.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion263.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion263.BackgroundImage")));
- this.locationPostion263.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion263.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion263.Location = new System.Drawing.Point(608, 468);
- this.locationPostion263.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion263.Name = "locationPostion263";
- this.locationPostion263.Size = new System.Drawing.Size(38, 39);
- this.locationPostion263.TabIndex = 208;
- //
- // locationPostion264
- //
- this.locationPostion264.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion264.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion264.BackgroundImage")));
- this.locationPostion264.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion264.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion264.Location = new System.Drawing.Point(646, 468);
- this.locationPostion264.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion264.Name = "locationPostion264";
- this.locationPostion264.Size = new System.Drawing.Size(38, 39);
- this.locationPostion264.TabIndex = 209;
- //
- // locationPostion265
- //
- this.locationPostion265.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion265.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion265.BackgroundImage")));
- this.locationPostion265.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion265.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion265.Location = new System.Drawing.Point(684, 468);
- this.locationPostion265.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion265.Name = "locationPostion265";
- this.locationPostion265.Size = new System.Drawing.Size(38, 39);
- this.locationPostion265.TabIndex = 210;
- //
- // locationPostion266
- //
- this.locationPostion266.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion266.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion266.BackgroundImage")));
- this.locationPostion266.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion266.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion266.Location = new System.Drawing.Point(722, 468);
- this.locationPostion266.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion266.Name = "locationPostion266";
- this.locationPostion266.Size = new System.Drawing.Size(38, 39);
- this.locationPostion266.TabIndex = 211;
- //
- // locationPostion267
- //
- this.locationPostion267.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion267.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion267.BackgroundImage")));
- this.locationPostion267.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion267.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion267.Location = new System.Drawing.Point(760, 468);
- this.locationPostion267.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion267.Name = "locationPostion267";
- this.locationPostion267.Size = new System.Drawing.Size(38, 39);
- this.locationPostion267.TabIndex = 212;
- //
- // locationPostion268
- //
- this.locationPostion268.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion268.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion268.BackgroundImage")));
- this.locationPostion268.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion268.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion268.Location = new System.Drawing.Point(798, 468);
- this.locationPostion268.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion268.Name = "locationPostion268";
- this.locationPostion268.Size = new System.Drawing.Size(38, 39);
- this.locationPostion268.TabIndex = 213;
- //
- // locationPostion269
- //
- this.locationPostion269.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion269.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion269.BackgroundImage")));
- this.locationPostion269.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion269.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion269.Location = new System.Drawing.Point(190, 546);
- this.locationPostion269.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion269.Name = "locationPostion269";
- this.locationPostion269.Size = new System.Drawing.Size(39, 39);
- this.locationPostion269.TabIndex = 214;
- //
- // locationPostion270
- //
- this.locationPostion270.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion270.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion270.BackgroundImage")));
- this.locationPostion270.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion270.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion270.Location = new System.Drawing.Point(229, 546);
- this.locationPostion270.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion270.Name = "locationPostion270";
- this.locationPostion270.Size = new System.Drawing.Size(37, 39);
- this.locationPostion270.TabIndex = 215;
- //
- // locationPostion271
- //
- this.locationPostion271.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion271.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion271.BackgroundImage")));
- this.locationPostion271.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion271.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion271.Location = new System.Drawing.Point(266, 546);
- this.locationPostion271.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion271.Name = "locationPostion271";
- this.locationPostion271.Size = new System.Drawing.Size(38, 39);
- this.locationPostion271.TabIndex = 216;
- //
- // locationPostion272
- //
- this.locationPostion272.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion272.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion272.BackgroundImage")));
- this.locationPostion272.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion272.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion272.Location = new System.Drawing.Point(304, 546);
- this.locationPostion272.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion272.Name = "locationPostion272";
- this.locationPostion272.Size = new System.Drawing.Size(38, 39);
- this.locationPostion272.TabIndex = 217;
- //
- // locationPostion273
- //
- this.locationPostion273.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion273.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion273.BackgroundImage")));
- this.locationPostion273.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion273.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion273.Location = new System.Drawing.Point(342, 546);
- this.locationPostion273.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion273.Name = "locationPostion273";
- this.locationPostion273.Size = new System.Drawing.Size(38, 39);
- this.locationPostion273.TabIndex = 218;
- //
- // locationPostion274
- //
- this.locationPostion274.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion274.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion274.BackgroundImage")));
- this.locationPostion274.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion274.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion274.Location = new System.Drawing.Point(380, 546);
- this.locationPostion274.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion274.Name = "locationPostion274";
- this.locationPostion274.Size = new System.Drawing.Size(38, 39);
- this.locationPostion274.TabIndex = 219;
- //
- // locationPostion275
- //
- this.locationPostion275.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion275.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion275.BackgroundImage")));
- this.locationPostion275.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion275.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion275.Location = new System.Drawing.Point(418, 546);
- this.locationPostion275.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion275.Name = "locationPostion275";
- this.locationPostion275.Size = new System.Drawing.Size(38, 39);
- this.locationPostion275.TabIndex = 220;
- //
- // locationPostion276
- //
- this.locationPostion276.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion276.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion276.BackgroundImage")));
- this.locationPostion276.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion276.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion276.Location = new System.Drawing.Point(456, 546);
- this.locationPostion276.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion276.Name = "locationPostion276";
- this.locationPostion276.Size = new System.Drawing.Size(38, 39);
- this.locationPostion276.TabIndex = 221;
- //
- // locationPostion277
- //
- this.locationPostion277.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion277.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion277.BackgroundImage")));
- this.locationPostion277.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion277.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion277.Location = new System.Drawing.Point(494, 546);
- this.locationPostion277.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion277.Name = "locationPostion277";
- this.locationPostion277.Size = new System.Drawing.Size(38, 39);
- this.locationPostion277.TabIndex = 222;
- //
- // locationPostion278
- //
- this.locationPostion278.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion278.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion278.BackgroundImage")));
- this.locationPostion278.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion278.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion278.Location = new System.Drawing.Point(532, 546);
- this.locationPostion278.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion278.Name = "locationPostion278";
- this.locationPostion278.Size = new System.Drawing.Size(38, 39);
- this.locationPostion278.TabIndex = 223;
- //
- // locationPostion279
- //
- this.locationPostion279.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion279.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion279.BackgroundImage")));
- this.locationPostion279.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion279.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion279.Location = new System.Drawing.Point(570, 546);
- this.locationPostion279.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion279.Name = "locationPostion279";
- this.locationPostion279.Size = new System.Drawing.Size(38, 39);
- this.locationPostion279.TabIndex = 224;
- //
- // locationPostion280
- //
- this.locationPostion280.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion280.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion280.BackgroundImage")));
- this.locationPostion280.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion280.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion280.Location = new System.Drawing.Point(608, 546);
- this.locationPostion280.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion280.Name = "locationPostion280";
- this.locationPostion280.Size = new System.Drawing.Size(38, 39);
- this.locationPostion280.TabIndex = 225;
- //
- // locationPostion281
- //
- this.locationPostion281.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion281.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion281.BackgroundImage")));
- this.locationPostion281.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion281.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion281.Location = new System.Drawing.Point(646, 546);
- this.locationPostion281.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion281.Name = "locationPostion281";
- this.locationPostion281.Size = new System.Drawing.Size(38, 39);
- this.locationPostion281.TabIndex = 226;
- //
- // locationPostion282
- //
- this.locationPostion282.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion282.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion282.BackgroundImage")));
- this.locationPostion282.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion282.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion282.Location = new System.Drawing.Point(684, 546);
- this.locationPostion282.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion282.Name = "locationPostion282";
- this.locationPostion282.Size = new System.Drawing.Size(38, 39);
- this.locationPostion282.TabIndex = 227;
- //
- // locationPostion283
- //
- this.locationPostion283.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion283.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion283.BackgroundImage")));
- this.locationPostion283.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion283.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion283.Location = new System.Drawing.Point(722, 546);
- this.locationPostion283.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion283.Name = "locationPostion283";
- this.locationPostion283.Size = new System.Drawing.Size(38, 39);
- this.locationPostion283.TabIndex = 228;
- //
- // locationPostion284
- //
- this.locationPostion284.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion284.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion284.BackgroundImage")));
- this.locationPostion284.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion284.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion284.Location = new System.Drawing.Point(760, 546);
- this.locationPostion284.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion284.Name = "locationPostion284";
- this.locationPostion284.Size = new System.Drawing.Size(38, 39);
- this.locationPostion284.TabIndex = 229;
- //
- // locationPostion285
- //
- this.locationPostion285.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion285.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion285.BackgroundImage")));
- this.locationPostion285.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion285.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion285.Location = new System.Drawing.Point(798, 546);
- this.locationPostion285.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion285.Name = "locationPostion285";
- this.locationPostion285.Size = new System.Drawing.Size(38, 39);
- this.locationPostion285.TabIndex = 230;
- //
- // locationPostion286
- //
- this.locationPostion286.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion286.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion286.BackgroundImage")));
- this.locationPostion286.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion286.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion286.Location = new System.Drawing.Point(190, 624);
- this.locationPostion286.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion286.Name = "locationPostion286";
- this.locationPostion286.Size = new System.Drawing.Size(39, 39);
- this.locationPostion286.TabIndex = 231;
- //
- // locationPostion287
- //
- this.locationPostion287.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion287.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion287.BackgroundImage")));
- this.locationPostion287.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion287.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion287.Location = new System.Drawing.Point(229, 624);
- this.locationPostion287.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion287.Name = "locationPostion287";
- this.locationPostion287.Size = new System.Drawing.Size(37, 39);
- this.locationPostion287.TabIndex = 232;
- //
- // locationPostion288
- //
- this.locationPostion288.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion288.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion288.BackgroundImage")));
- this.locationPostion288.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion288.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion288.Location = new System.Drawing.Point(266, 624);
- this.locationPostion288.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion288.Name = "locationPostion288";
- this.locationPostion288.Size = new System.Drawing.Size(38, 39);
- this.locationPostion288.TabIndex = 233;
- //
- // locationPostion289
- //
- this.locationPostion289.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion289.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion289.BackgroundImage")));
- this.locationPostion289.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion289.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion289.Location = new System.Drawing.Point(304, 624);
- this.locationPostion289.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion289.Name = "locationPostion289";
- this.locationPostion289.Size = new System.Drawing.Size(38, 39);
- this.locationPostion289.TabIndex = 234;
- //
- // locationPostion290
- //
- this.locationPostion290.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion290.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion290.BackgroundImage")));
- this.locationPostion290.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion290.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion290.Location = new System.Drawing.Point(342, 624);
- this.locationPostion290.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion290.Name = "locationPostion290";
- this.locationPostion290.Size = new System.Drawing.Size(38, 39);
- this.locationPostion290.TabIndex = 235;
- //
- // locationPostion291
- //
- this.locationPostion291.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion291.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion291.BackgroundImage")));
- this.locationPostion291.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion291.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion291.Location = new System.Drawing.Point(380, 624);
- this.locationPostion291.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion291.Name = "locationPostion291";
- this.locationPostion291.Size = new System.Drawing.Size(38, 39);
- this.locationPostion291.TabIndex = 236;
- //
- // locationPostion292
- //
- this.locationPostion292.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion292.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion292.BackgroundImage")));
- this.locationPostion292.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion292.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion292.Location = new System.Drawing.Point(418, 624);
- this.locationPostion292.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion292.Name = "locationPostion292";
- this.locationPostion292.Size = new System.Drawing.Size(38, 39);
- this.locationPostion292.TabIndex = 237;
- //
- // locationPostion293
- //
- this.locationPostion293.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion293.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion293.BackgroundImage")));
- this.locationPostion293.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion293.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion293.Location = new System.Drawing.Point(456, 624);
- this.locationPostion293.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion293.Name = "locationPostion293";
- this.locationPostion293.Size = new System.Drawing.Size(38, 39);
- this.locationPostion293.TabIndex = 238;
- //
- // locationPostion294
- //
- this.locationPostion294.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion294.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion294.BackgroundImage")));
- this.locationPostion294.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion294.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion294.Location = new System.Drawing.Point(494, 624);
- this.locationPostion294.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion294.Name = "locationPostion294";
- this.locationPostion294.Size = new System.Drawing.Size(38, 39);
- this.locationPostion294.TabIndex = 239;
- //
- // locationPostion295
- //
- this.locationPostion295.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion295.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion295.BackgroundImage")));
- this.locationPostion295.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion295.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion295.Location = new System.Drawing.Point(532, 624);
- this.locationPostion295.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion295.Name = "locationPostion295";
- this.locationPostion295.Size = new System.Drawing.Size(38, 39);
- this.locationPostion295.TabIndex = 240;
- //
- // locationPostion296
- //
- this.locationPostion296.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion296.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion296.BackgroundImage")));
- this.locationPostion296.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion296.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion296.Location = new System.Drawing.Point(570, 624);
- this.locationPostion296.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion296.Name = "locationPostion296";
- this.locationPostion296.Size = new System.Drawing.Size(38, 39);
- this.locationPostion296.TabIndex = 241;
- //
- // locationPostion297
- //
- this.locationPostion297.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion297.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion297.BackgroundImage")));
- this.locationPostion297.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion297.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion297.Location = new System.Drawing.Point(608, 624);
- this.locationPostion297.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion297.Name = "locationPostion297";
- this.locationPostion297.Size = new System.Drawing.Size(38, 39);
- this.locationPostion297.TabIndex = 242;
- //
- // locationPostion298
- //
- this.locationPostion298.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion298.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion298.BackgroundImage")));
- this.locationPostion298.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion298.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion298.Location = new System.Drawing.Point(646, 624);
- this.locationPostion298.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion298.Name = "locationPostion298";
- this.locationPostion298.Size = new System.Drawing.Size(38, 39);
- this.locationPostion298.TabIndex = 243;
- //
- // locationPostion299
- //
- this.locationPostion299.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion299.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion299.BackgroundImage")));
- this.locationPostion299.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion299.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion299.Location = new System.Drawing.Point(684, 624);
- this.locationPostion299.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion299.Name = "locationPostion299";
- this.locationPostion299.Size = new System.Drawing.Size(38, 39);
- this.locationPostion299.TabIndex = 244;
- //
- // locationPostion2100
- //
- this.locationPostion2100.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2100.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2100.BackgroundImage")));
- this.locationPostion2100.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2100.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2100.Location = new System.Drawing.Point(722, 624);
- this.locationPostion2100.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2100.Name = "locationPostion2100";
- this.locationPostion2100.Size = new System.Drawing.Size(38, 39);
- this.locationPostion2100.TabIndex = 245;
- //
- // locationPostion2101
- //
- this.locationPostion2101.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2101.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2101.BackgroundImage")));
- this.locationPostion2101.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2101.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2101.Location = new System.Drawing.Point(760, 624);
- this.locationPostion2101.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2101.Name = "locationPostion2101";
- this.locationPostion2101.Size = new System.Drawing.Size(38, 39);
- this.locationPostion2101.TabIndex = 246;
- //
- // locationPostion2102
- //
- this.locationPostion2102.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2102.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2102.BackgroundImage")));
- this.locationPostion2102.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2102.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2102.Location = new System.Drawing.Point(798, 624);
- this.locationPostion2102.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2102.Name = "locationPostion2102";
- this.locationPostion2102.Size = new System.Drawing.Size(38, 39);
- this.locationPostion2102.TabIndex = 247;
- //
- // conveyor_1044
- //
- this.conveyor_1044.BackColor = System.Drawing.Color.Transparent;
- this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1044, 2);
- this.conveyor_1044.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1044.Location = new System.Drawing.Point(988, 273);
- this.conveyor_1044.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1044.Name = "conveyor_1044";
- this.conveyor_1044.Size = new System.Drawing.Size(76, 39);
- this.conveyor_1044.TabIndex = 248;
- //
- // tabPage2
- //
- this.tabPage2.Controls.Add(this.tableLayoutPanel1);
- this.tabPage2.Location = new System.Drawing.Point(4, 25);
- this.tabPage2.Margin = new System.Windows.Forms.Padding(0);
- this.tabPage2.Name = "tabPage2";
- this.tabPage2.Size = new System.Drawing.Size(1348, 781);
- this.tabPage2.TabIndex = 1;
- this.tabPage2.Text = "托盘立体库物流(二楼)";
- this.tabPage2.UseVisualStyleBackColor = true;
- //
- // tableLayoutPanel1
- //
- this.tableLayoutPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(144)))), ((int)(((byte)(154)))));
- this.tableLayoutPanel1.ColumnCount = 33;
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.115174F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.269838F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.009999505F));
- this.tableLayoutPanel1.Controls.Add(this.tableCellLabel16, 2, 4);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1090, 1, 5);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1092, 1, 7);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1093, 1, 8);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1094, 1, 9);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1095, 1, 10);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1096, 1, 11);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1097, 1, 12);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1098, 1, 13);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1099, 1, 14);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1100, 1, 15);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1101, 1, 16);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1102, 1, 17);
- this.tableLayoutPanel1.Controls.Add(this.rgv04, 2, 8);
- this.tableLayoutPanel1.Controls.Add(this.tableCellLabel41, 2, 10);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1081, 3, 8);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1083, 3, 12);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1085, 3, 16);
- this.tableLayoutPanel1.Controls.Add(this.conveyor2_1116, 22, 12);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1121, 24, 12);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1123, 24, 13);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1124, 24, 14);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1130, 28, 14);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1132, 28, 15);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1133, 28, 16);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1134, 28, 17);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1136, 28, 18);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1137, 28, 19);
- this.tableLayoutPanel1.Controls.Add(this.conveyor2_1114, 28, 11);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2103, 5, 6);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2104, 6, 6);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2105, 7, 6);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2106, 8, 6);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2107, 9, 6);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2108, 10, 6);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2109, 11, 6);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2110, 12, 6);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2111, 13, 6);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2112, 14, 6);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2113, 15, 6);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2114, 16, 6);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2115, 17, 6);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2116, 18, 6);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2117, 19, 6);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2118, 20, 6);
- this.tableLayoutPanel1.Controls.Add(this.srm033, 12, 7);
- this.tableLayoutPanel1.Controls.Add(this.tableCellLabel216, 5, 7);
- this.tableLayoutPanel1.Controls.Add(this.tableCellLabel217, 14, 7);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2119, 5, 8);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2120, 6, 8);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2121, 7, 8);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2122, 8, 8);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2123, 9, 8);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2124, 10, 8);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2125, 11, 8);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2126, 12, 8);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2127, 13, 8);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2128, 14, 8);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2129, 15, 8);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2130, 16, 8);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2131, 17, 8);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2132, 18, 8);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2133, 19, 8);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2134, 20, 8);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2135, 5, 10);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2136, 6, 10);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2137, 7, 10);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2138, 8, 10);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2139, 9, 10);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2140, 10, 10);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2141, 11, 10);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2142, 12, 10);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2143, 13, 10);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2144, 14, 10);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2145, 15, 10);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2146, 16, 10);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2147, 17, 10);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2148, 18, 10);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2149, 19, 10);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2150, 20, 10);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2151, 5, 12);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2152, 6, 12);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2153, 7, 12);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2154, 8, 12);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2155, 9, 12);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2156, 10, 12);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2157, 11, 12);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2158, 12, 12);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2159, 13, 12);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2160, 14, 12);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2161, 15, 12);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2162, 16, 12);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2163, 17, 12);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2164, 18, 12);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2165, 19, 12);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2166, 20, 12);
- this.tableLayoutPanel1.Controls.Add(this.tableCellLabel218, 5, 11);
- this.tableLayoutPanel1.Controls.Add(this.tableCellLabel219, 14, 11);
- this.tableLayoutPanel1.Controls.Add(this.srm022, 12, 11);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2167, 5, 14);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2168, 6, 14);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2169, 7, 14);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2170, 8, 14);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2171, 9, 14);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2172, 10, 14);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2173, 11, 14);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2174, 12, 14);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2175, 13, 14);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2176, 14, 14);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2177, 15, 14);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2178, 16, 14);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2179, 17, 14);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2180, 18, 14);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2181, 20, 14);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2182, 19, 14);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2183, 5, 16);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2184, 6, 16);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2185, 7, 16);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2186, 8, 16);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2187, 9, 16);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2188, 10, 16);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2189, 11, 16);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2190, 12, 16);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2191, 13, 16);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2192, 14, 16);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2193, 15, 16);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2194, 16, 16);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2195, 17, 16);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2196, 18, 16);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2197, 19, 16);
- this.tableLayoutPanel1.Controls.Add(this.locationPostion2198, 20, 16);
- this.tableLayoutPanel1.Controls.Add(this.tableCellLabel220, 5, 15);
- this.tableLayoutPanel1.Controls.Add(this.tableCellLabel221, 14, 15);
- this.tableLayoutPanel1.Controls.Add(this.srm011, 12, 15);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1080, 3, 6);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1082, 3, 10);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1084, 3, 14);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1103, 0, 6);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1091, 1, 6);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1120, 23, 12);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1126, 25, 14);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1127, 26, 14);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1128, 27, 14);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1129, 29, 14);
- this.tableLayoutPanel1.Controls.Add(this.conveyor_1114, 29, 11);
- this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
- this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
- this.tableLayoutPanel1.Name = "tableLayoutPanel1";
- this.tableLayoutPanel1.RowCount = 21;
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 1F));
- this.tableLayoutPanel1.Size = new System.Drawing.Size(1348, 781);
- this.tableLayoutPanel1.TabIndex = 1;
- this.tableLayoutPanel1.CellPaint += new System.Windows.Forms.TableLayoutCellPaintEventHandler(this.tableLayoutPanel1_CellPaint);
- //
- // tableCellLabel16
- //
- this.tableCellLabel16.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel16.BackgroundImage")));
- this.tableCellLabel16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.tableCellLabel16.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel16.Location = new System.Drawing.Point(84, 157);
- this.tableCellLabel16.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
- this.tableCellLabel16.Name = "tableCellLabel16";
- this.tableLayoutPanel1.SetRowSpan(this.tableCellLabel16, 4);
- this.tableCellLabel16.Size = new System.Drawing.Size(42, 155);
- this.tableCellLabel16.TabIndex = 0;
- //
- // conveyor_1090
- //
- this.conveyor_1090.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1090.Location = new System.Drawing.Point(43, 196);
- this.conveyor_1090.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1090.Name = "conveyor_1090";
- this.conveyor_1090.Size = new System.Drawing.Size(40, 37);
- this.conveyor_1090.TabIndex = 2;
- //
- // conveyor_1092
- //
- this.conveyor_1092.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1092.Location = new System.Drawing.Point(43, 274);
- this.conveyor_1092.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1092.Name = "conveyor_1092";
- this.conveyor_1092.Size = new System.Drawing.Size(40, 37);
- this.conveyor_1092.TabIndex = 5;
- //
- // conveyor_1093
- //
- this.conveyor_1093.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1093.Location = new System.Drawing.Point(43, 313);
- this.conveyor_1093.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1093.Name = "conveyor_1093";
- this.conveyor_1093.Size = new System.Drawing.Size(40, 37);
- this.conveyor_1093.TabIndex = 6;
- //
- // conveyor_1094
- //
- this.conveyor_1094.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1094.Location = new System.Drawing.Point(43, 352);
- this.conveyor_1094.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1094.Name = "conveyor_1094";
- this.conveyor_1094.Size = new System.Drawing.Size(40, 37);
- this.conveyor_1094.TabIndex = 7;
- //
- // conveyor_1095
- //
- this.conveyor_1095.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1095.Location = new System.Drawing.Point(43, 391);
- this.conveyor_1095.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1095.Name = "conveyor_1095";
- this.conveyor_1095.Size = new System.Drawing.Size(40, 37);
- this.conveyor_1095.TabIndex = 8;
- //
- // conveyor_1096
- //
- this.conveyor_1096.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1096.Location = new System.Drawing.Point(43, 430);
- this.conveyor_1096.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1096.Name = "conveyor_1096";
- this.conveyor_1096.Size = new System.Drawing.Size(40, 37);
- this.conveyor_1096.TabIndex = 9;
- //
- // conveyor_1097
- //
- this.conveyor_1097.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1097.Location = new System.Drawing.Point(43, 469);
- this.conveyor_1097.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1097.Name = "conveyor_1097";
- this.conveyor_1097.Size = new System.Drawing.Size(40, 37);
- this.conveyor_1097.TabIndex = 10;
- //
- // conveyor_1098
- //
- this.conveyor_1098.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1098.Location = new System.Drawing.Point(43, 508);
- this.conveyor_1098.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1098.Name = "conveyor_1098";
- this.conveyor_1098.Size = new System.Drawing.Size(40, 37);
- this.conveyor_1098.TabIndex = 11;
- //
- // conveyor_1099
- //
- this.conveyor_1099.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1099.Location = new System.Drawing.Point(43, 547);
- this.conveyor_1099.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1099.Name = "conveyor_1099";
- this.conveyor_1099.Size = new System.Drawing.Size(40, 37);
- this.conveyor_1099.TabIndex = 12;
- //
- // conveyor_1100
- //
- this.conveyor_1100.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1100.Location = new System.Drawing.Point(43, 586);
- this.conveyor_1100.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1100.Name = "conveyor_1100";
- this.conveyor_1100.Size = new System.Drawing.Size(40, 37);
- this.conveyor_1100.TabIndex = 13;
- //
- // conveyor_1101
- //
- this.conveyor_1101.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1101.Location = new System.Drawing.Point(43, 625);
- this.conveyor_1101.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1101.Name = "conveyor_1101";
- this.conveyor_1101.Size = new System.Drawing.Size(40, 37);
- this.conveyor_1101.TabIndex = 14;
- //
- // conveyor_1102
- //
- this.conveyor_1102.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1102.Location = new System.Drawing.Point(43, 664);
- this.conveyor_1102.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1102.Name = "conveyor_1102";
- this.conveyor_1102.Size = new System.Drawing.Size(40, 37);
- this.conveyor_1102.TabIndex = 15;
- //
- // rgv04
- //
- this.rgv04.Dock = System.Windows.Forms.DockStyle.Fill;
- this.rgv04.Location = new System.Drawing.Point(86, 314);
- this.rgv04.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.rgv04.Name = "rgv04";
- this.tableLayoutPanel1.SetRowSpan(this.rgv04, 2);
- this.rgv04.Size = new System.Drawing.Size(38, 74);
- this.rgv04.TabIndex = 18;
- //
- // tableCellLabel41
- //
- this.tableCellLabel41.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel41.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel41.BackgroundImage")));
- this.tableCellLabel41.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.tableCellLabel41.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel41.Location = new System.Drawing.Point(84, 390);
- this.tableCellLabel41.Margin = new System.Windows.Forms.Padding(0);
- this.tableCellLabel41.Name = "tableCellLabel41";
- this.tableLayoutPanel1.SetRowSpan(this.tableCellLabel41, 9);
- this.tableCellLabel41.Size = new System.Drawing.Size(42, 351);
- this.tableCellLabel41.TabIndex = 19;
- //
- // conveyor_1081
- //
- this.conveyor_1081.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.tableLayoutPanel1.SetColumnSpan(this.conveyor_1081, 2);
- this.conveyor_1081.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1081.Location = new System.Drawing.Point(127, 312);
- this.conveyor_1081.Margin = new System.Windows.Forms.Padding(1, 0, 0, 0);
- this.conveyor_1081.Name = "conveyor_1081";
- this.conveyor_1081.Size = new System.Drawing.Size(83, 39);
- this.conveyor_1081.TabIndex = 29;
- //
- // conveyor_1083
- //
- this.conveyor_1083.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.tableLayoutPanel1.SetColumnSpan(this.conveyor_1083, 2);
- this.conveyor_1083.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1083.Location = new System.Drawing.Point(127, 468);
- this.conveyor_1083.Margin = new System.Windows.Forms.Padding(1, 0, 0, 0);
- this.conveyor_1083.Name = "conveyor_1083";
- this.conveyor_1083.Size = new System.Drawing.Size(83, 39);
- this.conveyor_1083.TabIndex = 31;
- //
- // conveyor_1085
- //
- this.conveyor_1085.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.tableLayoutPanel1.SetColumnSpan(this.conveyor_1085, 2);
- this.conveyor_1085.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1085.Location = new System.Drawing.Point(127, 624);
- this.conveyor_1085.Margin = new System.Windows.Forms.Padding(1, 0, 0, 0);
- this.conveyor_1085.Name = "conveyor_1085";
- this.conveyor_1085.Size = new System.Drawing.Size(83, 39);
- this.conveyor_1085.TabIndex = 33;
- //
- // conveyor2_1116
- //
- this.conveyor2_1116.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.conveyor2_1116.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor2_1116.Location = new System.Drawing.Point(924, 468);
- this.conveyor2_1116.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor2_1116.Name = "conveyor2_1116";
- this.conveyor2_1116.Size = new System.Drawing.Size(42, 39);
- this.conveyor2_1116.TabIndex = 43;
- //
- // conveyor_1121
- //
- this.conveyor_1121.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1121.Location = new System.Drawing.Point(1008, 468);
- this.conveyor_1121.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1121.Name = "conveyor_1121";
- this.conveyor_1121.Size = new System.Drawing.Size(42, 39);
- this.conveyor_1121.TabIndex = 45;
- //
- // conveyor_1123
- //
- this.conveyor_1123.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1123.Location = new System.Drawing.Point(1008, 507);
- this.conveyor_1123.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1123.Name = "conveyor_1123";
- this.conveyor_1123.Size = new System.Drawing.Size(42, 39);
- this.conveyor_1123.TabIndex = 46;
- //
- // conveyor_1124
- //
- this.conveyor_1124.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1124.Location = new System.Drawing.Point(1008, 546);
- this.conveyor_1124.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1124.Name = "conveyor_1124";
- this.conveyor_1124.Size = new System.Drawing.Size(42, 39);
- this.conveyor_1124.TabIndex = 47;
- //
- // conveyor_1130
- //
- this.conveyor_1130.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1130.Location = new System.Drawing.Point(1176, 546);
- this.conveyor_1130.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1130.Name = "conveyor_1130";
- this.conveyor_1130.Size = new System.Drawing.Size(42, 39);
- this.conveyor_1130.TabIndex = 51;
- //
- // conveyor_1132
- //
- this.conveyor_1132.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1132.Location = new System.Drawing.Point(1176, 585);
- this.conveyor_1132.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1132.Name = "conveyor_1132";
- this.conveyor_1132.Size = new System.Drawing.Size(42, 39);
- this.conveyor_1132.TabIndex = 54;
- //
- // conveyor_1133
- //
- this.conveyor_1133.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1133.Location = new System.Drawing.Point(1176, 624);
- this.conveyor_1133.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1133.Name = "conveyor_1133";
- this.conveyor_1133.Size = new System.Drawing.Size(42, 39);
- this.conveyor_1133.TabIndex = 55;
- //
- // conveyor_1134
- //
- this.conveyor_1134.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1134.Location = new System.Drawing.Point(1176, 663);
- this.conveyor_1134.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1134.Name = "conveyor_1134";
- this.conveyor_1134.Size = new System.Drawing.Size(42, 39);
- this.conveyor_1134.TabIndex = 56;
- //
- // conveyor_1136
- //
- this.conveyor_1136.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1136.Location = new System.Drawing.Point(1176, 702);
- this.conveyor_1136.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1136.Name = "conveyor_1136";
- this.conveyor_1136.Size = new System.Drawing.Size(42, 39);
- this.conveyor_1136.TabIndex = 57;
- //
- // conveyor_1137
- //
- this.conveyor_1137.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1137.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("conveyor_1137.BackgroundImage")));
- this.conveyor_1137.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.conveyor_1137.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1137.Location = new System.Drawing.Point(1176, 741);
- this.conveyor_1137.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1137.Name = "conveyor_1137";
- this.conveyor_1137.Size = new System.Drawing.Size(42, 39);
- this.conveyor_1137.TabIndex = 58;
- //
- // conveyor2_1114
- //
- this.conveyor2_1114.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.conveyor2_1114.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor2_1114.Location = new System.Drawing.Point(1176, 429);
- this.conveyor2_1114.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor2_1114.Name = "conveyor2_1114";
- this.conveyor2_1114.Size = new System.Drawing.Size(42, 39);
- this.conveyor2_1114.TabIndex = 59;
- //
- // locationPostion2103
- //
- this.locationPostion2103.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2103.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2103.BackgroundImage")));
- this.locationPostion2103.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2103.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2103.Location = new System.Drawing.Point(210, 234);
- this.locationPostion2103.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2103.Name = "locationPostion2103";
- this.locationPostion2103.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2103.TabIndex = 64;
- //
- // locationPostion2104
- //
- this.locationPostion2104.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2104.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2104.BackgroundImage")));
- this.locationPostion2104.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2104.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2104.Location = new System.Drawing.Point(252, 234);
- this.locationPostion2104.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2104.Name = "locationPostion2104";
- this.locationPostion2104.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2104.TabIndex = 65;
- //
- // locationPostion2105
- //
- this.locationPostion2105.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2105.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2105.BackgroundImage")));
- this.locationPostion2105.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2105.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2105.Location = new System.Drawing.Point(294, 234);
- this.locationPostion2105.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2105.Name = "locationPostion2105";
- this.locationPostion2105.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2105.TabIndex = 66;
- //
- // locationPostion2106
- //
- this.locationPostion2106.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2106.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2106.BackgroundImage")));
- this.locationPostion2106.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2106.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2106.Location = new System.Drawing.Point(336, 234);
- this.locationPostion2106.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2106.Name = "locationPostion2106";
- this.locationPostion2106.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2106.TabIndex = 67;
- //
- // locationPostion2107
- //
- this.locationPostion2107.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2107.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2107.BackgroundImage")));
- this.locationPostion2107.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2107.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2107.Location = new System.Drawing.Point(378, 234);
- this.locationPostion2107.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2107.Name = "locationPostion2107";
- this.locationPostion2107.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2107.TabIndex = 68;
- //
- // locationPostion2108
- //
- this.locationPostion2108.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2108.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2108.BackgroundImage")));
- this.locationPostion2108.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2108.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2108.Location = new System.Drawing.Point(420, 234);
- this.locationPostion2108.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2108.Name = "locationPostion2108";
- this.locationPostion2108.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2108.TabIndex = 69;
- //
- // locationPostion2109
- //
- this.locationPostion2109.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2109.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2109.BackgroundImage")));
- this.locationPostion2109.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2109.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2109.Location = new System.Drawing.Point(462, 234);
- this.locationPostion2109.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2109.Name = "locationPostion2109";
- this.locationPostion2109.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2109.TabIndex = 70;
- //
- // locationPostion2110
- //
- this.locationPostion2110.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2110.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2110.BackgroundImage")));
- this.locationPostion2110.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2110.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2110.Location = new System.Drawing.Point(504, 234);
- this.locationPostion2110.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2110.Name = "locationPostion2110";
- this.locationPostion2110.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2110.TabIndex = 71;
- //
- // locationPostion2111
- //
- this.locationPostion2111.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2111.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2111.BackgroundImage")));
- this.locationPostion2111.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2111.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2111.Location = new System.Drawing.Point(546, 234);
- this.locationPostion2111.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2111.Name = "locationPostion2111";
- this.locationPostion2111.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2111.TabIndex = 72;
- //
- // locationPostion2112
- //
- this.locationPostion2112.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2112.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2112.BackgroundImage")));
- this.locationPostion2112.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2112.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2112.Location = new System.Drawing.Point(588, 234);
- this.locationPostion2112.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2112.Name = "locationPostion2112";
- this.locationPostion2112.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2112.TabIndex = 73;
- //
- // locationPostion2113
- //
- this.locationPostion2113.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2113.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2113.BackgroundImage")));
- this.locationPostion2113.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2113.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2113.Location = new System.Drawing.Point(630, 234);
- this.locationPostion2113.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2113.Name = "locationPostion2113";
- this.locationPostion2113.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2113.TabIndex = 74;
- //
- // locationPostion2114
- //
- this.locationPostion2114.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2114.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2114.BackgroundImage")));
- this.locationPostion2114.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2114.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2114.Location = new System.Drawing.Point(672, 234);
- this.locationPostion2114.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2114.Name = "locationPostion2114";
- this.locationPostion2114.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2114.TabIndex = 75;
- //
- // locationPostion2115
- //
- this.locationPostion2115.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2115.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2115.BackgroundImage")));
- this.locationPostion2115.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2115.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2115.Location = new System.Drawing.Point(714, 234);
- this.locationPostion2115.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2115.Name = "locationPostion2115";
- this.locationPostion2115.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2115.TabIndex = 76;
- //
- // locationPostion2116
- //
- this.locationPostion2116.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2116.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2116.BackgroundImage")));
- this.locationPostion2116.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2116.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2116.Location = new System.Drawing.Point(756, 234);
- this.locationPostion2116.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2116.Name = "locationPostion2116";
- this.locationPostion2116.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2116.TabIndex = 77;
- //
- // locationPostion2117
- //
- this.locationPostion2117.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2117.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2117.BackgroundImage")));
- this.locationPostion2117.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2117.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2117.Location = new System.Drawing.Point(798, 234);
- this.locationPostion2117.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2117.Name = "locationPostion2117";
- this.locationPostion2117.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2117.TabIndex = 78;
- //
- // locationPostion2118
- //
- this.locationPostion2118.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2118.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2118.BackgroundImage")));
- this.locationPostion2118.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2118.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2118.Location = new System.Drawing.Point(840, 234);
- this.locationPostion2118.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2118.Name = "locationPostion2118";
- this.locationPostion2118.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2118.TabIndex = 79;
- //
- // srm033
- //
- this.srm033.BackColor = System.Drawing.Color.Transparent;
- this.srm033.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm033.BackgroundImage")));
- this.srm033.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.tableLayoutPanel1.SetColumnSpan(this.srm033, 2);
- this.srm033.Dock = System.Windows.Forms.DockStyle.Fill;
- this.srm033.Location = new System.Drawing.Point(504, 273);
- this.srm033.Margin = new System.Windows.Forms.Padding(0);
- this.srm033.Name = "srm033";
- this.srm033.Size = new System.Drawing.Size(84, 39);
- this.srm033.TabIndex = 80;
- //
- // tableCellLabel216
- //
- this.tableCellLabel216.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel216.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel216.BackgroundImage")));
- this.tableCellLabel216.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.tableLayoutPanel1.SetColumnSpan(this.tableCellLabel216, 7);
- this.tableCellLabel216.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel216.Location = new System.Drawing.Point(210, 273);
- this.tableCellLabel216.Margin = new System.Windows.Forms.Padding(0);
- this.tableCellLabel216.Name = "tableCellLabel216";
- this.tableCellLabel216.Size = new System.Drawing.Size(294, 39);
- this.tableCellLabel216.TabIndex = 81;
- //
- // tableCellLabel217
- //
- this.tableCellLabel217.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel217.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel217.BackgroundImage")));
- this.tableCellLabel217.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.tableLayoutPanel1.SetColumnSpan(this.tableCellLabel217, 7);
- this.tableCellLabel217.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel217.Location = new System.Drawing.Point(588, 273);
- this.tableCellLabel217.Margin = new System.Windows.Forms.Padding(0);
- this.tableCellLabel217.Name = "tableCellLabel217";
- this.tableCellLabel217.Size = new System.Drawing.Size(294, 39);
- this.tableCellLabel217.TabIndex = 82;
- //
- // locationPostion2119
- //
- this.locationPostion2119.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2119.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2119.BackgroundImage")));
- this.locationPostion2119.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2119.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2119.Location = new System.Drawing.Point(210, 312);
- this.locationPostion2119.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2119.Name = "locationPostion2119";
- this.locationPostion2119.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2119.TabIndex = 83;
- //
- // locationPostion2120
- //
- this.locationPostion2120.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2120.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2120.BackgroundImage")));
- this.locationPostion2120.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2120.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2120.Location = new System.Drawing.Point(252, 312);
- this.locationPostion2120.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2120.Name = "locationPostion2120";
- this.locationPostion2120.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2120.TabIndex = 84;
- //
- // locationPostion2121
- //
- this.locationPostion2121.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2121.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2121.BackgroundImage")));
- this.locationPostion2121.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2121.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2121.Location = new System.Drawing.Point(294, 312);
- this.locationPostion2121.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2121.Name = "locationPostion2121";
- this.locationPostion2121.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2121.TabIndex = 85;
- //
- // locationPostion2122
- //
- this.locationPostion2122.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2122.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2122.BackgroundImage")));
- this.locationPostion2122.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2122.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2122.Location = new System.Drawing.Point(336, 312);
- this.locationPostion2122.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2122.Name = "locationPostion2122";
- this.locationPostion2122.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2122.TabIndex = 86;
- //
- // locationPostion2123
- //
- this.locationPostion2123.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2123.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2123.BackgroundImage")));
- this.locationPostion2123.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2123.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2123.Location = new System.Drawing.Point(378, 312);
- this.locationPostion2123.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2123.Name = "locationPostion2123";
- this.locationPostion2123.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2123.TabIndex = 87;
- //
- // locationPostion2124
- //
- this.locationPostion2124.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2124.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2124.BackgroundImage")));
- this.locationPostion2124.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2124.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2124.Location = new System.Drawing.Point(420, 312);
- this.locationPostion2124.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2124.Name = "locationPostion2124";
- this.locationPostion2124.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2124.TabIndex = 88;
- //
- // locationPostion2125
- //
- this.locationPostion2125.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2125.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2125.BackgroundImage")));
- this.locationPostion2125.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2125.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2125.Location = new System.Drawing.Point(462, 312);
- this.locationPostion2125.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2125.Name = "locationPostion2125";
- this.locationPostion2125.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2125.TabIndex = 89;
- //
- // locationPostion2126
- //
- this.locationPostion2126.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2126.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2126.BackgroundImage")));
- this.locationPostion2126.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2126.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2126.Location = new System.Drawing.Point(504, 312);
- this.locationPostion2126.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2126.Name = "locationPostion2126";
- this.locationPostion2126.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2126.TabIndex = 90;
- //
- // locationPostion2127
- //
- this.locationPostion2127.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2127.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2127.BackgroundImage")));
- this.locationPostion2127.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2127.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2127.Location = new System.Drawing.Point(546, 312);
- this.locationPostion2127.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2127.Name = "locationPostion2127";
- this.locationPostion2127.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2127.TabIndex = 91;
- //
- // locationPostion2128
- //
- this.locationPostion2128.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2128.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2128.BackgroundImage")));
- this.locationPostion2128.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2128.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2128.Location = new System.Drawing.Point(588, 312);
- this.locationPostion2128.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2128.Name = "locationPostion2128";
- this.locationPostion2128.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2128.TabIndex = 92;
- //
- // locationPostion2129
- //
- this.locationPostion2129.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2129.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2129.BackgroundImage")));
- this.locationPostion2129.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2129.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2129.Location = new System.Drawing.Point(630, 312);
- this.locationPostion2129.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2129.Name = "locationPostion2129";
- this.locationPostion2129.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2129.TabIndex = 93;
- //
- // locationPostion2130
- //
- this.locationPostion2130.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2130.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2130.BackgroundImage")));
- this.locationPostion2130.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2130.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2130.Location = new System.Drawing.Point(672, 312);
- this.locationPostion2130.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2130.Name = "locationPostion2130";
- this.locationPostion2130.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2130.TabIndex = 94;
- //
- // locationPostion2131
- //
- this.locationPostion2131.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2131.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2131.BackgroundImage")));
- this.locationPostion2131.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2131.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2131.Location = new System.Drawing.Point(714, 312);
- this.locationPostion2131.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2131.Name = "locationPostion2131";
- this.locationPostion2131.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2131.TabIndex = 95;
- //
- // locationPostion2132
- //
- this.locationPostion2132.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2132.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2132.BackgroundImage")));
- this.locationPostion2132.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2132.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2132.Location = new System.Drawing.Point(756, 312);
- this.locationPostion2132.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2132.Name = "locationPostion2132";
- this.locationPostion2132.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2132.TabIndex = 96;
- //
- // locationPostion2133
- //
- this.locationPostion2133.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2133.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2133.BackgroundImage")));
- this.locationPostion2133.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2133.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2133.Location = new System.Drawing.Point(798, 312);
- this.locationPostion2133.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2133.Name = "locationPostion2133";
- this.locationPostion2133.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2133.TabIndex = 97;
- //
- // locationPostion2134
- //
- this.locationPostion2134.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2134.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2134.BackgroundImage")));
- this.locationPostion2134.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2134.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2134.Location = new System.Drawing.Point(840, 312);
- this.locationPostion2134.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2134.Name = "locationPostion2134";
- this.locationPostion2134.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2134.TabIndex = 98;
- //
- // locationPostion2135
- //
- this.locationPostion2135.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2135.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2135.BackgroundImage")));
- this.locationPostion2135.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2135.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2135.Location = new System.Drawing.Point(210, 390);
- this.locationPostion2135.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2135.Name = "locationPostion2135";
- this.locationPostion2135.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2135.TabIndex = 99;
- //
- // locationPostion2136
- //
- this.locationPostion2136.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2136.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2136.BackgroundImage")));
- this.locationPostion2136.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2136.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2136.Location = new System.Drawing.Point(252, 390);
- this.locationPostion2136.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2136.Name = "locationPostion2136";
- this.locationPostion2136.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2136.TabIndex = 100;
- //
- // locationPostion2137
- //
- this.locationPostion2137.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2137.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2137.BackgroundImage")));
- this.locationPostion2137.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2137.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2137.Location = new System.Drawing.Point(294, 390);
- this.locationPostion2137.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2137.Name = "locationPostion2137";
- this.locationPostion2137.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2137.TabIndex = 101;
- //
- // locationPostion2138
- //
- this.locationPostion2138.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2138.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2138.BackgroundImage")));
- this.locationPostion2138.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2138.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2138.Location = new System.Drawing.Point(336, 390);
- this.locationPostion2138.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2138.Name = "locationPostion2138";
- this.locationPostion2138.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2138.TabIndex = 102;
- //
- // locationPostion2139
- //
- this.locationPostion2139.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2139.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2139.BackgroundImage")));
- this.locationPostion2139.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2139.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2139.Location = new System.Drawing.Point(378, 390);
- this.locationPostion2139.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2139.Name = "locationPostion2139";
- this.locationPostion2139.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2139.TabIndex = 103;
- //
- // locationPostion2140
- //
- this.locationPostion2140.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2140.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2140.BackgroundImage")));
- this.locationPostion2140.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2140.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2140.Location = new System.Drawing.Point(420, 390);
- this.locationPostion2140.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2140.Name = "locationPostion2140";
- this.locationPostion2140.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2140.TabIndex = 104;
- //
- // locationPostion2141
- //
- this.locationPostion2141.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2141.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2141.BackgroundImage")));
- this.locationPostion2141.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2141.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2141.Location = new System.Drawing.Point(462, 390);
- this.locationPostion2141.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2141.Name = "locationPostion2141";
- this.locationPostion2141.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2141.TabIndex = 105;
- //
- // locationPostion2142
- //
- this.locationPostion2142.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2142.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2142.BackgroundImage")));
- this.locationPostion2142.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2142.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2142.Location = new System.Drawing.Point(504, 390);
- this.locationPostion2142.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2142.Name = "locationPostion2142";
- this.locationPostion2142.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2142.TabIndex = 106;
- //
- // locationPostion2143
- //
- this.locationPostion2143.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2143.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2143.BackgroundImage")));
- this.locationPostion2143.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2143.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2143.Location = new System.Drawing.Point(546, 390);
- this.locationPostion2143.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2143.Name = "locationPostion2143";
- this.locationPostion2143.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2143.TabIndex = 107;
- //
- // locationPostion2144
- //
- this.locationPostion2144.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2144.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2144.BackgroundImage")));
- this.locationPostion2144.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2144.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2144.Location = new System.Drawing.Point(588, 390);
- this.locationPostion2144.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2144.Name = "locationPostion2144";
- this.locationPostion2144.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2144.TabIndex = 108;
- //
- // locationPostion2145
- //
- this.locationPostion2145.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2145.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2145.BackgroundImage")));
- this.locationPostion2145.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2145.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2145.Location = new System.Drawing.Point(630, 390);
- this.locationPostion2145.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2145.Name = "locationPostion2145";
- this.locationPostion2145.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2145.TabIndex = 109;
- //
- // locationPostion2146
- //
- this.locationPostion2146.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2146.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2146.BackgroundImage")));
- this.locationPostion2146.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2146.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2146.Location = new System.Drawing.Point(672, 390);
- this.locationPostion2146.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2146.Name = "locationPostion2146";
- this.locationPostion2146.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2146.TabIndex = 110;
- //
- // locationPostion2147
- //
- this.locationPostion2147.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2147.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2147.BackgroundImage")));
- this.locationPostion2147.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2147.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2147.Location = new System.Drawing.Point(714, 390);
- this.locationPostion2147.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2147.Name = "locationPostion2147";
- this.locationPostion2147.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2147.TabIndex = 111;
- //
- // locationPostion2148
- //
- this.locationPostion2148.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2148.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2148.BackgroundImage")));
- this.locationPostion2148.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2148.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2148.Location = new System.Drawing.Point(756, 390);
- this.locationPostion2148.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2148.Name = "locationPostion2148";
- this.locationPostion2148.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2148.TabIndex = 112;
- //
- // locationPostion2149
- //
- this.locationPostion2149.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2149.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2149.BackgroundImage")));
- this.locationPostion2149.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2149.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2149.Location = new System.Drawing.Point(798, 390);
- this.locationPostion2149.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2149.Name = "locationPostion2149";
- this.locationPostion2149.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2149.TabIndex = 113;
- //
- // locationPostion2150
- //
- this.locationPostion2150.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2150.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2150.BackgroundImage")));
- this.locationPostion2150.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2150.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2150.Location = new System.Drawing.Point(840, 390);
- this.locationPostion2150.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2150.Name = "locationPostion2150";
- this.locationPostion2150.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2150.TabIndex = 114;
- //
- // locationPostion2151
- //
- this.locationPostion2151.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2151.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2151.BackgroundImage")));
- this.locationPostion2151.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2151.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2151.Location = new System.Drawing.Point(210, 468);
- this.locationPostion2151.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2151.Name = "locationPostion2151";
- this.locationPostion2151.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2151.TabIndex = 115;
- //
- // locationPostion2152
- //
- this.locationPostion2152.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2152.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2152.BackgroundImage")));
- this.locationPostion2152.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2152.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2152.Location = new System.Drawing.Point(252, 468);
- this.locationPostion2152.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2152.Name = "locationPostion2152";
- this.locationPostion2152.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2152.TabIndex = 116;
- //
- // locationPostion2153
- //
- this.locationPostion2153.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2153.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2153.BackgroundImage")));
- this.locationPostion2153.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2153.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2153.Location = new System.Drawing.Point(294, 468);
- this.locationPostion2153.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2153.Name = "locationPostion2153";
- this.locationPostion2153.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2153.TabIndex = 117;
- //
- // locationPostion2154
- //
- this.locationPostion2154.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2154.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2154.BackgroundImage")));
- this.locationPostion2154.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2154.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2154.Location = new System.Drawing.Point(336, 468);
- this.locationPostion2154.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2154.Name = "locationPostion2154";
- this.locationPostion2154.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2154.TabIndex = 118;
- //
- // locationPostion2155
- //
- this.locationPostion2155.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2155.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2155.BackgroundImage")));
- this.locationPostion2155.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2155.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2155.Location = new System.Drawing.Point(378, 468);
- this.locationPostion2155.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2155.Name = "locationPostion2155";
- this.locationPostion2155.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2155.TabIndex = 119;
- //
- // locationPostion2156
- //
- this.locationPostion2156.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2156.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2156.BackgroundImage")));
- this.locationPostion2156.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2156.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2156.Location = new System.Drawing.Point(420, 468);
- this.locationPostion2156.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2156.Name = "locationPostion2156";
- this.locationPostion2156.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2156.TabIndex = 120;
- //
- // locationPostion2157
- //
- this.locationPostion2157.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2157.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2157.BackgroundImage")));
- this.locationPostion2157.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2157.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2157.Location = new System.Drawing.Point(462, 468);
- this.locationPostion2157.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2157.Name = "locationPostion2157";
- this.locationPostion2157.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2157.TabIndex = 121;
- //
- // locationPostion2158
- //
- this.locationPostion2158.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2158.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2158.BackgroundImage")));
- this.locationPostion2158.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2158.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2158.Location = new System.Drawing.Point(504, 468);
- this.locationPostion2158.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2158.Name = "locationPostion2158";
- this.locationPostion2158.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2158.TabIndex = 122;
- //
- // locationPostion2159
- //
- this.locationPostion2159.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2159.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2159.BackgroundImage")));
- this.locationPostion2159.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2159.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2159.Location = new System.Drawing.Point(546, 468);
- this.locationPostion2159.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2159.Name = "locationPostion2159";
- this.locationPostion2159.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2159.TabIndex = 123;
- //
- // locationPostion2160
- //
- this.locationPostion2160.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2160.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2160.BackgroundImage")));
- this.locationPostion2160.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2160.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2160.Location = new System.Drawing.Point(588, 468);
- this.locationPostion2160.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2160.Name = "locationPostion2160";
- this.locationPostion2160.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2160.TabIndex = 124;
- //
- // locationPostion2161
- //
- this.locationPostion2161.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2161.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2161.BackgroundImage")));
- this.locationPostion2161.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2161.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2161.Location = new System.Drawing.Point(630, 468);
- this.locationPostion2161.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2161.Name = "locationPostion2161";
- this.locationPostion2161.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2161.TabIndex = 125;
- //
- // locationPostion2162
- //
- this.locationPostion2162.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2162.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2162.BackgroundImage")));
- this.locationPostion2162.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2162.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2162.Location = new System.Drawing.Point(672, 468);
- this.locationPostion2162.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2162.Name = "locationPostion2162";
- this.locationPostion2162.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2162.TabIndex = 126;
- //
- // locationPostion2163
- //
- this.locationPostion2163.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2163.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2163.BackgroundImage")));
- this.locationPostion2163.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2163.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2163.Location = new System.Drawing.Point(714, 468);
- this.locationPostion2163.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2163.Name = "locationPostion2163";
- this.locationPostion2163.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2163.TabIndex = 127;
- //
- // locationPostion2164
- //
- this.locationPostion2164.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2164.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2164.BackgroundImage")));
- this.locationPostion2164.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2164.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2164.Location = new System.Drawing.Point(756, 468);
- this.locationPostion2164.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2164.Name = "locationPostion2164";
- this.locationPostion2164.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2164.TabIndex = 128;
- //
- // locationPostion2165
- //
- this.locationPostion2165.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2165.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2165.BackgroundImage")));
- this.locationPostion2165.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2165.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2165.Location = new System.Drawing.Point(798, 468);
- this.locationPostion2165.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2165.Name = "locationPostion2165";
- this.locationPostion2165.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2165.TabIndex = 129;
- //
- // locationPostion2166
- //
- this.locationPostion2166.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2166.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2166.BackgroundImage")));
- this.locationPostion2166.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2166.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2166.Location = new System.Drawing.Point(840, 468);
- this.locationPostion2166.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2166.Name = "locationPostion2166";
- this.locationPostion2166.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2166.TabIndex = 130;
- //
- // tableCellLabel218
- //
- this.tableCellLabel218.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel218.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel218.BackgroundImage")));
- this.tableCellLabel218.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.tableLayoutPanel1.SetColumnSpan(this.tableCellLabel218, 7);
- this.tableCellLabel218.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel218.Location = new System.Drawing.Point(210, 429);
- this.tableCellLabel218.Margin = new System.Windows.Forms.Padding(0);
- this.tableCellLabel218.Name = "tableCellLabel218";
- this.tableCellLabel218.Size = new System.Drawing.Size(294, 39);
- this.tableCellLabel218.TabIndex = 131;
- //
- // tableCellLabel219
- //
- this.tableCellLabel219.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel219.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel219.BackgroundImage")));
- this.tableCellLabel219.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.tableLayoutPanel1.SetColumnSpan(this.tableCellLabel219, 7);
- this.tableCellLabel219.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel219.Location = new System.Drawing.Point(588, 429);
- this.tableCellLabel219.Margin = new System.Windows.Forms.Padding(0);
- this.tableCellLabel219.Name = "tableCellLabel219";
- this.tableCellLabel219.Size = new System.Drawing.Size(294, 39);
- this.tableCellLabel219.TabIndex = 132;
- //
- // srm022
- //
- this.srm022.BackColor = System.Drawing.Color.Transparent;
- this.srm022.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.tableLayoutPanel1.SetColumnSpan(this.srm022, 2);
- this.srm022.Dock = System.Windows.Forms.DockStyle.Fill;
- this.srm022.Location = new System.Drawing.Point(504, 429);
- this.srm022.Margin = new System.Windows.Forms.Padding(0);
- this.srm022.Name = "srm022";
- this.srm022.Size = new System.Drawing.Size(84, 39);
- this.srm022.TabIndex = 133;
- //
- // locationPostion2167
- //
- this.locationPostion2167.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2167.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2167.BackgroundImage")));
- this.locationPostion2167.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2167.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2167.Location = new System.Drawing.Point(210, 546);
- this.locationPostion2167.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2167.Name = "locationPostion2167";
- this.locationPostion2167.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2167.TabIndex = 134;
- //
- // locationPostion2168
- //
- this.locationPostion2168.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2168.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2168.BackgroundImage")));
- this.locationPostion2168.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2168.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2168.Location = new System.Drawing.Point(252, 546);
- this.locationPostion2168.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2168.Name = "locationPostion2168";
- this.locationPostion2168.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2168.TabIndex = 135;
- //
- // locationPostion2169
- //
- this.locationPostion2169.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2169.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2169.BackgroundImage")));
- this.locationPostion2169.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2169.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2169.Location = new System.Drawing.Point(294, 546);
- this.locationPostion2169.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2169.Name = "locationPostion2169";
- this.locationPostion2169.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2169.TabIndex = 136;
- //
- // locationPostion2170
- //
- this.locationPostion2170.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2170.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2170.BackgroundImage")));
- this.locationPostion2170.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2170.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2170.Location = new System.Drawing.Point(336, 546);
- this.locationPostion2170.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2170.Name = "locationPostion2170";
- this.locationPostion2170.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2170.TabIndex = 137;
- //
- // locationPostion2171
- //
- this.locationPostion2171.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2171.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2171.BackgroundImage")));
- this.locationPostion2171.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2171.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2171.Location = new System.Drawing.Point(378, 546);
- this.locationPostion2171.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2171.Name = "locationPostion2171";
- this.locationPostion2171.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2171.TabIndex = 138;
- //
- // locationPostion2172
- //
- this.locationPostion2172.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2172.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2172.BackgroundImage")));
- this.locationPostion2172.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2172.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2172.Location = new System.Drawing.Point(420, 546);
- this.locationPostion2172.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2172.Name = "locationPostion2172";
- this.locationPostion2172.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2172.TabIndex = 139;
- //
- // locationPostion2173
- //
- this.locationPostion2173.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2173.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2173.BackgroundImage")));
- this.locationPostion2173.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2173.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2173.Location = new System.Drawing.Point(462, 546);
- this.locationPostion2173.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2173.Name = "locationPostion2173";
- this.locationPostion2173.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2173.TabIndex = 140;
- //
- // locationPostion2174
- //
- this.locationPostion2174.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2174.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2174.BackgroundImage")));
- this.locationPostion2174.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2174.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2174.Location = new System.Drawing.Point(504, 546);
- this.locationPostion2174.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2174.Name = "locationPostion2174";
- this.locationPostion2174.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2174.TabIndex = 141;
- //
- // locationPostion2175
- //
- this.locationPostion2175.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2175.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2175.BackgroundImage")));
- this.locationPostion2175.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2175.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2175.Location = new System.Drawing.Point(546, 546);
- this.locationPostion2175.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2175.Name = "locationPostion2175";
- this.locationPostion2175.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2175.TabIndex = 142;
- //
- // locationPostion2176
- //
- this.locationPostion2176.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2176.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2176.BackgroundImage")));
- this.locationPostion2176.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2176.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2176.Location = new System.Drawing.Point(588, 546);
- this.locationPostion2176.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2176.Name = "locationPostion2176";
- this.locationPostion2176.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2176.TabIndex = 143;
- //
- // locationPostion2177
- //
- this.locationPostion2177.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2177.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2177.BackgroundImage")));
- this.locationPostion2177.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2177.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2177.Location = new System.Drawing.Point(630, 546);
- this.locationPostion2177.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2177.Name = "locationPostion2177";
- this.locationPostion2177.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2177.TabIndex = 144;
- //
- // locationPostion2178
- //
- this.locationPostion2178.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2178.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2178.BackgroundImage")));
- this.locationPostion2178.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2178.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2178.Location = new System.Drawing.Point(672, 546);
- this.locationPostion2178.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2178.Name = "locationPostion2178";
- this.locationPostion2178.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2178.TabIndex = 145;
- //
- // locationPostion2179
- //
- this.locationPostion2179.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2179.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2179.BackgroundImage")));
- this.locationPostion2179.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2179.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2179.Location = new System.Drawing.Point(714, 546);
- this.locationPostion2179.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2179.Name = "locationPostion2179";
- this.locationPostion2179.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2179.TabIndex = 146;
- //
- // locationPostion2180
- //
- this.locationPostion2180.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2180.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2180.BackgroundImage")));
- this.locationPostion2180.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2180.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2180.Location = new System.Drawing.Point(756, 546);
- this.locationPostion2180.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2180.Name = "locationPostion2180";
- this.locationPostion2180.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2180.TabIndex = 147;
- //
- // locationPostion2181
- //
- this.locationPostion2181.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2181.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2181.BackgroundImage")));
- this.locationPostion2181.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2181.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2181.Location = new System.Drawing.Point(840, 546);
- this.locationPostion2181.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2181.Name = "locationPostion2181";
- this.locationPostion2181.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2181.TabIndex = 148;
- //
- // locationPostion2182
- //
- this.locationPostion2182.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2182.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2182.BackgroundImage")));
- this.locationPostion2182.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2182.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2182.Location = new System.Drawing.Point(798, 546);
- this.locationPostion2182.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2182.Name = "locationPostion2182";
- this.locationPostion2182.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2182.TabIndex = 149;
- //
- // locationPostion2183
- //
- this.locationPostion2183.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2183.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2183.BackgroundImage")));
- this.locationPostion2183.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2183.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2183.Location = new System.Drawing.Point(210, 624);
- this.locationPostion2183.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2183.Name = "locationPostion2183";
- this.locationPostion2183.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2183.TabIndex = 150;
- //
- // locationPostion2184
- //
- this.locationPostion2184.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2184.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2184.BackgroundImage")));
- this.locationPostion2184.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2184.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2184.Location = new System.Drawing.Point(252, 624);
- this.locationPostion2184.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2184.Name = "locationPostion2184";
- this.locationPostion2184.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2184.TabIndex = 151;
- //
- // locationPostion2185
- //
- this.locationPostion2185.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2185.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2185.BackgroundImage")));
- this.locationPostion2185.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2185.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2185.Location = new System.Drawing.Point(294, 624);
- this.locationPostion2185.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2185.Name = "locationPostion2185";
- this.locationPostion2185.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2185.TabIndex = 152;
- //
- // locationPostion2186
- //
- this.locationPostion2186.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2186.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2186.BackgroundImage")));
- this.locationPostion2186.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2186.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2186.Location = new System.Drawing.Point(336, 624);
- this.locationPostion2186.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2186.Name = "locationPostion2186";
- this.locationPostion2186.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2186.TabIndex = 153;
- //
- // locationPostion2187
- //
- this.locationPostion2187.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2187.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2187.BackgroundImage")));
- this.locationPostion2187.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2187.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2187.Location = new System.Drawing.Point(378, 624);
- this.locationPostion2187.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2187.Name = "locationPostion2187";
- this.locationPostion2187.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2187.TabIndex = 154;
- //
- // locationPostion2188
- //
- this.locationPostion2188.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2188.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2188.BackgroundImage")));
- this.locationPostion2188.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2188.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2188.Location = new System.Drawing.Point(420, 624);
- this.locationPostion2188.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2188.Name = "locationPostion2188";
- this.locationPostion2188.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2188.TabIndex = 155;
- //
- // locationPostion2189
- //
- this.locationPostion2189.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2189.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2189.BackgroundImage")));
- this.locationPostion2189.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2189.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2189.Location = new System.Drawing.Point(462, 624);
- this.locationPostion2189.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2189.Name = "locationPostion2189";
- this.locationPostion2189.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2189.TabIndex = 156;
- //
- // locationPostion2190
- //
- this.locationPostion2190.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2190.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2190.BackgroundImage")));
- this.locationPostion2190.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2190.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2190.Location = new System.Drawing.Point(504, 624);
- this.locationPostion2190.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2190.Name = "locationPostion2190";
- this.locationPostion2190.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2190.TabIndex = 157;
- //
- // locationPostion2191
- //
- this.locationPostion2191.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2191.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2191.BackgroundImage")));
- this.locationPostion2191.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2191.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2191.Location = new System.Drawing.Point(546, 624);
- this.locationPostion2191.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2191.Name = "locationPostion2191";
- this.locationPostion2191.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2191.TabIndex = 158;
- //
- // locationPostion2192
- //
- this.locationPostion2192.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2192.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2192.BackgroundImage")));
- this.locationPostion2192.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2192.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2192.Location = new System.Drawing.Point(588, 624);
- this.locationPostion2192.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2192.Name = "locationPostion2192";
- this.locationPostion2192.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2192.TabIndex = 159;
- //
- // locationPostion2193
- //
- this.locationPostion2193.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2193.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2193.BackgroundImage")));
- this.locationPostion2193.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2193.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2193.Location = new System.Drawing.Point(630, 624);
- this.locationPostion2193.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2193.Name = "locationPostion2193";
- this.locationPostion2193.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2193.TabIndex = 160;
- //
- // locationPostion2194
- //
- this.locationPostion2194.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2194.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2194.BackgroundImage")));
- this.locationPostion2194.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2194.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2194.Location = new System.Drawing.Point(672, 624);
- this.locationPostion2194.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2194.Name = "locationPostion2194";
- this.locationPostion2194.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2194.TabIndex = 161;
- //
- // locationPostion2195
- //
- this.locationPostion2195.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2195.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2195.BackgroundImage")));
- this.locationPostion2195.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2195.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2195.Location = new System.Drawing.Point(714, 624);
- this.locationPostion2195.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2195.Name = "locationPostion2195";
- this.locationPostion2195.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2195.TabIndex = 162;
- //
- // locationPostion2196
- //
- this.locationPostion2196.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2196.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2196.BackgroundImage")));
- this.locationPostion2196.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2196.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2196.Location = new System.Drawing.Point(756, 624);
- this.locationPostion2196.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2196.Name = "locationPostion2196";
- this.locationPostion2196.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2196.TabIndex = 163;
- //
- // locationPostion2197
- //
- this.locationPostion2197.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2197.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2197.BackgroundImage")));
- this.locationPostion2197.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2197.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2197.Location = new System.Drawing.Point(798, 624);
- this.locationPostion2197.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2197.Name = "locationPostion2197";
- this.locationPostion2197.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2197.TabIndex = 164;
- //
- // locationPostion2198
- //
- this.locationPostion2198.BackColor = System.Drawing.Color.Transparent;
- this.locationPostion2198.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2198.BackgroundImage")));
- this.locationPostion2198.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.locationPostion2198.Dock = System.Windows.Forms.DockStyle.Fill;
- this.locationPostion2198.Location = new System.Drawing.Point(840, 624);
- this.locationPostion2198.Margin = new System.Windows.Forms.Padding(0);
- this.locationPostion2198.Name = "locationPostion2198";
- this.locationPostion2198.Size = new System.Drawing.Size(42, 39);
- this.locationPostion2198.TabIndex = 165;
- //
- // tableCellLabel220
- //
- this.tableCellLabel220.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel220.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel220.BackgroundImage")));
- this.tableCellLabel220.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.tableLayoutPanel1.SetColumnSpan(this.tableCellLabel220, 7);
- this.tableCellLabel220.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel220.Location = new System.Drawing.Point(210, 585);
- this.tableCellLabel220.Margin = new System.Windows.Forms.Padding(0);
- this.tableCellLabel220.Name = "tableCellLabel220";
- this.tableCellLabel220.Size = new System.Drawing.Size(294, 39);
- this.tableCellLabel220.TabIndex = 166;
- //
- // tableCellLabel221
- //
- this.tableCellLabel221.BackColor = System.Drawing.Color.Transparent;
- this.tableCellLabel221.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel221.BackgroundImage")));
- this.tableCellLabel221.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
- this.tableLayoutPanel1.SetColumnSpan(this.tableCellLabel221, 7);
- this.tableCellLabel221.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableCellLabel221.Location = new System.Drawing.Point(588, 585);
- this.tableCellLabel221.Margin = new System.Windows.Forms.Padding(0);
- this.tableCellLabel221.Name = "tableCellLabel221";
- this.tableCellLabel221.Size = new System.Drawing.Size(294, 39);
- this.tableCellLabel221.TabIndex = 167;
- //
- // srm011
- //
- this.srm011.BackColor = System.Drawing.Color.Transparent;
- this.srm011.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.tableLayoutPanel1.SetColumnSpan(this.srm011, 2);
- this.srm011.Dock = System.Windows.Forms.DockStyle.Fill;
- this.srm011.Location = new System.Drawing.Point(504, 585);
- this.srm011.Margin = new System.Windows.Forms.Padding(0);
- this.srm011.Name = "srm011";
- this.srm011.Size = new System.Drawing.Size(84, 39);
- this.srm011.TabIndex = 168;
- //
- // conveyor_1080
- //
- this.conveyor_1080.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1080.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.tableLayoutPanel1.SetColumnSpan(this.conveyor_1080, 2);
- this.conveyor_1080.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1080.Location = new System.Drawing.Point(126, 234);
- this.conveyor_1080.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1080.Name = "conveyor_1080";
- this.conveyor_1080.Size = new System.Drawing.Size(84, 39);
- this.conveyor_1080.TabIndex = 169;
- //
- // conveyor_1082
- //
- this.conveyor_1082.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1082.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.tableLayoutPanel1.SetColumnSpan(this.conveyor_1082, 2);
- this.conveyor_1082.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1082.Location = new System.Drawing.Point(126, 390);
- this.conveyor_1082.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1082.Name = "conveyor_1082";
- this.conveyor_1082.Size = new System.Drawing.Size(84, 39);
- this.conveyor_1082.TabIndex = 170;
- //
- // conveyor_1084
- //
- this.conveyor_1084.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1084.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.tableLayoutPanel1.SetColumnSpan(this.conveyor_1084, 2);
- this.conveyor_1084.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1084.Location = new System.Drawing.Point(126, 546);
- this.conveyor_1084.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1084.Name = "conveyor_1084";
- this.conveyor_1084.Size = new System.Drawing.Size(84, 39);
- this.conveyor_1084.TabIndex = 171;
- //
- // conveyor_1103
- //
- this.conveyor_1103.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1103.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1103.Location = new System.Drawing.Point(1, 235);
- this.conveyor_1103.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1103.Name = "conveyor_1103";
- this.conveyor_1103.Size = new System.Drawing.Size(40, 37);
- this.conveyor_1103.TabIndex = 172;
- //
- // conveyor_1091
- //
- this.conveyor_1091.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1091.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1091.Location = new System.Drawing.Point(43, 235);
- this.conveyor_1091.Margin = new System.Windows.Forms.Padding(1);
- this.conveyor_1091.Name = "conveyor_1091";
- this.conveyor_1091.Size = new System.Drawing.Size(40, 37);
- this.conveyor_1091.TabIndex = 173;
- //
- // conveyor_1120
- //
- this.conveyor_1120.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1120.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1120.Location = new System.Drawing.Point(966, 468);
- this.conveyor_1120.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1120.Name = "conveyor_1120";
- this.conveyor_1120.Size = new System.Drawing.Size(42, 39);
- this.conveyor_1120.TabIndex = 174;
- //
- // conveyor_1126
- //
- this.conveyor_1126.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1126.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1126.Location = new System.Drawing.Point(1050, 546);
- this.conveyor_1126.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1126.Name = "conveyor_1126";
- this.conveyor_1126.Size = new System.Drawing.Size(42, 39);
- this.conveyor_1126.TabIndex = 175;
- //
- // conveyor_1127
- //
- this.conveyor_1127.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1127.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1127.Location = new System.Drawing.Point(1092, 546);
- this.conveyor_1127.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1127.Name = "conveyor_1127";
- this.conveyor_1127.Size = new System.Drawing.Size(42, 39);
- this.conveyor_1127.TabIndex = 176;
- //
- // conveyor_1128
- //
- this.conveyor_1128.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1128.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1128.Location = new System.Drawing.Point(1134, 546);
- this.conveyor_1128.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1128.Name = "conveyor_1128";
- this.conveyor_1128.Size = new System.Drawing.Size(42, 39);
- this.conveyor_1128.TabIndex = 177;
- //
- // conveyor_1129
- //
- this.conveyor_1129.BackColor = System.Drawing.Color.Transparent;
- this.tableLayoutPanel1.SetColumnSpan(this.conveyor_1129, 2);
- this.conveyor_1129.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1129.Location = new System.Drawing.Point(1218, 546);
- this.conveyor_1129.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1129.Name = "conveyor_1129";
- this.conveyor_1129.Size = new System.Drawing.Size(83, 39);
- this.conveyor_1129.TabIndex = 178;
- //
- // conveyor_1114
- //
- this.conveyor_1114.BackColor = System.Drawing.Color.Transparent;
- this.conveyor_1114.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
- this.conveyor_1114.Dock = System.Windows.Forms.DockStyle.Fill;
- this.conveyor_1114.Location = new System.Drawing.Point(1218, 429);
- this.conveyor_1114.Margin = new System.Windows.Forms.Padding(0);
- this.conveyor_1114.Name = "conveyor_1114";
- this.conveyor_1114.Size = new System.Drawing.Size(42, 39);
- this.conveyor_1114.TabIndex = 180;
- //
- // Form_Monitior
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(144)))), ((int)(((byte)(154)))));
- this.ClientSize = new System.Drawing.Size(1356, 810);
- this.Controls.Add(this.tabControl1);
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Margin = new System.Windows.Forms.Padding(2);
- this.Name = "Form_Monitior";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "立体库托盘物流监控";
- this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
- this.Load += new System.EventHandler(this.Form_Monitior_Load);
- this.tabControl1.ResumeLayout(false);
- this.tabPage1.ResumeLayout(false);
- this.myTableLayoutPanel1.ResumeLayout(false);
- this.myTableLayoutPanel2.ResumeLayout(false);
- this.tabPage2.ResumeLayout(false);
- this.tableLayoutPanel1.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.TabControl tabControl1;
- private System.Windows.Forms.TabPage tabPage1;
- private System.Windows.Forms.TabPage tabPage2;
- private MyTableLayoutPanel myTableLayoutPanel1;
- private From_Montior.Conveyor3 conveyor_1018;
- private From_Montior.Conveyor3 conveyor_1048;
- private From_Montior.Conveyor3 conveyor_1017;
- private From_Montior.Conveyor3 conveyor_1015;
- private From_Montior.Conveyor3 conveyor_1036;
- private From_Montior.Conveyor3 conveyor_1037;
- private From_Montior.Conveyor3 conveyor_1039;
- private From_Montior.Conveyor3 conveyor_1040;
- private From_Montior.Conveyor3 conveyor_1038;
- private MyTableLayoutPanel myTableLayoutPanel2;
- private From_Montior.Conveyor_R conveyor_1032;
- private From_Montior.Conveyor_R conveyor_1035;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Button button2;
- private From_Montior.Conveyor4_left conveyor_1001;
- private From_Montior.Conveyor4_left conveyor_1003;
- private From_Montior.Conveyor4_left conveyor_1005;
- private From_Montior.Conveyor conveyor_1041;
- private From_Montior.Conveyor5 conveyor_1116;
- private From_Montior.Conveyor4_left conveyor_1051;
- private From_Montior.Conveyor4_left conveyor_1053;
- private From_Montior.Conveyor4_left conveyor_1055;
- private From_Montior.Conveyor conveyor_1062;
- private From_Montior.Conveyor conveyor_1063;
- private From_Montior.Conveyor conveyor_1064;
- private From_Montior.Conveyor conveyor_1065;
- private From_Montior.Conveyor conveyor_1066;
- private From_Montior.Conveyor conveyor_1067;
- private From_Montior.Conveyor conveyor_1068;
- private From_Montior.Conveyor conveyor_1069;
- private From_Montior.Conveyor conveyor_1070;
- private From_Montior.Conveyor conveyor_1071;
- private From_Montior.Conveyor conveyor_1072;
- private From_Montior.TableCellLabel2 tableCellLabel27;
- private TableCellLabel tableCellLabel1;
- private From_Montior.Rgv rgv02;
- private TableCellLabel tableCellLabel12;
- private TableCellLabel tableCellLabel15;
- private TableCellLabel tableCellLabel18;
- private From_Montior.Rgv rgv03;
- private From_Montior.Conveyor6 conveyor_1138;
- private From_Montior.Conveyor3 conveyor_1139;
- private From_Montior.Conveyor5 conveyor_1112;
- private From_Montior.Conveyor conveyor_1111;
- private From_Montior.Conveyor conveyor_1110;
- private From_Montior.Conveyor3_B conveyor_1021;
- private From_Montior.Conveyor3_B conveyor_1022;
- private From_Montior.Conveyor3_B conveyor3_1027;
- private From_Montior.Conveyor_R conveyor_1029;
- private From_Montior.Conveyor_R conveyor_1030;
- private From_Montior.Conveyor_R conveyor_1031;
- private From_Montior.Conveyor_R conveyor_1033;
- private From_Montior.Conveyor_L conveyor_1013;
- private From_Montior.Conveyor_L conveyor_1012;
- private From_Montior.Conveyor_L conveyor_1011;
- private From_Montior.Conveyor_L conveyor_1046;
- private From_Montior.Conveyor_L conveyor_1019;
- private From_Montior.Conveyor4_L_R conveyor_1061;
- private From_Montior.Conveyor4_right conveyor_1050;
- private From_Montior.Conveyor4_right conveyor_1052;
- private From_Montior.Conveyor4_right conveyor_1054;
- private From_Montior.Conveyor4_right conveyor_1002;
- private From_Montior.Conveyor4_right conveyor_1004;
- private From_Montior.Conveyor4_right conveyor_1006;
- private From_Montior.Conveyor4_L_R conveyor_1118;
- private From_Montior.Conveyor4_L_R conveyor_1115;
- private From_Montior.LocationPostion2 locationPostion21;
- private From_Montior.LocationPostion2 locationPostion22;
- private From_Montior.LocationPostion2 locationPostion23;
- private From_Montior.LocationPostion2 locationPostion24;
- private From_Montior.LocationPostion2 locationPostion25;
- private From_Montior.LocationPostion2 locationPostion26;
- private From_Montior.LocationPostion2 locationPostion27;
- private From_Montior.LocationPostion2 locationPostion28;
- private From_Montior.LocationPostion2 locationPostion29;
- private From_Montior.LocationPostion2 locationPostion210;
- private From_Montior.LocationPostion2 locationPostion211;
- private From_Montior.LocationPostion2 locationPostion212;
- private From_Montior.LocationPostion2 locationPostion213;
- private From_Montior.LocationPostion2 locationPostion214;
- private From_Montior.LocationPostion2 locationPostion215;
- private From_Montior.LocationPostion2 locationPostion216;
- private From_Montior.LocationPostion2 locationPostion217;
- private From_Montior.TableCellLabel2 tableCellLabel210;
- private From_Montior.Srm3 srm03;
- private From_Montior.TableCellLabel2 tableCellLabel211;
- private From_Montior.TableCellLabel2 tableCellLabel212;
- private From_Montior.TableCellLabel2 tableCellLabel213;
- private From_Montior.Srm3 srm02;
- private From_Montior.TableCellLabel2 tableCellLabel214;
- private From_Montior.TableCellLabel2 tableCellLabel215;
- private From_Montior.Srm3 srm01;
- private From_Montior.LocationPostion2 locationPostion218;
- private From_Montior.LocationPostion2 locationPostion219;
- private From_Montior.LocationPostion2 locationPostion220;
- private From_Montior.LocationPostion2 locationPostion221;
- private From_Montior.LocationPostion2 locationPostion222;
- private From_Montior.LocationPostion2 locationPostion223;
- private From_Montior.LocationPostion2 locationPostion224;
- private From_Montior.LocationPostion2 locationPostion225;
- private From_Montior.LocationPostion2 locationPostion226;
- private From_Montior.LocationPostion2 locationPostion227;
- private From_Montior.LocationPostion2 locationPostion228;
- private From_Montior.LocationPostion2 locationPostion229;
- private From_Montior.LocationPostion2 locationPostion230;
- private From_Montior.LocationPostion2 locationPostion231;
- private From_Montior.LocationPostion2 locationPostion232;
- private From_Montior.LocationPostion2 locationPostion233;
- private From_Montior.LocationPostion2 locationPostion234;
- private From_Montior.LocationPostion2 locationPostion235;
- private From_Montior.LocationPostion2 locationPostion236;
- private From_Montior.LocationPostion2 locationPostion237;
- private From_Montior.LocationPostion2 locationPostion238;
- private From_Montior.LocationPostion2 locationPostion239;
- private From_Montior.LocationPostion2 locationPostion240;
- private From_Montior.LocationPostion2 locationPostion241;
- private From_Montior.LocationPostion2 locationPostion242;
- private From_Montior.LocationPostion2 locationPostion243;
- private From_Montior.LocationPostion2 locationPostion244;
- private From_Montior.LocationPostion2 locationPostion245;
- private From_Montior.LocationPostion2 locationPostion246;
- private From_Montior.LocationPostion2 locationPostion247;
- private From_Montior.LocationPostion2 locationPostion248;
- private From_Montior.LocationPostion2 locationPostion249;
- private From_Montior.LocationPostion2 locationPostion250;
- private From_Montior.LocationPostion2 locationPostion251;
- private From_Montior.LocationPostion2 locationPostion252;
- private From_Montior.LocationPostion2 locationPostion253;
- private From_Montior.LocationPostion2 locationPostion254;
- private From_Montior.LocationPostion2 locationPostion255;
- private From_Montior.LocationPostion2 locationPostion256;
- private From_Montior.LocationPostion2 locationPostion257;
- private From_Montior.LocationPostion2 locationPostion258;
- private From_Montior.LocationPostion2 locationPostion259;
- private From_Montior.LocationPostion2 locationPostion260;
- private From_Montior.LocationPostion2 locationPostion261;
- private From_Montior.LocationPostion2 locationPostion262;
- private From_Montior.LocationPostion2 locationPostion263;
- private From_Montior.LocationPostion2 locationPostion264;
- private From_Montior.LocationPostion2 locationPostion265;
- private From_Montior.LocationPostion2 locationPostion266;
- private From_Montior.LocationPostion2 locationPostion267;
- private From_Montior.LocationPostion2 locationPostion268;
- private From_Montior.LocationPostion2 locationPostion269;
- private From_Montior.LocationPostion2 locationPostion270;
- private From_Montior.LocationPostion2 locationPostion271;
- private From_Montior.LocationPostion2 locationPostion272;
- private From_Montior.LocationPostion2 locationPostion273;
- private From_Montior.LocationPostion2 locationPostion274;
- private From_Montior.LocationPostion2 locationPostion275;
- private From_Montior.LocationPostion2 locationPostion276;
- private From_Montior.LocationPostion2 locationPostion277;
- private From_Montior.LocationPostion2 locationPostion278;
- private From_Montior.LocationPostion2 locationPostion279;
- private From_Montior.LocationPostion2 locationPostion280;
- private From_Montior.LocationPostion2 locationPostion281;
- private From_Montior.LocationPostion2 locationPostion282;
- private From_Montior.LocationPostion2 locationPostion283;
- private From_Montior.LocationPostion2 locationPostion284;
- private From_Montior.LocationPostion2 locationPostion285;
- private From_Montior.LocationPostion2 locationPostion286;
- private From_Montior.LocationPostion2 locationPostion287;
- private From_Montior.LocationPostion2 locationPostion288;
- private From_Montior.LocationPostion2 locationPostion289;
- private From_Montior.LocationPostion2 locationPostion290;
- private From_Montior.LocationPostion2 locationPostion291;
- private From_Montior.LocationPostion2 locationPostion292;
- private From_Montior.LocationPostion2 locationPostion293;
- private From_Montior.LocationPostion2 locationPostion294;
- private From_Montior.LocationPostion2 locationPostion295;
- private From_Montior.LocationPostion2 locationPostion296;
- private From_Montior.LocationPostion2 locationPostion297;
- private From_Montior.LocationPostion2 locationPostion298;
- private From_Montior.LocationPostion2 locationPostion299;
- private From_Montior.LocationPostion2 locationPostion2100;
- private From_Montior.LocationPostion2 locationPostion2101;
- private From_Montior.LocationPostion2 locationPostion2102;
- private MyTableLayoutPanel tableLayoutPanel1;
- private TableCellLabel tableCellLabel16;
- private From_Montior.Conveyor conveyor_1090;
- private From_Montior.Conveyor conveyor_1092;
- private From_Montior.Conveyor conveyor_1093;
- private From_Montior.Conveyor conveyor_1094;
- private From_Montior.Conveyor conveyor_1095;
- private From_Montior.Conveyor conveyor_1096;
- private From_Montior.Conveyor conveyor_1097;
- private From_Montior.Conveyor conveyor_1098;
- private From_Montior.Conveyor conveyor_1099;
- private From_Montior.Conveyor conveyor_1100;
- private From_Montior.Conveyor conveyor_1101;
- private From_Montior.Conveyor conveyor_1102;
- private From_Montior.Rgv rgv04;
- private TableCellLabel tableCellLabel41;
- private From_Montior.Conveyor4_left conveyor_1081;
- private From_Montior.Conveyor4_left conveyor_1083;
- private From_Montior.Conveyor4_left conveyor_1085;
- private From_Montior.Conveyor5 conveyor2_1116;
- private From_Montior.Conveyor conveyor_1121;
- private From_Montior.Conveyor3 conveyor_1123;
- private From_Montior.Conveyor3 conveyor_1124;
- private From_Montior.Conveyor conveyor_1130;
- private From_Montior.Conveyor3 conveyor_1132;
- private From_Montior.Conveyor3 conveyor_1133;
- private From_Montior.Conveyor3 conveyor_1134;
- private From_Montior.Conveyor3 conveyor_1136;
- private From_Montior.Conveyor6 conveyor_1137;
- private From_Montior.Conveyor5 conveyor2_1114;
- private From_Montior.LocationPostion2 locationPostion2103;
- private From_Montior.LocationPostion2 locationPostion2104;
- private From_Montior.LocationPostion2 locationPostion2105;
- private From_Montior.LocationPostion2 locationPostion2106;
- private From_Montior.LocationPostion2 locationPostion2107;
- private From_Montior.LocationPostion2 locationPostion2108;
- private From_Montior.LocationPostion2 locationPostion2109;
- private From_Montior.LocationPostion2 locationPostion2110;
- private From_Montior.LocationPostion2 locationPostion2111;
- private From_Montior.LocationPostion2 locationPostion2112;
- private From_Montior.LocationPostion2 locationPostion2113;
- private From_Montior.LocationPostion2 locationPostion2114;
- private From_Montior.LocationPostion2 locationPostion2115;
- private From_Montior.LocationPostion2 locationPostion2116;
- private From_Montior.LocationPostion2 locationPostion2117;
- private From_Montior.LocationPostion2 locationPostion2118;
- private From_Montior.Srm3 srm033;
- private From_Montior.TableCellLabel2 tableCellLabel216;
- private From_Montior.TableCellLabel2 tableCellLabel217;
- private From_Montior.LocationPostion2 locationPostion2119;
- private From_Montior.LocationPostion2 locationPostion2120;
- private From_Montior.LocationPostion2 locationPostion2121;
- private From_Montior.LocationPostion2 locationPostion2122;
- private From_Montior.LocationPostion2 locationPostion2123;
- private From_Montior.LocationPostion2 locationPostion2124;
- private From_Montior.LocationPostion2 locationPostion2125;
- private From_Montior.LocationPostion2 locationPostion2126;
- private From_Montior.LocationPostion2 locationPostion2127;
- private From_Montior.LocationPostion2 locationPostion2128;
- private From_Montior.LocationPostion2 locationPostion2129;
- private From_Montior.LocationPostion2 locationPostion2130;
- private From_Montior.LocationPostion2 locationPostion2131;
- private From_Montior.LocationPostion2 locationPostion2132;
- private From_Montior.LocationPostion2 locationPostion2133;
- private From_Montior.LocationPostion2 locationPostion2134;
- private From_Montior.LocationPostion2 locationPostion2135;
- private From_Montior.LocationPostion2 locationPostion2136;
- private From_Montior.LocationPostion2 locationPostion2137;
- private From_Montior.LocationPostion2 locationPostion2138;
- private From_Montior.LocationPostion2 locationPostion2139;
- private From_Montior.LocationPostion2 locationPostion2140;
- private From_Montior.LocationPostion2 locationPostion2141;
- private From_Montior.LocationPostion2 locationPostion2142;
- private From_Montior.LocationPostion2 locationPostion2143;
- private From_Montior.LocationPostion2 locationPostion2144;
- private From_Montior.LocationPostion2 locationPostion2145;
- private From_Montior.LocationPostion2 locationPostion2146;
- private From_Montior.LocationPostion2 locationPostion2147;
- private From_Montior.LocationPostion2 locationPostion2148;
- private From_Montior.LocationPostion2 locationPostion2149;
- private From_Montior.LocationPostion2 locationPostion2150;
- private From_Montior.LocationPostion2 locationPostion2151;
- private From_Montior.LocationPostion2 locationPostion2152;
- private From_Montior.LocationPostion2 locationPostion2153;
- private From_Montior.LocationPostion2 locationPostion2154;
- private From_Montior.LocationPostion2 locationPostion2155;
- private From_Montior.LocationPostion2 locationPostion2156;
- private From_Montior.LocationPostion2 locationPostion2157;
- private From_Montior.LocationPostion2 locationPostion2158;
- private From_Montior.LocationPostion2 locationPostion2159;
- private From_Montior.LocationPostion2 locationPostion2160;
- private From_Montior.LocationPostion2 locationPostion2161;
- private From_Montior.LocationPostion2 locationPostion2162;
- private From_Montior.LocationPostion2 locationPostion2163;
- private From_Montior.LocationPostion2 locationPostion2164;
- private From_Montior.LocationPostion2 locationPostion2165;
- private From_Montior.LocationPostion2 locationPostion2166;
- private From_Montior.TableCellLabel2 tableCellLabel218;
- private From_Montior.TableCellLabel2 tableCellLabel219;
- private From_Montior.Srm3 srm022;
- private From_Montior.LocationPostion2 locationPostion2167;
- private From_Montior.LocationPostion2 locationPostion2168;
- private From_Montior.LocationPostion2 locationPostion2169;
- private From_Montior.LocationPostion2 locationPostion2170;
- private From_Montior.LocationPostion2 locationPostion2171;
- private From_Montior.LocationPostion2 locationPostion2172;
- private From_Montior.LocationPostion2 locationPostion2173;
- private From_Montior.LocationPostion2 locationPostion2174;
- private From_Montior.LocationPostion2 locationPostion2175;
- private From_Montior.LocationPostion2 locationPostion2176;
- private From_Montior.LocationPostion2 locationPostion2177;
- private From_Montior.LocationPostion2 locationPostion2178;
- private From_Montior.LocationPostion2 locationPostion2179;
- private From_Montior.LocationPostion2 locationPostion2180;
- private From_Montior.LocationPostion2 locationPostion2181;
- private From_Montior.LocationPostion2 locationPostion2182;
- private From_Montior.LocationPostion2 locationPostion2183;
- private From_Montior.LocationPostion2 locationPostion2184;
- private From_Montior.LocationPostion2 locationPostion2185;
- private From_Montior.LocationPostion2 locationPostion2186;
- private From_Montior.LocationPostion2 locationPostion2187;
- private From_Montior.LocationPostion2 locationPostion2188;
- private From_Montior.LocationPostion2 locationPostion2189;
- private From_Montior.LocationPostion2 locationPostion2190;
- private From_Montior.LocationPostion2 locationPostion2191;
- private From_Montior.LocationPostion2 locationPostion2192;
- private From_Montior.LocationPostion2 locationPostion2193;
- private From_Montior.LocationPostion2 locationPostion2194;
- private From_Montior.LocationPostion2 locationPostion2195;
- private From_Montior.LocationPostion2 locationPostion2196;
- private From_Montior.LocationPostion2 locationPostion2197;
- private From_Montior.LocationPostion2 locationPostion2198;
- private From_Montior.TableCellLabel2 tableCellLabel220;
- private From_Montior.TableCellLabel2 tableCellLabel221;
- private From_Montior.Srm3 srm011;
- private From_Montior.Conveyor4_right conveyor_1080;
- private From_Montior.Conveyor4_right conveyor_1082;
- private From_Montior.Conveyor4_right conveyor_1084;
- private From_Montior.Conveyor4_L_R conveyor_1103;
- private From_Montior.Conveyor4_L_R conveyor_1091;
- private From_Montior.Conveyor4_L_R conveyor_1120;
- private From_Montior.Conveyor4_L_R conveyor_1126;
- private From_Montior.Conveyor4_L_R conveyor_1127;
- private From_Montior.Conveyor4_L_R conveyor_1128;
- private From_Montior.Conveyor4_L_R conveyor_1129;
- private From_Montior.Conveyor conveyor_1114;
- private From_Montior.Conveyor4_L_R conveyor_1044;
- private From_Montior.TableCellLabel2 tableCellLabel23;
- private From_Montior.Rgv02 rgv01;
- }
- }
|