Form_Monitior.Designer.cs 330 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941
  1. namespace WCS_Client.From
  2. {
  3. partial class Form_Monitior
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. //protected override void Dispose(bool disposing)
  14. //{
  15. // if (disposing && (components != null))
  16. // {
  17. // components.Dispose();
  18. // }
  19. // base.Dispose(disposing);
  20. //}
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form_Monitior));
  29. this.tabControl1 = new System.Windows.Forms.TabControl();
  30. this.tabPage1 = new System.Windows.Forms.TabPage();
  31. this.myTableLayoutPanel1 = new WCS_Client.From.MyTableLayoutPanel();
  32. this.conveyor_1018 = new WCS_Client.From.From_Montior.Conveyor3();
  33. this.conveyor_1048 = new WCS_Client.From.From_Montior.Conveyor3();
  34. this.conveyor_1017 = new WCS_Client.From.From_Montior.Conveyor3();
  35. this.conveyor_1015 = new WCS_Client.From.From_Montior.Conveyor3();
  36. this.conveyor_1036 = new WCS_Client.From.From_Montior.Conveyor3();
  37. this.conveyor_1037 = new WCS_Client.From.From_Montior.Conveyor3();
  38. this.conveyor_1039 = new WCS_Client.From.From_Montior.Conveyor3();
  39. this.conveyor_1040 = new WCS_Client.From.From_Montior.Conveyor3();
  40. this.conveyor_1038 = new WCS_Client.From.From_Montior.Conveyor3();
  41. this.myTableLayoutPanel2 = new WCS_Client.From.MyTableLayoutPanel();
  42. this.conveyor_1032 = new WCS_Client.From.From_Montior.Conveyor_R();
  43. this.conveyor_1035 = new WCS_Client.From.From_Montior.Conveyor_R();
  44. this.button1 = new System.Windows.Forms.Button();
  45. this.button2 = new System.Windows.Forms.Button();
  46. this.conveyor_1001 = new WCS_Client.From.From_Montior.Conveyor4_left();
  47. this.conveyor_1003 = new WCS_Client.From.From_Montior.Conveyor4_left();
  48. this.conveyor_1005 = new WCS_Client.From.From_Montior.Conveyor4_left();
  49. this.conveyor_1041 = new WCS_Client.From.From_Montior.Conveyor();
  50. this.conveyor_1116 = new WCS_Client.From.From_Montior.Conveyor5();
  51. this.conveyor_1051 = new WCS_Client.From.From_Montior.Conveyor4_left();
  52. this.conveyor_1053 = new WCS_Client.From.From_Montior.Conveyor4_left();
  53. this.conveyor_1055 = new WCS_Client.From.From_Montior.Conveyor4_left();
  54. this.conveyor_1062 = new WCS_Client.From.From_Montior.Conveyor();
  55. this.conveyor_1063 = new WCS_Client.From.From_Montior.Conveyor();
  56. this.conveyor_1064 = new WCS_Client.From.From_Montior.Conveyor();
  57. this.conveyor_1065 = new WCS_Client.From.From_Montior.Conveyor();
  58. this.conveyor_1066 = new WCS_Client.From.From_Montior.Conveyor();
  59. this.conveyor_1067 = new WCS_Client.From.From_Montior.Conveyor();
  60. this.conveyor_1068 = new WCS_Client.From.From_Montior.Conveyor();
  61. this.conveyor_1069 = new WCS_Client.From.From_Montior.Conveyor();
  62. this.conveyor_1070 = new WCS_Client.From.From_Montior.Conveyor();
  63. this.conveyor_1071 = new WCS_Client.From.From_Montior.Conveyor();
  64. this.conveyor_1072 = new WCS_Client.From.From_Montior.Conveyor();
  65. this.tableCellLabel23 = new WCS_Client.From.From_Montior.TableCellLabel2();
  66. this.tableCellLabel27 = new WCS_Client.From.From_Montior.TableCellLabel2();
  67. this.rgv01 = new WCS_Client.From.From_Montior.Rgv02();
  68. this.tableCellLabel1 = new WCS_Client.From.TableCellLabel();
  69. this.rgv02 = new WCS_Client.From.From_Montior.Rgv();
  70. this.tableCellLabel12 = new WCS_Client.From.TableCellLabel();
  71. this.tableCellLabel15 = new WCS_Client.From.TableCellLabel();
  72. this.tableCellLabel18 = new WCS_Client.From.TableCellLabel();
  73. this.rgv03 = new WCS_Client.From.From_Montior.Rgv();
  74. this.conveyor_1138 = new WCS_Client.From.From_Montior.Conveyor6();
  75. this.conveyor_1139 = new WCS_Client.From.From_Montior.Conveyor3();
  76. this.conveyor_1112 = new WCS_Client.From.From_Montior.Conveyor5();
  77. this.conveyor_1111 = new WCS_Client.From.From_Montior.Conveyor();
  78. this.conveyor_1110 = new WCS_Client.From.From_Montior.Conveyor();
  79. this.conveyor_1021 = new WCS_Client.From.From_Montior.Conveyor3_B();
  80. this.conveyor_1022 = new WCS_Client.From.From_Montior.Conveyor3_B();
  81. this.conveyor3_1027 = new WCS_Client.From.From_Montior.Conveyor3_B();
  82. this.conveyor_1029 = new WCS_Client.From.From_Montior.Conveyor_R();
  83. this.conveyor_1030 = new WCS_Client.From.From_Montior.Conveyor_R();
  84. this.conveyor_1031 = new WCS_Client.From.From_Montior.Conveyor_R();
  85. this.conveyor_1033 = new WCS_Client.From.From_Montior.Conveyor_R();
  86. this.conveyor_1013 = new WCS_Client.From.From_Montior.Conveyor_L();
  87. this.conveyor_1012 = new WCS_Client.From.From_Montior.Conveyor_L();
  88. this.conveyor_1011 = new WCS_Client.From.From_Montior.Conveyor_L();
  89. this.conveyor_1046 = new WCS_Client.From.From_Montior.Conveyor_L();
  90. this.conveyor_1019 = new WCS_Client.From.From_Montior.Conveyor_L();
  91. this.conveyor_1061 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  92. this.conveyor_1050 = new WCS_Client.From.From_Montior.Conveyor4_right();
  93. this.conveyor_1052 = new WCS_Client.From.From_Montior.Conveyor4_right();
  94. this.conveyor_1054 = new WCS_Client.From.From_Montior.Conveyor4_right();
  95. this.conveyor_1002 = new WCS_Client.From.From_Montior.Conveyor4_right();
  96. this.conveyor_1004 = new WCS_Client.From.From_Montior.Conveyor4_right();
  97. this.conveyor_1006 = new WCS_Client.From.From_Montior.Conveyor4_right();
  98. this.conveyor_1118 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  99. this.conveyor_1115 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  100. this.locationPostion21 = new WCS_Client.From.From_Montior.LocationPostion2();
  101. this.locationPostion22 = new WCS_Client.From.From_Montior.LocationPostion2();
  102. this.locationPostion23 = new WCS_Client.From.From_Montior.LocationPostion2();
  103. this.locationPostion24 = new WCS_Client.From.From_Montior.LocationPostion2();
  104. this.locationPostion25 = new WCS_Client.From.From_Montior.LocationPostion2();
  105. this.locationPostion26 = new WCS_Client.From.From_Montior.LocationPostion2();
  106. this.locationPostion27 = new WCS_Client.From.From_Montior.LocationPostion2();
  107. this.locationPostion28 = new WCS_Client.From.From_Montior.LocationPostion2();
  108. this.locationPostion29 = new WCS_Client.From.From_Montior.LocationPostion2();
  109. this.locationPostion210 = new WCS_Client.From.From_Montior.LocationPostion2();
  110. this.locationPostion211 = new WCS_Client.From.From_Montior.LocationPostion2();
  111. this.locationPostion212 = new WCS_Client.From.From_Montior.LocationPostion2();
  112. this.locationPostion213 = new WCS_Client.From.From_Montior.LocationPostion2();
  113. this.locationPostion214 = new WCS_Client.From.From_Montior.LocationPostion2();
  114. this.locationPostion215 = new WCS_Client.From.From_Montior.LocationPostion2();
  115. this.locationPostion216 = new WCS_Client.From.From_Montior.LocationPostion2();
  116. this.locationPostion217 = new WCS_Client.From.From_Montior.LocationPostion2();
  117. this.tableCellLabel210 = new WCS_Client.From.From_Montior.TableCellLabel2();
  118. this.srm03 = new WCS_Client.From.From_Montior.Srm3();
  119. this.tableCellLabel211 = new WCS_Client.From.From_Montior.TableCellLabel2();
  120. this.tableCellLabel212 = new WCS_Client.From.From_Montior.TableCellLabel2();
  121. this.tableCellLabel213 = new WCS_Client.From.From_Montior.TableCellLabel2();
  122. this.srm02 = new WCS_Client.From.From_Montior.Srm3();
  123. this.tableCellLabel214 = new WCS_Client.From.From_Montior.TableCellLabel2();
  124. this.tableCellLabel215 = new WCS_Client.From.From_Montior.TableCellLabel2();
  125. this.srm01 = new WCS_Client.From.From_Montior.Srm3();
  126. this.locationPostion218 = new WCS_Client.From.From_Montior.LocationPostion2();
  127. this.locationPostion219 = new WCS_Client.From.From_Montior.LocationPostion2();
  128. this.locationPostion220 = new WCS_Client.From.From_Montior.LocationPostion2();
  129. this.locationPostion221 = new WCS_Client.From.From_Montior.LocationPostion2();
  130. this.locationPostion222 = new WCS_Client.From.From_Montior.LocationPostion2();
  131. this.locationPostion223 = new WCS_Client.From.From_Montior.LocationPostion2();
  132. this.locationPostion224 = new WCS_Client.From.From_Montior.LocationPostion2();
  133. this.locationPostion225 = new WCS_Client.From.From_Montior.LocationPostion2();
  134. this.locationPostion226 = new WCS_Client.From.From_Montior.LocationPostion2();
  135. this.locationPostion227 = new WCS_Client.From.From_Montior.LocationPostion2();
  136. this.locationPostion228 = new WCS_Client.From.From_Montior.LocationPostion2();
  137. this.locationPostion229 = new WCS_Client.From.From_Montior.LocationPostion2();
  138. this.locationPostion230 = new WCS_Client.From.From_Montior.LocationPostion2();
  139. this.locationPostion231 = new WCS_Client.From.From_Montior.LocationPostion2();
  140. this.locationPostion232 = new WCS_Client.From.From_Montior.LocationPostion2();
  141. this.locationPostion233 = new WCS_Client.From.From_Montior.LocationPostion2();
  142. this.locationPostion234 = new WCS_Client.From.From_Montior.LocationPostion2();
  143. this.locationPostion235 = new WCS_Client.From.From_Montior.LocationPostion2();
  144. this.locationPostion236 = new WCS_Client.From.From_Montior.LocationPostion2();
  145. this.locationPostion237 = new WCS_Client.From.From_Montior.LocationPostion2();
  146. this.locationPostion238 = new WCS_Client.From.From_Montior.LocationPostion2();
  147. this.locationPostion239 = new WCS_Client.From.From_Montior.LocationPostion2();
  148. this.locationPostion240 = new WCS_Client.From.From_Montior.LocationPostion2();
  149. this.locationPostion241 = new WCS_Client.From.From_Montior.LocationPostion2();
  150. this.locationPostion242 = new WCS_Client.From.From_Montior.LocationPostion2();
  151. this.locationPostion243 = new WCS_Client.From.From_Montior.LocationPostion2();
  152. this.locationPostion244 = new WCS_Client.From.From_Montior.LocationPostion2();
  153. this.locationPostion245 = new WCS_Client.From.From_Montior.LocationPostion2();
  154. this.locationPostion246 = new WCS_Client.From.From_Montior.LocationPostion2();
  155. this.locationPostion247 = new WCS_Client.From.From_Montior.LocationPostion2();
  156. this.locationPostion248 = new WCS_Client.From.From_Montior.LocationPostion2();
  157. this.locationPostion249 = new WCS_Client.From.From_Montior.LocationPostion2();
  158. this.locationPostion250 = new WCS_Client.From.From_Montior.LocationPostion2();
  159. this.locationPostion251 = new WCS_Client.From.From_Montior.LocationPostion2();
  160. this.locationPostion252 = new WCS_Client.From.From_Montior.LocationPostion2();
  161. this.locationPostion253 = new WCS_Client.From.From_Montior.LocationPostion2();
  162. this.locationPostion254 = new WCS_Client.From.From_Montior.LocationPostion2();
  163. this.locationPostion255 = new WCS_Client.From.From_Montior.LocationPostion2();
  164. this.locationPostion256 = new WCS_Client.From.From_Montior.LocationPostion2();
  165. this.locationPostion257 = new WCS_Client.From.From_Montior.LocationPostion2();
  166. this.locationPostion258 = new WCS_Client.From.From_Montior.LocationPostion2();
  167. this.locationPostion259 = new WCS_Client.From.From_Montior.LocationPostion2();
  168. this.locationPostion260 = new WCS_Client.From.From_Montior.LocationPostion2();
  169. this.locationPostion261 = new WCS_Client.From.From_Montior.LocationPostion2();
  170. this.locationPostion262 = new WCS_Client.From.From_Montior.LocationPostion2();
  171. this.locationPostion263 = new WCS_Client.From.From_Montior.LocationPostion2();
  172. this.locationPostion264 = new WCS_Client.From.From_Montior.LocationPostion2();
  173. this.locationPostion265 = new WCS_Client.From.From_Montior.LocationPostion2();
  174. this.locationPostion266 = new WCS_Client.From.From_Montior.LocationPostion2();
  175. this.locationPostion267 = new WCS_Client.From.From_Montior.LocationPostion2();
  176. this.locationPostion268 = new WCS_Client.From.From_Montior.LocationPostion2();
  177. this.locationPostion269 = new WCS_Client.From.From_Montior.LocationPostion2();
  178. this.locationPostion270 = new WCS_Client.From.From_Montior.LocationPostion2();
  179. this.locationPostion271 = new WCS_Client.From.From_Montior.LocationPostion2();
  180. this.locationPostion272 = new WCS_Client.From.From_Montior.LocationPostion2();
  181. this.locationPostion273 = new WCS_Client.From.From_Montior.LocationPostion2();
  182. this.locationPostion274 = new WCS_Client.From.From_Montior.LocationPostion2();
  183. this.locationPostion275 = new WCS_Client.From.From_Montior.LocationPostion2();
  184. this.locationPostion276 = new WCS_Client.From.From_Montior.LocationPostion2();
  185. this.locationPostion277 = new WCS_Client.From.From_Montior.LocationPostion2();
  186. this.locationPostion278 = new WCS_Client.From.From_Montior.LocationPostion2();
  187. this.locationPostion279 = new WCS_Client.From.From_Montior.LocationPostion2();
  188. this.locationPostion280 = new WCS_Client.From.From_Montior.LocationPostion2();
  189. this.locationPostion281 = new WCS_Client.From.From_Montior.LocationPostion2();
  190. this.locationPostion282 = new WCS_Client.From.From_Montior.LocationPostion2();
  191. this.locationPostion283 = new WCS_Client.From.From_Montior.LocationPostion2();
  192. this.locationPostion284 = new WCS_Client.From.From_Montior.LocationPostion2();
  193. this.locationPostion285 = new WCS_Client.From.From_Montior.LocationPostion2();
  194. this.locationPostion286 = new WCS_Client.From.From_Montior.LocationPostion2();
  195. this.locationPostion287 = new WCS_Client.From.From_Montior.LocationPostion2();
  196. this.locationPostion288 = new WCS_Client.From.From_Montior.LocationPostion2();
  197. this.locationPostion289 = new WCS_Client.From.From_Montior.LocationPostion2();
  198. this.locationPostion290 = new WCS_Client.From.From_Montior.LocationPostion2();
  199. this.locationPostion291 = new WCS_Client.From.From_Montior.LocationPostion2();
  200. this.locationPostion292 = new WCS_Client.From.From_Montior.LocationPostion2();
  201. this.locationPostion293 = new WCS_Client.From.From_Montior.LocationPostion2();
  202. this.locationPostion294 = new WCS_Client.From.From_Montior.LocationPostion2();
  203. this.locationPostion295 = new WCS_Client.From.From_Montior.LocationPostion2();
  204. this.locationPostion296 = new WCS_Client.From.From_Montior.LocationPostion2();
  205. this.locationPostion297 = new WCS_Client.From.From_Montior.LocationPostion2();
  206. this.locationPostion298 = new WCS_Client.From.From_Montior.LocationPostion2();
  207. this.locationPostion299 = new WCS_Client.From.From_Montior.LocationPostion2();
  208. this.locationPostion2100 = new WCS_Client.From.From_Montior.LocationPostion2();
  209. this.locationPostion2101 = new WCS_Client.From.From_Montior.LocationPostion2();
  210. this.locationPostion2102 = new WCS_Client.From.From_Montior.LocationPostion2();
  211. this.conveyor_1044 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  212. this.tabPage2 = new System.Windows.Forms.TabPage();
  213. this.tableLayoutPanel1 = new WCS_Client.From.MyTableLayoutPanel();
  214. this.tableCellLabel16 = new WCS_Client.From.TableCellLabel();
  215. this.conveyor_1090 = new WCS_Client.From.From_Montior.Conveyor();
  216. this.conveyor_1092 = new WCS_Client.From.From_Montior.Conveyor();
  217. this.conveyor_1093 = new WCS_Client.From.From_Montior.Conveyor();
  218. this.conveyor_1094 = new WCS_Client.From.From_Montior.Conveyor();
  219. this.conveyor_1095 = new WCS_Client.From.From_Montior.Conveyor();
  220. this.conveyor_1096 = new WCS_Client.From.From_Montior.Conveyor();
  221. this.conveyor_1097 = new WCS_Client.From.From_Montior.Conveyor();
  222. this.conveyor_1098 = new WCS_Client.From.From_Montior.Conveyor();
  223. this.conveyor_1099 = new WCS_Client.From.From_Montior.Conveyor();
  224. this.conveyor_1100 = new WCS_Client.From.From_Montior.Conveyor();
  225. this.conveyor_1101 = new WCS_Client.From.From_Montior.Conveyor();
  226. this.conveyor_1102 = new WCS_Client.From.From_Montior.Conveyor();
  227. this.rgv04 = new WCS_Client.From.From_Montior.Rgv();
  228. this.tableCellLabel41 = new WCS_Client.From.TableCellLabel();
  229. this.conveyor_1081 = new WCS_Client.From.From_Montior.Conveyor4_left();
  230. this.conveyor_1083 = new WCS_Client.From.From_Montior.Conveyor4_left();
  231. this.conveyor_1085 = new WCS_Client.From.From_Montior.Conveyor4_left();
  232. this.conveyor2_1116 = new WCS_Client.From.From_Montior.Conveyor5();
  233. this.conveyor_1121 = new WCS_Client.From.From_Montior.Conveyor();
  234. this.conveyor_1123 = new WCS_Client.From.From_Montior.Conveyor3();
  235. this.conveyor_1124 = new WCS_Client.From.From_Montior.Conveyor3();
  236. this.conveyor_1130 = new WCS_Client.From.From_Montior.Conveyor();
  237. this.conveyor_1132 = new WCS_Client.From.From_Montior.Conveyor3();
  238. this.conveyor_1133 = new WCS_Client.From.From_Montior.Conveyor3();
  239. this.conveyor_1134 = new WCS_Client.From.From_Montior.Conveyor3();
  240. this.conveyor_1136 = new WCS_Client.From.From_Montior.Conveyor3();
  241. this.conveyor_1137 = new WCS_Client.From.From_Montior.Conveyor6();
  242. this.conveyor2_1114 = new WCS_Client.From.From_Montior.Conveyor5();
  243. this.locationPostion2103 = new WCS_Client.From.From_Montior.LocationPostion2();
  244. this.locationPostion2104 = new WCS_Client.From.From_Montior.LocationPostion2();
  245. this.locationPostion2105 = new WCS_Client.From.From_Montior.LocationPostion2();
  246. this.locationPostion2106 = new WCS_Client.From.From_Montior.LocationPostion2();
  247. this.locationPostion2107 = new WCS_Client.From.From_Montior.LocationPostion2();
  248. this.locationPostion2108 = new WCS_Client.From.From_Montior.LocationPostion2();
  249. this.locationPostion2109 = new WCS_Client.From.From_Montior.LocationPostion2();
  250. this.locationPostion2110 = new WCS_Client.From.From_Montior.LocationPostion2();
  251. this.locationPostion2111 = new WCS_Client.From.From_Montior.LocationPostion2();
  252. this.locationPostion2112 = new WCS_Client.From.From_Montior.LocationPostion2();
  253. this.locationPostion2113 = new WCS_Client.From.From_Montior.LocationPostion2();
  254. this.locationPostion2114 = new WCS_Client.From.From_Montior.LocationPostion2();
  255. this.locationPostion2115 = new WCS_Client.From.From_Montior.LocationPostion2();
  256. this.locationPostion2116 = new WCS_Client.From.From_Montior.LocationPostion2();
  257. this.locationPostion2117 = new WCS_Client.From.From_Montior.LocationPostion2();
  258. this.locationPostion2118 = new WCS_Client.From.From_Montior.LocationPostion2();
  259. this.srm033 = new WCS_Client.From.From_Montior.Srm3();
  260. this.tableCellLabel216 = new WCS_Client.From.From_Montior.TableCellLabel2();
  261. this.tableCellLabel217 = new WCS_Client.From.From_Montior.TableCellLabel2();
  262. this.locationPostion2119 = new WCS_Client.From.From_Montior.LocationPostion2();
  263. this.locationPostion2120 = new WCS_Client.From.From_Montior.LocationPostion2();
  264. this.locationPostion2121 = new WCS_Client.From.From_Montior.LocationPostion2();
  265. this.locationPostion2122 = new WCS_Client.From.From_Montior.LocationPostion2();
  266. this.locationPostion2123 = new WCS_Client.From.From_Montior.LocationPostion2();
  267. this.locationPostion2124 = new WCS_Client.From.From_Montior.LocationPostion2();
  268. this.locationPostion2125 = new WCS_Client.From.From_Montior.LocationPostion2();
  269. this.locationPostion2126 = new WCS_Client.From.From_Montior.LocationPostion2();
  270. this.locationPostion2127 = new WCS_Client.From.From_Montior.LocationPostion2();
  271. this.locationPostion2128 = new WCS_Client.From.From_Montior.LocationPostion2();
  272. this.locationPostion2129 = new WCS_Client.From.From_Montior.LocationPostion2();
  273. this.locationPostion2130 = new WCS_Client.From.From_Montior.LocationPostion2();
  274. this.locationPostion2131 = new WCS_Client.From.From_Montior.LocationPostion2();
  275. this.locationPostion2132 = new WCS_Client.From.From_Montior.LocationPostion2();
  276. this.locationPostion2133 = new WCS_Client.From.From_Montior.LocationPostion2();
  277. this.locationPostion2134 = new WCS_Client.From.From_Montior.LocationPostion2();
  278. this.locationPostion2135 = new WCS_Client.From.From_Montior.LocationPostion2();
  279. this.locationPostion2136 = new WCS_Client.From.From_Montior.LocationPostion2();
  280. this.locationPostion2137 = new WCS_Client.From.From_Montior.LocationPostion2();
  281. this.locationPostion2138 = new WCS_Client.From.From_Montior.LocationPostion2();
  282. this.locationPostion2139 = new WCS_Client.From.From_Montior.LocationPostion2();
  283. this.locationPostion2140 = new WCS_Client.From.From_Montior.LocationPostion2();
  284. this.locationPostion2141 = new WCS_Client.From.From_Montior.LocationPostion2();
  285. this.locationPostion2142 = new WCS_Client.From.From_Montior.LocationPostion2();
  286. this.locationPostion2143 = new WCS_Client.From.From_Montior.LocationPostion2();
  287. this.locationPostion2144 = new WCS_Client.From.From_Montior.LocationPostion2();
  288. this.locationPostion2145 = new WCS_Client.From.From_Montior.LocationPostion2();
  289. this.locationPostion2146 = new WCS_Client.From.From_Montior.LocationPostion2();
  290. this.locationPostion2147 = new WCS_Client.From.From_Montior.LocationPostion2();
  291. this.locationPostion2148 = new WCS_Client.From.From_Montior.LocationPostion2();
  292. this.locationPostion2149 = new WCS_Client.From.From_Montior.LocationPostion2();
  293. this.locationPostion2150 = new WCS_Client.From.From_Montior.LocationPostion2();
  294. this.locationPostion2151 = new WCS_Client.From.From_Montior.LocationPostion2();
  295. this.locationPostion2152 = new WCS_Client.From.From_Montior.LocationPostion2();
  296. this.locationPostion2153 = new WCS_Client.From.From_Montior.LocationPostion2();
  297. this.locationPostion2154 = new WCS_Client.From.From_Montior.LocationPostion2();
  298. this.locationPostion2155 = new WCS_Client.From.From_Montior.LocationPostion2();
  299. this.locationPostion2156 = new WCS_Client.From.From_Montior.LocationPostion2();
  300. this.locationPostion2157 = new WCS_Client.From.From_Montior.LocationPostion2();
  301. this.locationPostion2158 = new WCS_Client.From.From_Montior.LocationPostion2();
  302. this.locationPostion2159 = new WCS_Client.From.From_Montior.LocationPostion2();
  303. this.locationPostion2160 = new WCS_Client.From.From_Montior.LocationPostion2();
  304. this.locationPostion2161 = new WCS_Client.From.From_Montior.LocationPostion2();
  305. this.locationPostion2162 = new WCS_Client.From.From_Montior.LocationPostion2();
  306. this.locationPostion2163 = new WCS_Client.From.From_Montior.LocationPostion2();
  307. this.locationPostion2164 = new WCS_Client.From.From_Montior.LocationPostion2();
  308. this.locationPostion2165 = new WCS_Client.From.From_Montior.LocationPostion2();
  309. this.locationPostion2166 = new WCS_Client.From.From_Montior.LocationPostion2();
  310. this.tableCellLabel218 = new WCS_Client.From.From_Montior.TableCellLabel2();
  311. this.tableCellLabel219 = new WCS_Client.From.From_Montior.TableCellLabel2();
  312. this.srm022 = new WCS_Client.From.From_Montior.Srm3();
  313. this.locationPostion2167 = new WCS_Client.From.From_Montior.LocationPostion2();
  314. this.locationPostion2168 = new WCS_Client.From.From_Montior.LocationPostion2();
  315. this.locationPostion2169 = new WCS_Client.From.From_Montior.LocationPostion2();
  316. this.locationPostion2170 = new WCS_Client.From.From_Montior.LocationPostion2();
  317. this.locationPostion2171 = new WCS_Client.From.From_Montior.LocationPostion2();
  318. this.locationPostion2172 = new WCS_Client.From.From_Montior.LocationPostion2();
  319. this.locationPostion2173 = new WCS_Client.From.From_Montior.LocationPostion2();
  320. this.locationPostion2174 = new WCS_Client.From.From_Montior.LocationPostion2();
  321. this.locationPostion2175 = new WCS_Client.From.From_Montior.LocationPostion2();
  322. this.locationPostion2176 = new WCS_Client.From.From_Montior.LocationPostion2();
  323. this.locationPostion2177 = new WCS_Client.From.From_Montior.LocationPostion2();
  324. this.locationPostion2178 = new WCS_Client.From.From_Montior.LocationPostion2();
  325. this.locationPostion2179 = new WCS_Client.From.From_Montior.LocationPostion2();
  326. this.locationPostion2180 = new WCS_Client.From.From_Montior.LocationPostion2();
  327. this.locationPostion2181 = new WCS_Client.From.From_Montior.LocationPostion2();
  328. this.locationPostion2182 = new WCS_Client.From.From_Montior.LocationPostion2();
  329. this.locationPostion2183 = new WCS_Client.From.From_Montior.LocationPostion2();
  330. this.locationPostion2184 = new WCS_Client.From.From_Montior.LocationPostion2();
  331. this.locationPostion2185 = new WCS_Client.From.From_Montior.LocationPostion2();
  332. this.locationPostion2186 = new WCS_Client.From.From_Montior.LocationPostion2();
  333. this.locationPostion2187 = new WCS_Client.From.From_Montior.LocationPostion2();
  334. this.locationPostion2188 = new WCS_Client.From.From_Montior.LocationPostion2();
  335. this.locationPostion2189 = new WCS_Client.From.From_Montior.LocationPostion2();
  336. this.locationPostion2190 = new WCS_Client.From.From_Montior.LocationPostion2();
  337. this.locationPostion2191 = new WCS_Client.From.From_Montior.LocationPostion2();
  338. this.locationPostion2192 = new WCS_Client.From.From_Montior.LocationPostion2();
  339. this.locationPostion2193 = new WCS_Client.From.From_Montior.LocationPostion2();
  340. this.locationPostion2194 = new WCS_Client.From.From_Montior.LocationPostion2();
  341. this.locationPostion2195 = new WCS_Client.From.From_Montior.LocationPostion2();
  342. this.locationPostion2196 = new WCS_Client.From.From_Montior.LocationPostion2();
  343. this.locationPostion2197 = new WCS_Client.From.From_Montior.LocationPostion2();
  344. this.locationPostion2198 = new WCS_Client.From.From_Montior.LocationPostion2();
  345. this.tableCellLabel220 = new WCS_Client.From.From_Montior.TableCellLabel2();
  346. this.tableCellLabel221 = new WCS_Client.From.From_Montior.TableCellLabel2();
  347. this.srm011 = new WCS_Client.From.From_Montior.Srm3();
  348. this.conveyor_1080 = new WCS_Client.From.From_Montior.Conveyor4_right();
  349. this.conveyor_1082 = new WCS_Client.From.From_Montior.Conveyor4_right();
  350. this.conveyor_1084 = new WCS_Client.From.From_Montior.Conveyor4_right();
  351. this.conveyor_1103 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  352. this.conveyor_1091 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  353. this.conveyor_1120 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  354. this.conveyor_1126 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  355. this.conveyor_1127 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  356. this.conveyor_1128 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  357. this.conveyor_1129 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  358. this.conveyor_1114 = new WCS_Client.From.From_Montior.Conveyor();
  359. this.tabControl1.SuspendLayout();
  360. this.tabPage1.SuspendLayout();
  361. this.myTableLayoutPanel1.SuspendLayout();
  362. this.myTableLayoutPanel2.SuspendLayout();
  363. this.tabPage2.SuspendLayout();
  364. this.tableLayoutPanel1.SuspendLayout();
  365. this.SuspendLayout();
  366. //
  367. // tabControl1
  368. //
  369. this.tabControl1.Controls.Add(this.tabPage1);
  370. this.tabControl1.Controls.Add(this.tabPage2);
  371. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  372. this.tabControl1.ItemSize = new System.Drawing.Size(120, 21);
  373. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  374. this.tabControl1.Margin = new System.Windows.Forms.Padding(0);
  375. this.tabControl1.Name = "tabControl1";
  376. this.tabControl1.SelectedIndex = 0;
  377. this.tabControl1.Size = new System.Drawing.Size(1356, 810);
  378. this.tabControl1.TabIndex = 0;
  379. this.tabControl1.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.tabControl1_DrawItem);
  380. //
  381. // tabPage1
  382. //
  383. this.tabPage1.Controls.Add(this.myTableLayoutPanel1);
  384. this.tabPage1.Location = new System.Drawing.Point(4, 25);
  385. this.tabPage1.Margin = new System.Windows.Forms.Padding(0);
  386. this.tabPage1.Name = "tabPage1";
  387. this.tabPage1.Size = new System.Drawing.Size(1348, 781);
  388. this.tabPage1.TabIndex = 0;
  389. this.tabPage1.Text = "托盘立体库物流(一楼)";
  390. this.tabPage1.UseVisualStyleBackColor = true;
  391. //
  392. // myTableLayoutPanel1
  393. //
  394. this.myTableLayoutPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(144)))), ((int)(((byte)(154)))));
  395. this.myTableLayoutPanel1.ColumnCount = 31;
  396. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  397. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  398. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  399. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  400. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  401. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.386142F));
  402. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.224898F));
  403. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  404. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  405. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  406. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  407. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  408. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  409. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  410. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  411. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  412. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  413. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  414. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  415. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  416. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  417. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  418. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  419. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  420. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  421. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  422. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  423. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  424. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.331746F));
  425. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.4318F));
  426. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 179F));
  427. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1018, 20, 0);
  428. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1048, 20, 1);
  429. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1017, 20, 2);
  430. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1015, 20, 3);
  431. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1036, 16, 3);
  432. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1037, 15, 3);
  433. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1039, 12, 3);
  434. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1040, 11, 3);
  435. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1038, 10, 3);
  436. this.myTableLayoutPanel1.Controls.Add(this.myTableLayoutPanel2, 21, 4);
  437. this.myTableLayoutPanel1.Controls.Add(this.button1, 13, 3);
  438. this.myTableLayoutPanel1.Controls.Add(this.button2, 14, 3);
  439. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1001, 22, 8);
  440. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1003, 22, 10);
  441. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1005, 22, 14);
  442. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1041, 25, 7);
  443. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1116, 26, 17);
  444. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1051, 3, 8);
  445. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1053, 3, 12);
  446. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1055, 3, 16);
  447. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1062, 1, 8);
  448. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1063, 1, 9);
  449. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1064, 1, 10);
  450. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1065, 1, 11);
  451. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1066, 1, 12);
  452. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1067, 1, 13);
  453. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1068, 1, 14);
  454. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1069, 1, 15);
  455. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1070, 1, 16);
  456. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1071, 1, 17);
  457. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1072, 1, 18);
  458. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel23, 9, 2);
  459. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel27, 17, 2);
  460. this.myTableLayoutPanel1.Controls.Add(this.rgv01, 15, 2);
  461. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel1, 24, 3);
  462. this.myTableLayoutPanel1.Controls.Add(this.rgv02, 24, 11);
  463. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel12, 24, 13);
  464. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel15, 2, 5);
  465. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel18, 2, 14);
  466. this.myTableLayoutPanel1.Controls.Add(this.rgv03, 2, 12);
  467. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1138, 29, 18);
  468. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1139, 29, 19);
  469. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1112, 27, 15);
  470. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1111, 28, 15);
  471. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1110, 29, 15);
  472. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1021, 17, 0);
  473. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1022, 17, 1);
  474. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_1027, 17, 3);
  475. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1029, 17, 4);
  476. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1030, 18, 4);
  477. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1031, 19, 4);
  478. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1033, 20, 4);
  479. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1013, 21, 3);
  480. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1012, 22, 3);
  481. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1011, 23, 3);
  482. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1046, 19, 3);
  483. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1019, 18, 3);
  484. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1061, 0, 6);
  485. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1050, 3, 6);
  486. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1052, 3, 10);
  487. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1054, 3, 14);
  488. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1002, 22, 6);
  489. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1004, 22, 12);
  490. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1006, 22, 16);
  491. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1118, 25, 17);
  492. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1115, 27, 17);
  493. this.myTableLayoutPanel1.Controls.Add(this.locationPostion21, 5, 6);
  494. this.myTableLayoutPanel1.Controls.Add(this.locationPostion22, 6, 6);
  495. this.myTableLayoutPanel1.Controls.Add(this.locationPostion23, 7, 6);
  496. this.myTableLayoutPanel1.Controls.Add(this.locationPostion24, 8, 6);
  497. this.myTableLayoutPanel1.Controls.Add(this.locationPostion25, 9, 6);
  498. this.myTableLayoutPanel1.Controls.Add(this.locationPostion26, 10, 6);
  499. this.myTableLayoutPanel1.Controls.Add(this.locationPostion27, 11, 6);
  500. this.myTableLayoutPanel1.Controls.Add(this.locationPostion28, 12, 6);
  501. this.myTableLayoutPanel1.Controls.Add(this.locationPostion29, 13, 6);
  502. this.myTableLayoutPanel1.Controls.Add(this.locationPostion210, 14, 6);
  503. this.myTableLayoutPanel1.Controls.Add(this.locationPostion211, 15, 6);
  504. this.myTableLayoutPanel1.Controls.Add(this.locationPostion212, 16, 6);
  505. this.myTableLayoutPanel1.Controls.Add(this.locationPostion213, 17, 6);
  506. this.myTableLayoutPanel1.Controls.Add(this.locationPostion214, 18, 6);
  507. this.myTableLayoutPanel1.Controls.Add(this.locationPostion215, 19, 6);
  508. this.myTableLayoutPanel1.Controls.Add(this.locationPostion216, 20, 6);
  509. this.myTableLayoutPanel1.Controls.Add(this.locationPostion217, 21, 6);
  510. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel210, 5, 7);
  511. this.myTableLayoutPanel1.Controls.Add(this.srm03, 12, 7);
  512. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel211, 14, 7);
  513. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel212, 5, 11);
  514. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel213, 14, 11);
  515. this.myTableLayoutPanel1.Controls.Add(this.srm02, 12, 11);
  516. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel214, 5, 15);
  517. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel215, 14, 15);
  518. this.myTableLayoutPanel1.Controls.Add(this.srm01, 12, 15);
  519. this.myTableLayoutPanel1.Controls.Add(this.locationPostion218, 5, 8);
  520. this.myTableLayoutPanel1.Controls.Add(this.locationPostion219, 6, 8);
  521. this.myTableLayoutPanel1.Controls.Add(this.locationPostion220, 7, 8);
  522. this.myTableLayoutPanel1.Controls.Add(this.locationPostion221, 8, 8);
  523. this.myTableLayoutPanel1.Controls.Add(this.locationPostion222, 9, 8);
  524. this.myTableLayoutPanel1.Controls.Add(this.locationPostion223, 10, 8);
  525. this.myTableLayoutPanel1.Controls.Add(this.locationPostion224, 11, 8);
  526. this.myTableLayoutPanel1.Controls.Add(this.locationPostion225, 12, 8);
  527. this.myTableLayoutPanel1.Controls.Add(this.locationPostion226, 13, 8);
  528. this.myTableLayoutPanel1.Controls.Add(this.locationPostion227, 14, 8);
  529. this.myTableLayoutPanel1.Controls.Add(this.locationPostion228, 15, 8);
  530. this.myTableLayoutPanel1.Controls.Add(this.locationPostion229, 16, 8);
  531. this.myTableLayoutPanel1.Controls.Add(this.locationPostion230, 17, 8);
  532. this.myTableLayoutPanel1.Controls.Add(this.locationPostion231, 18, 8);
  533. this.myTableLayoutPanel1.Controls.Add(this.locationPostion232, 19, 8);
  534. this.myTableLayoutPanel1.Controls.Add(this.locationPostion233, 20, 8);
  535. this.myTableLayoutPanel1.Controls.Add(this.locationPostion234, 21, 8);
  536. this.myTableLayoutPanel1.Controls.Add(this.locationPostion235, 5, 10);
  537. this.myTableLayoutPanel1.Controls.Add(this.locationPostion236, 6, 10);
  538. this.myTableLayoutPanel1.Controls.Add(this.locationPostion237, 7, 10);
  539. this.myTableLayoutPanel1.Controls.Add(this.locationPostion238, 8, 10);
  540. this.myTableLayoutPanel1.Controls.Add(this.locationPostion239, 9, 10);
  541. this.myTableLayoutPanel1.Controls.Add(this.locationPostion240, 10, 10);
  542. this.myTableLayoutPanel1.Controls.Add(this.locationPostion241, 11, 10);
  543. this.myTableLayoutPanel1.Controls.Add(this.locationPostion242, 12, 10);
  544. this.myTableLayoutPanel1.Controls.Add(this.locationPostion243, 13, 10);
  545. this.myTableLayoutPanel1.Controls.Add(this.locationPostion244, 14, 10);
  546. this.myTableLayoutPanel1.Controls.Add(this.locationPostion245, 15, 10);
  547. this.myTableLayoutPanel1.Controls.Add(this.locationPostion246, 16, 10);
  548. this.myTableLayoutPanel1.Controls.Add(this.locationPostion247, 17, 10);
  549. this.myTableLayoutPanel1.Controls.Add(this.locationPostion248, 18, 10);
  550. this.myTableLayoutPanel1.Controls.Add(this.locationPostion249, 19, 10);
  551. this.myTableLayoutPanel1.Controls.Add(this.locationPostion250, 20, 10);
  552. this.myTableLayoutPanel1.Controls.Add(this.locationPostion251, 21, 10);
  553. this.myTableLayoutPanel1.Controls.Add(this.locationPostion252, 5, 12);
  554. this.myTableLayoutPanel1.Controls.Add(this.locationPostion253, 6, 12);
  555. this.myTableLayoutPanel1.Controls.Add(this.locationPostion254, 7, 12);
  556. this.myTableLayoutPanel1.Controls.Add(this.locationPostion255, 8, 12);
  557. this.myTableLayoutPanel1.Controls.Add(this.locationPostion256, 9, 12);
  558. this.myTableLayoutPanel1.Controls.Add(this.locationPostion257, 10, 12);
  559. this.myTableLayoutPanel1.Controls.Add(this.locationPostion258, 11, 12);
  560. this.myTableLayoutPanel1.Controls.Add(this.locationPostion259, 12, 12);
  561. this.myTableLayoutPanel1.Controls.Add(this.locationPostion260, 13, 12);
  562. this.myTableLayoutPanel1.Controls.Add(this.locationPostion261, 14, 12);
  563. this.myTableLayoutPanel1.Controls.Add(this.locationPostion262, 15, 12);
  564. this.myTableLayoutPanel1.Controls.Add(this.locationPostion263, 16, 12);
  565. this.myTableLayoutPanel1.Controls.Add(this.locationPostion264, 17, 12);
  566. this.myTableLayoutPanel1.Controls.Add(this.locationPostion265, 18, 12);
  567. this.myTableLayoutPanel1.Controls.Add(this.locationPostion266, 19, 12);
  568. this.myTableLayoutPanel1.Controls.Add(this.locationPostion267, 20, 12);
  569. this.myTableLayoutPanel1.Controls.Add(this.locationPostion268, 21, 12);
  570. this.myTableLayoutPanel1.Controls.Add(this.locationPostion269, 5, 14);
  571. this.myTableLayoutPanel1.Controls.Add(this.locationPostion270, 6, 14);
  572. this.myTableLayoutPanel1.Controls.Add(this.locationPostion271, 7, 14);
  573. this.myTableLayoutPanel1.Controls.Add(this.locationPostion272, 8, 14);
  574. this.myTableLayoutPanel1.Controls.Add(this.locationPostion273, 9, 14);
  575. this.myTableLayoutPanel1.Controls.Add(this.locationPostion274, 10, 14);
  576. this.myTableLayoutPanel1.Controls.Add(this.locationPostion275, 11, 14);
  577. this.myTableLayoutPanel1.Controls.Add(this.locationPostion276, 12, 14);
  578. this.myTableLayoutPanel1.Controls.Add(this.locationPostion277, 13, 14);
  579. this.myTableLayoutPanel1.Controls.Add(this.locationPostion278, 14, 14);
  580. this.myTableLayoutPanel1.Controls.Add(this.locationPostion279, 15, 14);
  581. this.myTableLayoutPanel1.Controls.Add(this.locationPostion280, 16, 14);
  582. this.myTableLayoutPanel1.Controls.Add(this.locationPostion281, 17, 14);
  583. this.myTableLayoutPanel1.Controls.Add(this.locationPostion282, 18, 14);
  584. this.myTableLayoutPanel1.Controls.Add(this.locationPostion283, 19, 14);
  585. this.myTableLayoutPanel1.Controls.Add(this.locationPostion284, 20, 14);
  586. this.myTableLayoutPanel1.Controls.Add(this.locationPostion285, 21, 14);
  587. this.myTableLayoutPanel1.Controls.Add(this.locationPostion286, 5, 16);
  588. this.myTableLayoutPanel1.Controls.Add(this.locationPostion287, 6, 16);
  589. this.myTableLayoutPanel1.Controls.Add(this.locationPostion288, 7, 16);
  590. this.myTableLayoutPanel1.Controls.Add(this.locationPostion289, 8, 16);
  591. this.myTableLayoutPanel1.Controls.Add(this.locationPostion290, 9, 16);
  592. this.myTableLayoutPanel1.Controls.Add(this.locationPostion291, 10, 16);
  593. this.myTableLayoutPanel1.Controls.Add(this.locationPostion292, 11, 16);
  594. this.myTableLayoutPanel1.Controls.Add(this.locationPostion293, 12, 16);
  595. this.myTableLayoutPanel1.Controls.Add(this.locationPostion294, 13, 16);
  596. this.myTableLayoutPanel1.Controls.Add(this.locationPostion295, 14, 16);
  597. this.myTableLayoutPanel1.Controls.Add(this.locationPostion296, 15, 16);
  598. this.myTableLayoutPanel1.Controls.Add(this.locationPostion297, 16, 16);
  599. this.myTableLayoutPanel1.Controls.Add(this.locationPostion298, 17, 16);
  600. this.myTableLayoutPanel1.Controls.Add(this.locationPostion299, 18, 16);
  601. this.myTableLayoutPanel1.Controls.Add(this.locationPostion2100, 19, 16);
  602. this.myTableLayoutPanel1.Controls.Add(this.locationPostion2101, 20, 16);
  603. this.myTableLayoutPanel1.Controls.Add(this.locationPostion2102, 21, 16);
  604. this.myTableLayoutPanel1.Controls.Add(this.conveyor_1044, 26, 7);
  605. this.myTableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  606. this.myTableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  607. this.myTableLayoutPanel1.Margin = new System.Windows.Forms.Padding(2);
  608. this.myTableLayoutPanel1.Name = "myTableLayoutPanel1";
  609. this.myTableLayoutPanel1.RowCount = 21;
  610. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  611. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  612. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  613. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  614. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  615. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  616. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  617. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  618. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  619. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  620. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  621. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  622. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  623. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  624. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  625. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  626. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  627. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  628. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  629. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  630. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 1F));
  631. this.myTableLayoutPanel1.Size = new System.Drawing.Size(1348, 781);
  632. this.myTableLayoutPanel1.TabIndex = 1;
  633. this.myTableLayoutPanel1.CellPaint += new System.Windows.Forms.TableLayoutCellPaintEventHandler(this.myTableLayoutPanel1_CellPaint);
  634. //
  635. // conveyor_1018
  636. //
  637. this.conveyor_1018.Dock = System.Windows.Forms.DockStyle.Fill;
  638. this.conveyor_1018.Location = new System.Drawing.Point(760, 0);
  639. this.conveyor_1018.Margin = new System.Windows.Forms.Padding(0);
  640. this.conveyor_1018.Name = "conveyor_1018";
  641. this.conveyor_1018.Size = new System.Drawing.Size(38, 39);
  642. this.conveyor_1018.TabIndex = 0;
  643. //
  644. // conveyor_1048
  645. //
  646. this.conveyor_1048.Dock = System.Windows.Forms.DockStyle.Fill;
  647. this.conveyor_1048.Location = new System.Drawing.Point(760, 39);
  648. this.conveyor_1048.Margin = new System.Windows.Forms.Padding(0);
  649. this.conveyor_1048.Name = "conveyor_1048";
  650. this.conveyor_1048.Size = new System.Drawing.Size(38, 39);
  651. this.conveyor_1048.TabIndex = 1;
  652. //
  653. // conveyor_1017
  654. //
  655. this.conveyor_1017.Dock = System.Windows.Forms.DockStyle.Fill;
  656. this.conveyor_1017.Location = new System.Drawing.Point(760, 78);
  657. this.conveyor_1017.Margin = new System.Windows.Forms.Padding(0);
  658. this.conveyor_1017.Name = "conveyor_1017";
  659. this.conveyor_1017.Size = new System.Drawing.Size(38, 39);
  660. this.conveyor_1017.TabIndex = 2;
  661. //
  662. // conveyor_1015
  663. //
  664. this.conveyor_1015.Dock = System.Windows.Forms.DockStyle.Fill;
  665. this.conveyor_1015.Location = new System.Drawing.Point(760, 117);
  666. this.conveyor_1015.Margin = new System.Windows.Forms.Padding(0);
  667. this.conveyor_1015.Name = "conveyor_1015";
  668. this.conveyor_1015.Size = new System.Drawing.Size(38, 39);
  669. this.conveyor_1015.TabIndex = 3;
  670. //
  671. // conveyor_1036
  672. //
  673. this.conveyor_1036.Dock = System.Windows.Forms.DockStyle.Fill;
  674. this.conveyor_1036.Location = new System.Drawing.Point(609, 118);
  675. this.conveyor_1036.Margin = new System.Windows.Forms.Padding(1);
  676. this.conveyor_1036.Name = "conveyor_1036";
  677. this.conveyor_1036.Size = new System.Drawing.Size(36, 37);
  678. this.conveyor_1036.TabIndex = 14;
  679. //
  680. // conveyor_1037
  681. //
  682. this.conveyor_1037.Dock = System.Windows.Forms.DockStyle.Fill;
  683. this.conveyor_1037.Location = new System.Drawing.Point(571, 118);
  684. this.conveyor_1037.Margin = new System.Windows.Forms.Padding(1);
  685. this.conveyor_1037.Name = "conveyor_1037";
  686. this.conveyor_1037.Size = new System.Drawing.Size(36, 37);
  687. this.conveyor_1037.TabIndex = 19;
  688. //
  689. // conveyor_1039
  690. //
  691. this.conveyor_1039.Dock = System.Windows.Forms.DockStyle.Fill;
  692. this.conveyor_1039.Location = new System.Drawing.Point(457, 118);
  693. this.conveyor_1039.Margin = new System.Windows.Forms.Padding(1);
  694. this.conveyor_1039.Name = "conveyor_1039";
  695. this.conveyor_1039.Size = new System.Drawing.Size(36, 37);
  696. this.conveyor_1039.TabIndex = 20;
  697. //
  698. // conveyor_1040
  699. //
  700. this.conveyor_1040.Dock = System.Windows.Forms.DockStyle.Fill;
  701. this.conveyor_1040.Location = new System.Drawing.Point(419, 118);
  702. this.conveyor_1040.Margin = new System.Windows.Forms.Padding(1);
  703. this.conveyor_1040.Name = "conveyor_1040";
  704. this.conveyor_1040.Size = new System.Drawing.Size(36, 37);
  705. this.conveyor_1040.TabIndex = 21;
  706. //
  707. // conveyor_1038
  708. //
  709. this.conveyor_1038.Dock = System.Windows.Forms.DockStyle.Fill;
  710. this.conveyor_1038.Location = new System.Drawing.Point(381, 118);
  711. this.conveyor_1038.Margin = new System.Windows.Forms.Padding(1);
  712. this.conveyor_1038.Name = "conveyor_1038";
  713. this.conveyor_1038.Size = new System.Drawing.Size(36, 37);
  714. this.conveyor_1038.TabIndex = 22;
  715. //
  716. // myTableLayoutPanel2
  717. //
  718. this.myTableLayoutPanel2.ColumnCount = 2;
  719. this.myTableLayoutPanel1.SetColumnSpan(this.myTableLayoutPanel2, 3);
  720. this.myTableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  721. this.myTableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
  722. this.myTableLayoutPanel2.Controls.Add(this.conveyor_1032, 0, 0);
  723. this.myTableLayoutPanel2.Controls.Add(this.conveyor_1035, 1, 0);
  724. this.myTableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  725. this.myTableLayoutPanel2.Location = new System.Drawing.Point(798, 156);
  726. this.myTableLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
  727. this.myTableLayoutPanel2.Name = "myTableLayoutPanel2";
  728. this.myTableLayoutPanel2.RowCount = 1;
  729. this.myTableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
  730. this.myTableLayoutPanel2.Size = new System.Drawing.Size(114, 39);
  731. this.myTableLayoutPanel2.TabIndex = 23;
  732. //
  733. // conveyor_1032
  734. //
  735. this.conveyor_1032.BackColor = System.Drawing.Color.Transparent;
  736. this.conveyor_1032.Dock = System.Windows.Forms.DockStyle.Fill;
  737. this.conveyor_1032.Location = new System.Drawing.Point(0, 0);
  738. this.conveyor_1032.Margin = new System.Windows.Forms.Padding(0);
  739. this.conveyor_1032.Name = "conveyor_1032";
  740. this.conveyor_1032.Size = new System.Drawing.Size(57, 39);
  741. this.conveyor_1032.TabIndex = 2;
  742. //
  743. // conveyor_1035
  744. //
  745. this.conveyor_1035.BackColor = System.Drawing.Color.Transparent;
  746. this.conveyor_1035.Dock = System.Windows.Forms.DockStyle.Fill;
  747. this.conveyor_1035.Location = new System.Drawing.Point(57, 0);
  748. this.conveyor_1035.Margin = new System.Windows.Forms.Padding(0);
  749. this.conveyor_1035.Name = "conveyor_1035";
  750. this.conveyor_1035.Size = new System.Drawing.Size(57, 39);
  751. this.conveyor_1035.TabIndex = 3;
  752. //
  753. // button1
  754. //
  755. this.button1.BackColor = System.Drawing.Color.Gainsboro;
  756. this.button1.Dock = System.Windows.Forms.DockStyle.Fill;
  757. this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  758. this.button1.Location = new System.Drawing.Point(495, 118);
  759. this.button1.Margin = new System.Windows.Forms.Padding(1);
  760. this.button1.Name = "button1";
  761. this.button1.Size = new System.Drawing.Size(36, 37);
  762. this.button1.TabIndex = 24;
  763. this.button1.UseVisualStyleBackColor = false;
  764. //
  765. // button2
  766. //
  767. this.button2.BackColor = System.Drawing.Color.Gainsboro;
  768. this.button2.Dock = System.Windows.Forms.DockStyle.Fill;
  769. this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  770. this.button2.Location = new System.Drawing.Point(533, 118);
  771. this.button2.Margin = new System.Windows.Forms.Padding(1);
  772. this.button2.Name = "button2";
  773. this.button2.Size = new System.Drawing.Size(36, 37);
  774. this.button2.TabIndex = 25;
  775. this.button2.UseVisualStyleBackColor = false;
  776. //
  777. // conveyor_1001
  778. //
  779. this.conveyor_1001.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  780. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1001, 2);
  781. this.conveyor_1001.Dock = System.Windows.Forms.DockStyle.Fill;
  782. this.conveyor_1001.Location = new System.Drawing.Point(836, 312);
  783. this.conveyor_1001.Margin = new System.Windows.Forms.Padding(0);
  784. this.conveyor_1001.Name = "conveyor_1001";
  785. this.conveyor_1001.Size = new System.Drawing.Size(76, 39);
  786. this.conveyor_1001.TabIndex = 29;
  787. //
  788. // conveyor_1003
  789. //
  790. this.conveyor_1003.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  791. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1003, 2);
  792. this.conveyor_1003.Dock = System.Windows.Forms.DockStyle.Fill;
  793. this.conveyor_1003.Location = new System.Drawing.Point(836, 390);
  794. this.conveyor_1003.Margin = new System.Windows.Forms.Padding(0);
  795. this.conveyor_1003.Name = "conveyor_1003";
  796. this.conveyor_1003.Size = new System.Drawing.Size(76, 39);
  797. this.conveyor_1003.TabIndex = 34;
  798. //
  799. // conveyor_1005
  800. //
  801. this.conveyor_1005.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  802. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1005, 2);
  803. this.conveyor_1005.Dock = System.Windows.Forms.DockStyle.Fill;
  804. this.conveyor_1005.Location = new System.Drawing.Point(836, 546);
  805. this.conveyor_1005.Margin = new System.Windows.Forms.Padding(0);
  806. this.conveyor_1005.Name = "conveyor_1005";
  807. this.conveyor_1005.Size = new System.Drawing.Size(76, 39);
  808. this.conveyor_1005.TabIndex = 36;
  809. //
  810. // conveyor_1041
  811. //
  812. this.conveyor_1041.Dock = System.Windows.Forms.DockStyle.Fill;
  813. this.conveyor_1041.Location = new System.Drawing.Point(951, 273);
  814. this.conveyor_1041.Margin = new System.Windows.Forms.Padding(1, 0, 0, 0);
  815. this.conveyor_1041.Name = "conveyor_1041";
  816. this.conveyor_1041.Size = new System.Drawing.Size(37, 39);
  817. this.conveyor_1041.TabIndex = 42;
  818. //
  819. // conveyor_1116
  820. //
  821. this.conveyor_1116.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  822. this.conveyor_1116.Dock = System.Windows.Forms.DockStyle.Fill;
  823. this.conveyor_1116.Location = new System.Drawing.Point(988, 663);
  824. this.conveyor_1116.Margin = new System.Windows.Forms.Padding(0);
  825. this.conveyor_1116.Name = "conveyor_1116";
  826. this.conveyor_1116.Size = new System.Drawing.Size(38, 39);
  827. this.conveyor_1116.TabIndex = 46;
  828. //
  829. // conveyor_1051
  830. //
  831. this.conveyor_1051.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  832. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1051, 2);
  833. this.conveyor_1051.Dock = System.Windows.Forms.DockStyle.Fill;
  834. this.conveyor_1051.Location = new System.Drawing.Point(115, 312);
  835. this.conveyor_1051.Margin = new System.Windows.Forms.Padding(1, 0, 0, 0);
  836. this.conveyor_1051.Name = "conveyor_1051";
  837. this.conveyor_1051.Size = new System.Drawing.Size(75, 39);
  838. this.conveyor_1051.TabIndex = 50;
  839. //
  840. // conveyor_1053
  841. //
  842. this.conveyor_1053.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  843. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1053, 2);
  844. this.conveyor_1053.Dock = System.Windows.Forms.DockStyle.Fill;
  845. this.conveyor_1053.Location = new System.Drawing.Point(115, 468);
  846. this.conveyor_1053.Margin = new System.Windows.Forms.Padding(1, 0, 0, 0);
  847. this.conveyor_1053.Name = "conveyor_1053";
  848. this.conveyor_1053.Size = new System.Drawing.Size(75, 39);
  849. this.conveyor_1053.TabIndex = 52;
  850. //
  851. // conveyor_1055
  852. //
  853. this.conveyor_1055.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  854. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1055, 2);
  855. this.conveyor_1055.Dock = System.Windows.Forms.DockStyle.Fill;
  856. this.conveyor_1055.Location = new System.Drawing.Point(115, 624);
  857. this.conveyor_1055.Margin = new System.Windows.Forms.Padding(1, 0, 0, 0);
  858. this.conveyor_1055.Name = "conveyor_1055";
  859. this.conveyor_1055.Size = new System.Drawing.Size(75, 39);
  860. this.conveyor_1055.TabIndex = 54;
  861. //
  862. // conveyor_1062
  863. //
  864. this.conveyor_1062.Dock = System.Windows.Forms.DockStyle.Fill;
  865. this.conveyor_1062.Location = new System.Drawing.Point(39, 313);
  866. this.conveyor_1062.Margin = new System.Windows.Forms.Padding(1);
  867. this.conveyor_1062.Name = "conveyor_1062";
  868. this.conveyor_1062.Size = new System.Drawing.Size(36, 37);
  869. this.conveyor_1062.TabIndex = 56;
  870. //
  871. // conveyor_1063
  872. //
  873. this.conveyor_1063.Dock = System.Windows.Forms.DockStyle.Fill;
  874. this.conveyor_1063.Location = new System.Drawing.Point(39, 352);
  875. this.conveyor_1063.Margin = new System.Windows.Forms.Padding(1);
  876. this.conveyor_1063.Name = "conveyor_1063";
  877. this.conveyor_1063.Size = new System.Drawing.Size(36, 37);
  878. this.conveyor_1063.TabIndex = 58;
  879. //
  880. // conveyor_1064
  881. //
  882. this.conveyor_1064.Dock = System.Windows.Forms.DockStyle.Fill;
  883. this.conveyor_1064.Location = new System.Drawing.Point(39, 391);
  884. this.conveyor_1064.Margin = new System.Windows.Forms.Padding(1);
  885. this.conveyor_1064.Name = "conveyor_1064";
  886. this.conveyor_1064.Size = new System.Drawing.Size(36, 37);
  887. this.conveyor_1064.TabIndex = 59;
  888. //
  889. // conveyor_1065
  890. //
  891. this.conveyor_1065.Dock = System.Windows.Forms.DockStyle.Fill;
  892. this.conveyor_1065.Location = new System.Drawing.Point(39, 430);
  893. this.conveyor_1065.Margin = new System.Windows.Forms.Padding(1);
  894. this.conveyor_1065.Name = "conveyor_1065";
  895. this.conveyor_1065.Size = new System.Drawing.Size(36, 37);
  896. this.conveyor_1065.TabIndex = 60;
  897. //
  898. // conveyor_1066
  899. //
  900. this.conveyor_1066.Dock = System.Windows.Forms.DockStyle.Fill;
  901. this.conveyor_1066.Location = new System.Drawing.Point(39, 469);
  902. this.conveyor_1066.Margin = new System.Windows.Forms.Padding(1);
  903. this.conveyor_1066.Name = "conveyor_1066";
  904. this.conveyor_1066.Size = new System.Drawing.Size(36, 37);
  905. this.conveyor_1066.TabIndex = 61;
  906. //
  907. // conveyor_1067
  908. //
  909. this.conveyor_1067.Dock = System.Windows.Forms.DockStyle.Fill;
  910. this.conveyor_1067.Location = new System.Drawing.Point(39, 508);
  911. this.conveyor_1067.Margin = new System.Windows.Forms.Padding(1);
  912. this.conveyor_1067.Name = "conveyor_1067";
  913. this.conveyor_1067.Size = new System.Drawing.Size(36, 37);
  914. this.conveyor_1067.TabIndex = 62;
  915. //
  916. // conveyor_1068
  917. //
  918. this.conveyor_1068.Dock = System.Windows.Forms.DockStyle.Fill;
  919. this.conveyor_1068.Location = new System.Drawing.Point(39, 547);
  920. this.conveyor_1068.Margin = new System.Windows.Forms.Padding(1);
  921. this.conveyor_1068.Name = "conveyor_1068";
  922. this.conveyor_1068.Size = new System.Drawing.Size(36, 37);
  923. this.conveyor_1068.TabIndex = 63;
  924. //
  925. // conveyor_1069
  926. //
  927. this.conveyor_1069.Dock = System.Windows.Forms.DockStyle.Fill;
  928. this.conveyor_1069.Location = new System.Drawing.Point(39, 586);
  929. this.conveyor_1069.Margin = new System.Windows.Forms.Padding(1);
  930. this.conveyor_1069.Name = "conveyor_1069";
  931. this.conveyor_1069.Size = new System.Drawing.Size(36, 37);
  932. this.conveyor_1069.TabIndex = 64;
  933. //
  934. // conveyor_1070
  935. //
  936. this.conveyor_1070.Dock = System.Windows.Forms.DockStyle.Fill;
  937. this.conveyor_1070.Location = new System.Drawing.Point(39, 625);
  938. this.conveyor_1070.Margin = new System.Windows.Forms.Padding(1);
  939. this.conveyor_1070.Name = "conveyor_1070";
  940. this.conveyor_1070.Size = new System.Drawing.Size(36, 37);
  941. this.conveyor_1070.TabIndex = 65;
  942. //
  943. // conveyor_1071
  944. //
  945. this.conveyor_1071.Dock = System.Windows.Forms.DockStyle.Fill;
  946. this.conveyor_1071.Location = new System.Drawing.Point(39, 664);
  947. this.conveyor_1071.Margin = new System.Windows.Forms.Padding(1);
  948. this.conveyor_1071.Name = "conveyor_1071";
  949. this.conveyor_1071.Size = new System.Drawing.Size(36, 37);
  950. this.conveyor_1071.TabIndex = 66;
  951. //
  952. // conveyor_1072
  953. //
  954. this.conveyor_1072.Dock = System.Windows.Forms.DockStyle.Fill;
  955. this.conveyor_1072.Location = new System.Drawing.Point(39, 703);
  956. this.conveyor_1072.Margin = new System.Windows.Forms.Padding(1);
  957. this.conveyor_1072.Name = "conveyor_1072";
  958. this.conveyor_1072.Size = new System.Drawing.Size(36, 37);
  959. this.conveyor_1072.TabIndex = 68;
  960. //
  961. // tableCellLabel23
  962. //
  963. this.tableCellLabel23.BackColor = System.Drawing.Color.Transparent;
  964. this.tableCellLabel23.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel23.BackgroundImage")));
  965. this.tableCellLabel23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  966. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel23, 6);
  967. this.tableCellLabel23.Dock = System.Windows.Forms.DockStyle.Fill;
  968. this.tableCellLabel23.Location = new System.Drawing.Point(343, 78);
  969. this.tableCellLabel23.Margin = new System.Windows.Forms.Padding(1, 0, 0, 0);
  970. this.tableCellLabel23.Name = "tableCellLabel23";
  971. this.tableCellLabel23.Size = new System.Drawing.Size(227, 39);
  972. this.tableCellLabel23.TabIndex = 71;
  973. //
  974. // tableCellLabel27
  975. //
  976. this.tableCellLabel27.BackColor = System.Drawing.Color.Transparent;
  977. this.tableCellLabel27.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel27.BackgroundImage")));
  978. this.tableCellLabel27.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  979. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel27, 3);
  980. this.tableCellLabel27.Dock = System.Windows.Forms.DockStyle.Fill;
  981. this.tableCellLabel27.Location = new System.Drawing.Point(646, 78);
  982. this.tableCellLabel27.Margin = new System.Windows.Forms.Padding(0);
  983. this.tableCellLabel27.Name = "tableCellLabel27";
  984. this.tableCellLabel27.Size = new System.Drawing.Size(114, 39);
  985. this.tableCellLabel27.TabIndex = 75;
  986. //
  987. // rgv01
  988. //
  989. this.myTableLayoutPanel1.SetColumnSpan(this.rgv01, 2);
  990. this.rgv01.Dock = System.Windows.Forms.DockStyle.Fill;
  991. this.rgv01.Location = new System.Drawing.Point(572, 80);
  992. this.rgv01.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  993. this.rgv01.Name = "rgv01";
  994. this.rgv01.Size = new System.Drawing.Size(72, 35);
  995. this.rgv01.TabIndex = 76;
  996. //
  997. // tableCellLabel1
  998. //
  999. this.tableCellLabel1.BackColor = System.Drawing.Color.Transparent;
  1000. this.tableCellLabel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel1.BackgroundImage")));
  1001. this.tableCellLabel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1002. this.tableCellLabel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1003. this.tableCellLabel1.Location = new System.Drawing.Point(912, 118);
  1004. this.tableCellLabel1.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
  1005. this.tableCellLabel1.Name = "tableCellLabel1";
  1006. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel1, 8);
  1007. this.tableCellLabel1.Size = new System.Drawing.Size(38, 311);
  1008. this.tableCellLabel1.TabIndex = 79;
  1009. //
  1010. // rgv02
  1011. //
  1012. this.rgv02.Dock = System.Windows.Forms.DockStyle.Fill;
  1013. this.rgv02.Location = new System.Drawing.Point(914, 431);
  1014. this.rgv02.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1015. this.rgv02.Name = "rgv02";
  1016. this.myTableLayoutPanel1.SetRowSpan(this.rgv02, 2);
  1017. this.rgv02.Size = new System.Drawing.Size(34, 74);
  1018. this.rgv02.TabIndex = 90;
  1019. //
  1020. // tableCellLabel12
  1021. //
  1022. this.tableCellLabel12.BackColor = System.Drawing.Color.Transparent;
  1023. this.tableCellLabel12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel12.BackgroundImage")));
  1024. this.tableCellLabel12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1025. this.tableCellLabel12.Dock = System.Windows.Forms.DockStyle.Fill;
  1026. this.tableCellLabel12.Location = new System.Drawing.Point(912, 507);
  1027. this.tableCellLabel12.Margin = new System.Windows.Forms.Padding(0);
  1028. this.tableCellLabel12.Name = "tableCellLabel12";
  1029. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel12, 6);
  1030. this.tableCellLabel12.Size = new System.Drawing.Size(38, 234);
  1031. this.tableCellLabel12.TabIndex = 91;
  1032. //
  1033. // tableCellLabel15
  1034. //
  1035. this.tableCellLabel15.BackColor = System.Drawing.Color.Transparent;
  1036. this.tableCellLabel15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel15.BackgroundImage")));
  1037. this.tableCellLabel15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1038. this.tableCellLabel15.Dock = System.Windows.Forms.DockStyle.Fill;
  1039. this.tableCellLabel15.Location = new System.Drawing.Point(76, 196);
  1040. this.tableCellLabel15.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
  1041. this.tableCellLabel15.Name = "tableCellLabel15";
  1042. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel15, 7);
  1043. this.tableCellLabel15.Size = new System.Drawing.Size(38, 272);
  1044. this.tableCellLabel15.TabIndex = 94;
  1045. //
  1046. // tableCellLabel18
  1047. //
  1048. this.tableCellLabel18.BackColor = System.Drawing.Color.Transparent;
  1049. this.tableCellLabel18.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel18.BackgroundImage")));
  1050. this.tableCellLabel18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1051. this.tableCellLabel18.Dock = System.Windows.Forms.DockStyle.Fill;
  1052. this.tableCellLabel18.Location = new System.Drawing.Point(76, 546);
  1053. this.tableCellLabel18.Margin = new System.Windows.Forms.Padding(0);
  1054. this.tableCellLabel18.Name = "tableCellLabel18";
  1055. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel18, 6);
  1056. this.tableCellLabel18.Size = new System.Drawing.Size(38, 234);
  1057. this.tableCellLabel18.TabIndex = 97;
  1058. //
  1059. // rgv03
  1060. //
  1061. this.rgv03.Dock = System.Windows.Forms.DockStyle.Fill;
  1062. this.rgv03.Location = new System.Drawing.Point(78, 470);
  1063. this.rgv03.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1064. this.rgv03.Name = "rgv03";
  1065. this.myTableLayoutPanel1.SetRowSpan(this.rgv03, 2);
  1066. this.rgv03.Size = new System.Drawing.Size(34, 74);
  1067. this.rgv03.TabIndex = 109;
  1068. //
  1069. // conveyor_1138
  1070. //
  1071. this.conveyor_1138.BackColor = System.Drawing.Color.Transparent;
  1072. this.conveyor_1138.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("conveyor_1138.BackgroundImage")));
  1073. this.conveyor_1138.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1074. this.conveyor_1138.Dock = System.Windows.Forms.DockStyle.Fill;
  1075. this.conveyor_1138.Location = new System.Drawing.Point(1102, 702);
  1076. this.conveyor_1138.Margin = new System.Windows.Forms.Padding(0);
  1077. this.conveyor_1138.Name = "conveyor_1138";
  1078. this.conveyor_1138.Size = new System.Drawing.Size(40, 39);
  1079. this.conveyor_1138.TabIndex = 110;
  1080. //
  1081. // conveyor_1139
  1082. //
  1083. this.conveyor_1139.Dock = System.Windows.Forms.DockStyle.Fill;
  1084. this.conveyor_1139.Location = new System.Drawing.Point(1102, 741);
  1085. this.conveyor_1139.Margin = new System.Windows.Forms.Padding(0);
  1086. this.conveyor_1139.Name = "conveyor_1139";
  1087. this.conveyor_1139.Size = new System.Drawing.Size(40, 39);
  1088. this.conveyor_1139.TabIndex = 111;
  1089. //
  1090. // conveyor_1112
  1091. //
  1092. this.conveyor_1112.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  1093. this.conveyor_1112.Dock = System.Windows.Forms.DockStyle.Fill;
  1094. this.conveyor_1112.Location = new System.Drawing.Point(1026, 585);
  1095. this.conveyor_1112.Margin = new System.Windows.Forms.Padding(0);
  1096. this.conveyor_1112.Name = "conveyor_1112";
  1097. this.conveyor_1112.Size = new System.Drawing.Size(38, 39);
  1098. this.conveyor_1112.TabIndex = 112;
  1099. //
  1100. // conveyor_1111
  1101. //
  1102. this.conveyor_1111.BackColor = System.Drawing.Color.Transparent;
  1103. this.conveyor_1111.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1104. this.conveyor_1111.Dock = System.Windows.Forms.DockStyle.Fill;
  1105. this.conveyor_1111.Location = new System.Drawing.Point(1064, 585);
  1106. this.conveyor_1111.Margin = new System.Windows.Forms.Padding(0);
  1107. this.conveyor_1111.Name = "conveyor_1111";
  1108. this.conveyor_1111.Size = new System.Drawing.Size(38, 39);
  1109. this.conveyor_1111.TabIndex = 113;
  1110. //
  1111. // conveyor_1110
  1112. //
  1113. this.conveyor_1110.BackColor = System.Drawing.Color.Transparent;
  1114. this.conveyor_1110.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1115. this.conveyor_1110.Dock = System.Windows.Forms.DockStyle.Fill;
  1116. this.conveyor_1110.Location = new System.Drawing.Point(1102, 585);
  1117. this.conveyor_1110.Margin = new System.Windows.Forms.Padding(0);
  1118. this.conveyor_1110.Name = "conveyor_1110";
  1119. this.conveyor_1110.Size = new System.Drawing.Size(40, 39);
  1120. this.conveyor_1110.TabIndex = 114;
  1121. //
  1122. // conveyor_1021
  1123. //
  1124. this.conveyor_1021.Dock = System.Windows.Forms.DockStyle.Fill;
  1125. this.conveyor_1021.Location = new System.Drawing.Point(646, 0);
  1126. this.conveyor_1021.Margin = new System.Windows.Forms.Padding(0);
  1127. this.conveyor_1021.Name = "conveyor_1021";
  1128. this.conveyor_1021.Size = new System.Drawing.Size(38, 39);
  1129. this.conveyor_1021.TabIndex = 116;
  1130. this.conveyor_1021.Tag = "1021";
  1131. //
  1132. // conveyor_1022
  1133. //
  1134. this.conveyor_1022.Dock = System.Windows.Forms.DockStyle.Fill;
  1135. this.conveyor_1022.Location = new System.Drawing.Point(646, 39);
  1136. this.conveyor_1022.Margin = new System.Windows.Forms.Padding(0);
  1137. this.conveyor_1022.Name = "conveyor_1022";
  1138. this.conveyor_1022.Size = new System.Drawing.Size(38, 39);
  1139. this.conveyor_1022.TabIndex = 117;
  1140. //
  1141. // conveyor3_1027
  1142. //
  1143. this.conveyor3_1027.Dock = System.Windows.Forms.DockStyle.Fill;
  1144. this.conveyor3_1027.Location = new System.Drawing.Point(646, 118);
  1145. this.conveyor3_1027.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
  1146. this.conveyor3_1027.Name = "conveyor3_1027";
  1147. this.conveyor3_1027.Size = new System.Drawing.Size(38, 38);
  1148. this.conveyor3_1027.TabIndex = 118;
  1149. //
  1150. // conveyor_1029
  1151. //
  1152. this.conveyor_1029.BackColor = System.Drawing.Color.Transparent;
  1153. this.conveyor_1029.Dock = System.Windows.Forms.DockStyle.Fill;
  1154. this.conveyor_1029.Location = new System.Drawing.Point(646, 156);
  1155. this.conveyor_1029.Margin = new System.Windows.Forms.Padding(0);
  1156. this.conveyor_1029.Name = "conveyor_1029";
  1157. this.conveyor_1029.Size = new System.Drawing.Size(38, 39);
  1158. this.conveyor_1029.TabIndex = 119;
  1159. //
  1160. // conveyor_1030
  1161. //
  1162. this.conveyor_1030.BackColor = System.Drawing.Color.Transparent;
  1163. this.conveyor_1030.Dock = System.Windows.Forms.DockStyle.Fill;
  1164. this.conveyor_1030.Location = new System.Drawing.Point(684, 156);
  1165. this.conveyor_1030.Margin = new System.Windows.Forms.Padding(0);
  1166. this.conveyor_1030.Name = "conveyor_1030";
  1167. this.conveyor_1030.Size = new System.Drawing.Size(38, 39);
  1168. this.conveyor_1030.TabIndex = 120;
  1169. //
  1170. // conveyor_1031
  1171. //
  1172. this.conveyor_1031.BackColor = System.Drawing.Color.Transparent;
  1173. this.conveyor_1031.Dock = System.Windows.Forms.DockStyle.Fill;
  1174. this.conveyor_1031.Location = new System.Drawing.Point(722, 156);
  1175. this.conveyor_1031.Margin = new System.Windows.Forms.Padding(0);
  1176. this.conveyor_1031.Name = "conveyor_1031";
  1177. this.conveyor_1031.Size = new System.Drawing.Size(38, 39);
  1178. this.conveyor_1031.TabIndex = 121;
  1179. //
  1180. // conveyor_1033
  1181. //
  1182. this.conveyor_1033.BackColor = System.Drawing.Color.Transparent;
  1183. this.conveyor_1033.Dock = System.Windows.Forms.DockStyle.Fill;
  1184. this.conveyor_1033.Location = new System.Drawing.Point(760, 156);
  1185. this.conveyor_1033.Margin = new System.Windows.Forms.Padding(0);
  1186. this.conveyor_1033.Name = "conveyor_1033";
  1187. this.conveyor_1033.Size = new System.Drawing.Size(38, 39);
  1188. this.conveyor_1033.TabIndex = 122;
  1189. //
  1190. // conveyor_1013
  1191. //
  1192. this.conveyor_1013.BackColor = System.Drawing.Color.Transparent;
  1193. this.conveyor_1013.Dock = System.Windows.Forms.DockStyle.Fill;
  1194. this.conveyor_1013.Location = new System.Drawing.Point(798, 117);
  1195. this.conveyor_1013.Margin = new System.Windows.Forms.Padding(0);
  1196. this.conveyor_1013.Name = "conveyor_1013";
  1197. this.conveyor_1013.Size = new System.Drawing.Size(38, 39);
  1198. this.conveyor_1013.TabIndex = 123;
  1199. //
  1200. // conveyor_1012
  1201. //
  1202. this.conveyor_1012.BackColor = System.Drawing.Color.Transparent;
  1203. this.conveyor_1012.Dock = System.Windows.Forms.DockStyle.Fill;
  1204. this.conveyor_1012.Location = new System.Drawing.Point(836, 117);
  1205. this.conveyor_1012.Margin = new System.Windows.Forms.Padding(0);
  1206. this.conveyor_1012.Name = "conveyor_1012";
  1207. this.conveyor_1012.Size = new System.Drawing.Size(38, 39);
  1208. this.conveyor_1012.TabIndex = 124;
  1209. //
  1210. // conveyor_1011
  1211. //
  1212. this.conveyor_1011.BackColor = System.Drawing.Color.Transparent;
  1213. this.conveyor_1011.Dock = System.Windows.Forms.DockStyle.Fill;
  1214. this.conveyor_1011.Location = new System.Drawing.Point(874, 117);
  1215. this.conveyor_1011.Margin = new System.Windows.Forms.Padding(0);
  1216. this.conveyor_1011.Name = "conveyor_1011";
  1217. this.conveyor_1011.Size = new System.Drawing.Size(38, 39);
  1218. this.conveyor_1011.TabIndex = 125;
  1219. //
  1220. // conveyor_1046
  1221. //
  1222. this.conveyor_1046.BackColor = System.Drawing.Color.Transparent;
  1223. this.conveyor_1046.Dock = System.Windows.Forms.DockStyle.Fill;
  1224. this.conveyor_1046.Location = new System.Drawing.Point(722, 117);
  1225. this.conveyor_1046.Margin = new System.Windows.Forms.Padding(0);
  1226. this.conveyor_1046.Name = "conveyor_1046";
  1227. this.conveyor_1046.Size = new System.Drawing.Size(38, 39);
  1228. this.conveyor_1046.TabIndex = 126;
  1229. //
  1230. // conveyor_1019
  1231. //
  1232. this.conveyor_1019.BackColor = System.Drawing.Color.Transparent;
  1233. this.conveyor_1019.Dock = System.Windows.Forms.DockStyle.Fill;
  1234. this.conveyor_1019.Location = new System.Drawing.Point(684, 117);
  1235. this.conveyor_1019.Margin = new System.Windows.Forms.Padding(0);
  1236. this.conveyor_1019.Name = "conveyor_1019";
  1237. this.conveyor_1019.Size = new System.Drawing.Size(38, 39);
  1238. this.conveyor_1019.TabIndex = 127;
  1239. //
  1240. // conveyor_1061
  1241. //
  1242. this.conveyor_1061.BackColor = System.Drawing.Color.Transparent;
  1243. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1061, 2);
  1244. this.conveyor_1061.Dock = System.Windows.Forms.DockStyle.Fill;
  1245. this.conveyor_1061.Location = new System.Drawing.Point(0, 234);
  1246. this.conveyor_1061.Margin = new System.Windows.Forms.Padding(0);
  1247. this.conveyor_1061.Name = "conveyor_1061";
  1248. this.conveyor_1061.Size = new System.Drawing.Size(76, 39);
  1249. this.conveyor_1061.TabIndex = 128;
  1250. //
  1251. // conveyor_1050
  1252. //
  1253. this.conveyor_1050.BackColor = System.Drawing.Color.Transparent;
  1254. this.conveyor_1050.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1255. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1050, 2);
  1256. this.conveyor_1050.Dock = System.Windows.Forms.DockStyle.Fill;
  1257. this.conveyor_1050.Location = new System.Drawing.Point(114, 234);
  1258. this.conveyor_1050.Margin = new System.Windows.Forms.Padding(0);
  1259. this.conveyor_1050.Name = "conveyor_1050";
  1260. this.conveyor_1050.Size = new System.Drawing.Size(76, 39);
  1261. this.conveyor_1050.TabIndex = 129;
  1262. //
  1263. // conveyor_1052
  1264. //
  1265. this.conveyor_1052.BackColor = System.Drawing.Color.Transparent;
  1266. this.conveyor_1052.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1267. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1052, 2);
  1268. this.conveyor_1052.Dock = System.Windows.Forms.DockStyle.Fill;
  1269. this.conveyor_1052.Location = new System.Drawing.Point(114, 390);
  1270. this.conveyor_1052.Margin = new System.Windows.Forms.Padding(0);
  1271. this.conveyor_1052.Name = "conveyor_1052";
  1272. this.conveyor_1052.Size = new System.Drawing.Size(76, 39);
  1273. this.conveyor_1052.TabIndex = 130;
  1274. //
  1275. // conveyor_1054
  1276. //
  1277. this.conveyor_1054.BackColor = System.Drawing.Color.Transparent;
  1278. this.conveyor_1054.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1279. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1054, 2);
  1280. this.conveyor_1054.Dock = System.Windows.Forms.DockStyle.Fill;
  1281. this.conveyor_1054.Location = new System.Drawing.Point(114, 546);
  1282. this.conveyor_1054.Margin = new System.Windows.Forms.Padding(0);
  1283. this.conveyor_1054.Name = "conveyor_1054";
  1284. this.conveyor_1054.Size = new System.Drawing.Size(76, 39);
  1285. this.conveyor_1054.TabIndex = 131;
  1286. //
  1287. // conveyor_1002
  1288. //
  1289. this.conveyor_1002.BackColor = System.Drawing.Color.Transparent;
  1290. this.conveyor_1002.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1291. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1002, 2);
  1292. this.conveyor_1002.Dock = System.Windows.Forms.DockStyle.Fill;
  1293. this.conveyor_1002.Location = new System.Drawing.Point(836, 234);
  1294. this.conveyor_1002.Margin = new System.Windows.Forms.Padding(0);
  1295. this.conveyor_1002.Name = "conveyor_1002";
  1296. this.conveyor_1002.Size = new System.Drawing.Size(76, 39);
  1297. this.conveyor_1002.TabIndex = 132;
  1298. //
  1299. // conveyor_1004
  1300. //
  1301. this.conveyor_1004.BackColor = System.Drawing.Color.Transparent;
  1302. this.conveyor_1004.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1303. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1004, 2);
  1304. this.conveyor_1004.Dock = System.Windows.Forms.DockStyle.Fill;
  1305. this.conveyor_1004.Location = new System.Drawing.Point(836, 468);
  1306. this.conveyor_1004.Margin = new System.Windows.Forms.Padding(0);
  1307. this.conveyor_1004.Name = "conveyor_1004";
  1308. this.conveyor_1004.Size = new System.Drawing.Size(76, 39);
  1309. this.conveyor_1004.TabIndex = 133;
  1310. //
  1311. // conveyor_1006
  1312. //
  1313. this.conveyor_1006.BackColor = System.Drawing.Color.Transparent;
  1314. this.conveyor_1006.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1315. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1006, 2);
  1316. this.conveyor_1006.Dock = System.Windows.Forms.DockStyle.Fill;
  1317. this.conveyor_1006.Location = new System.Drawing.Point(836, 624);
  1318. this.conveyor_1006.Margin = new System.Windows.Forms.Padding(0);
  1319. this.conveyor_1006.Name = "conveyor_1006";
  1320. this.conveyor_1006.Size = new System.Drawing.Size(76, 39);
  1321. this.conveyor_1006.TabIndex = 134;
  1322. //
  1323. // conveyor_1118
  1324. //
  1325. this.conveyor_1118.BackColor = System.Drawing.Color.Transparent;
  1326. this.conveyor_1118.Dock = System.Windows.Forms.DockStyle.Fill;
  1327. this.conveyor_1118.Location = new System.Drawing.Point(950, 663);
  1328. this.conveyor_1118.Margin = new System.Windows.Forms.Padding(0);
  1329. this.conveyor_1118.Name = "conveyor_1118";
  1330. this.conveyor_1118.Size = new System.Drawing.Size(38, 39);
  1331. this.conveyor_1118.TabIndex = 135;
  1332. //
  1333. // conveyor_1115
  1334. //
  1335. this.conveyor_1115.BackColor = System.Drawing.Color.Transparent;
  1336. this.conveyor_1115.Dock = System.Windows.Forms.DockStyle.Fill;
  1337. this.conveyor_1115.Location = new System.Drawing.Point(1026, 663);
  1338. this.conveyor_1115.Margin = new System.Windows.Forms.Padding(0);
  1339. this.conveyor_1115.Name = "conveyor_1115";
  1340. this.conveyor_1115.Size = new System.Drawing.Size(38, 39);
  1341. this.conveyor_1115.TabIndex = 136;
  1342. //
  1343. // locationPostion21
  1344. //
  1345. this.locationPostion21.BackColor = System.Drawing.Color.Transparent;
  1346. this.locationPostion21.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion21.BackgroundImage")));
  1347. this.locationPostion21.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1348. this.locationPostion21.Dock = System.Windows.Forms.DockStyle.Fill;
  1349. this.locationPostion21.Location = new System.Drawing.Point(190, 234);
  1350. this.locationPostion21.Margin = new System.Windows.Forms.Padding(0);
  1351. this.locationPostion21.Name = "locationPostion21";
  1352. this.locationPostion21.Size = new System.Drawing.Size(39, 39);
  1353. this.locationPostion21.TabIndex = 137;
  1354. //
  1355. // locationPostion22
  1356. //
  1357. this.locationPostion22.BackColor = System.Drawing.Color.Transparent;
  1358. this.locationPostion22.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion22.BackgroundImage")));
  1359. this.locationPostion22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1360. this.locationPostion22.Dock = System.Windows.Forms.DockStyle.Fill;
  1361. this.locationPostion22.Location = new System.Drawing.Point(229, 234);
  1362. this.locationPostion22.Margin = new System.Windows.Forms.Padding(0);
  1363. this.locationPostion22.Name = "locationPostion22";
  1364. this.locationPostion22.Size = new System.Drawing.Size(37, 39);
  1365. this.locationPostion22.TabIndex = 138;
  1366. //
  1367. // locationPostion23
  1368. //
  1369. this.locationPostion23.BackColor = System.Drawing.Color.Transparent;
  1370. this.locationPostion23.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion23.BackgroundImage")));
  1371. this.locationPostion23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1372. this.locationPostion23.Dock = System.Windows.Forms.DockStyle.Fill;
  1373. this.locationPostion23.Location = new System.Drawing.Point(266, 234);
  1374. this.locationPostion23.Margin = new System.Windows.Forms.Padding(0);
  1375. this.locationPostion23.Name = "locationPostion23";
  1376. this.locationPostion23.Size = new System.Drawing.Size(38, 39);
  1377. this.locationPostion23.TabIndex = 139;
  1378. //
  1379. // locationPostion24
  1380. //
  1381. this.locationPostion24.BackColor = System.Drawing.Color.Transparent;
  1382. this.locationPostion24.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion24.BackgroundImage")));
  1383. this.locationPostion24.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1384. this.locationPostion24.Dock = System.Windows.Forms.DockStyle.Fill;
  1385. this.locationPostion24.Location = new System.Drawing.Point(304, 234);
  1386. this.locationPostion24.Margin = new System.Windows.Forms.Padding(0);
  1387. this.locationPostion24.Name = "locationPostion24";
  1388. this.locationPostion24.Size = new System.Drawing.Size(38, 39);
  1389. this.locationPostion24.TabIndex = 140;
  1390. //
  1391. // locationPostion25
  1392. //
  1393. this.locationPostion25.BackColor = System.Drawing.Color.Transparent;
  1394. this.locationPostion25.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion25.BackgroundImage")));
  1395. this.locationPostion25.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1396. this.locationPostion25.Dock = System.Windows.Forms.DockStyle.Fill;
  1397. this.locationPostion25.Location = new System.Drawing.Point(342, 234);
  1398. this.locationPostion25.Margin = new System.Windows.Forms.Padding(0);
  1399. this.locationPostion25.Name = "locationPostion25";
  1400. this.locationPostion25.Size = new System.Drawing.Size(38, 39);
  1401. this.locationPostion25.TabIndex = 141;
  1402. //
  1403. // locationPostion26
  1404. //
  1405. this.locationPostion26.BackColor = System.Drawing.Color.Transparent;
  1406. this.locationPostion26.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion26.BackgroundImage")));
  1407. this.locationPostion26.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1408. this.locationPostion26.Dock = System.Windows.Forms.DockStyle.Fill;
  1409. this.locationPostion26.Location = new System.Drawing.Point(380, 234);
  1410. this.locationPostion26.Margin = new System.Windows.Forms.Padding(0);
  1411. this.locationPostion26.Name = "locationPostion26";
  1412. this.locationPostion26.Size = new System.Drawing.Size(38, 39);
  1413. this.locationPostion26.TabIndex = 142;
  1414. //
  1415. // locationPostion27
  1416. //
  1417. this.locationPostion27.BackColor = System.Drawing.Color.Transparent;
  1418. this.locationPostion27.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion27.BackgroundImage")));
  1419. this.locationPostion27.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1420. this.locationPostion27.Dock = System.Windows.Forms.DockStyle.Fill;
  1421. this.locationPostion27.Location = new System.Drawing.Point(418, 234);
  1422. this.locationPostion27.Margin = new System.Windows.Forms.Padding(0);
  1423. this.locationPostion27.Name = "locationPostion27";
  1424. this.locationPostion27.Size = new System.Drawing.Size(38, 39);
  1425. this.locationPostion27.TabIndex = 143;
  1426. //
  1427. // locationPostion28
  1428. //
  1429. this.locationPostion28.BackColor = System.Drawing.Color.Transparent;
  1430. this.locationPostion28.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion28.BackgroundImage")));
  1431. this.locationPostion28.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1432. this.locationPostion28.Dock = System.Windows.Forms.DockStyle.Fill;
  1433. this.locationPostion28.Location = new System.Drawing.Point(456, 234);
  1434. this.locationPostion28.Margin = new System.Windows.Forms.Padding(0);
  1435. this.locationPostion28.Name = "locationPostion28";
  1436. this.locationPostion28.Size = new System.Drawing.Size(38, 39);
  1437. this.locationPostion28.TabIndex = 144;
  1438. //
  1439. // locationPostion29
  1440. //
  1441. this.locationPostion29.BackColor = System.Drawing.Color.Transparent;
  1442. this.locationPostion29.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion29.BackgroundImage")));
  1443. this.locationPostion29.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1444. this.locationPostion29.Dock = System.Windows.Forms.DockStyle.Fill;
  1445. this.locationPostion29.Location = new System.Drawing.Point(494, 234);
  1446. this.locationPostion29.Margin = new System.Windows.Forms.Padding(0);
  1447. this.locationPostion29.Name = "locationPostion29";
  1448. this.locationPostion29.Size = new System.Drawing.Size(38, 39);
  1449. this.locationPostion29.TabIndex = 145;
  1450. //
  1451. // locationPostion210
  1452. //
  1453. this.locationPostion210.BackColor = System.Drawing.Color.Transparent;
  1454. this.locationPostion210.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion210.BackgroundImage")));
  1455. this.locationPostion210.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1456. this.locationPostion210.Dock = System.Windows.Forms.DockStyle.Fill;
  1457. this.locationPostion210.Location = new System.Drawing.Point(532, 234);
  1458. this.locationPostion210.Margin = new System.Windows.Forms.Padding(0);
  1459. this.locationPostion210.Name = "locationPostion210";
  1460. this.locationPostion210.Size = new System.Drawing.Size(38, 39);
  1461. this.locationPostion210.TabIndex = 146;
  1462. //
  1463. // locationPostion211
  1464. //
  1465. this.locationPostion211.BackColor = System.Drawing.Color.Transparent;
  1466. this.locationPostion211.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion211.BackgroundImage")));
  1467. this.locationPostion211.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1468. this.locationPostion211.Dock = System.Windows.Forms.DockStyle.Fill;
  1469. this.locationPostion211.Location = new System.Drawing.Point(570, 234);
  1470. this.locationPostion211.Margin = new System.Windows.Forms.Padding(0);
  1471. this.locationPostion211.Name = "locationPostion211";
  1472. this.locationPostion211.Size = new System.Drawing.Size(38, 39);
  1473. this.locationPostion211.TabIndex = 147;
  1474. //
  1475. // locationPostion212
  1476. //
  1477. this.locationPostion212.BackColor = System.Drawing.Color.Transparent;
  1478. this.locationPostion212.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion212.BackgroundImage")));
  1479. this.locationPostion212.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1480. this.locationPostion212.Dock = System.Windows.Forms.DockStyle.Fill;
  1481. this.locationPostion212.Location = new System.Drawing.Point(608, 234);
  1482. this.locationPostion212.Margin = new System.Windows.Forms.Padding(0);
  1483. this.locationPostion212.Name = "locationPostion212";
  1484. this.locationPostion212.Size = new System.Drawing.Size(38, 39);
  1485. this.locationPostion212.TabIndex = 148;
  1486. //
  1487. // locationPostion213
  1488. //
  1489. this.locationPostion213.BackColor = System.Drawing.Color.Transparent;
  1490. this.locationPostion213.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion213.BackgroundImage")));
  1491. this.locationPostion213.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1492. this.locationPostion213.Dock = System.Windows.Forms.DockStyle.Fill;
  1493. this.locationPostion213.Location = new System.Drawing.Point(646, 234);
  1494. this.locationPostion213.Margin = new System.Windows.Forms.Padding(0);
  1495. this.locationPostion213.Name = "locationPostion213";
  1496. this.locationPostion213.Size = new System.Drawing.Size(38, 39);
  1497. this.locationPostion213.TabIndex = 149;
  1498. //
  1499. // locationPostion214
  1500. //
  1501. this.locationPostion214.BackColor = System.Drawing.Color.Transparent;
  1502. this.locationPostion214.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion214.BackgroundImage")));
  1503. this.locationPostion214.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1504. this.locationPostion214.Dock = System.Windows.Forms.DockStyle.Fill;
  1505. this.locationPostion214.Location = new System.Drawing.Point(684, 234);
  1506. this.locationPostion214.Margin = new System.Windows.Forms.Padding(0);
  1507. this.locationPostion214.Name = "locationPostion214";
  1508. this.locationPostion214.Size = new System.Drawing.Size(38, 39);
  1509. this.locationPostion214.TabIndex = 150;
  1510. //
  1511. // locationPostion215
  1512. //
  1513. this.locationPostion215.BackColor = System.Drawing.Color.Transparent;
  1514. this.locationPostion215.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion215.BackgroundImage")));
  1515. this.locationPostion215.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1516. this.locationPostion215.Dock = System.Windows.Forms.DockStyle.Fill;
  1517. this.locationPostion215.Location = new System.Drawing.Point(722, 234);
  1518. this.locationPostion215.Margin = new System.Windows.Forms.Padding(0);
  1519. this.locationPostion215.Name = "locationPostion215";
  1520. this.locationPostion215.Size = new System.Drawing.Size(38, 39);
  1521. this.locationPostion215.TabIndex = 151;
  1522. //
  1523. // locationPostion216
  1524. //
  1525. this.locationPostion216.BackColor = System.Drawing.Color.Transparent;
  1526. this.locationPostion216.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion216.BackgroundImage")));
  1527. this.locationPostion216.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1528. this.locationPostion216.Dock = System.Windows.Forms.DockStyle.Fill;
  1529. this.locationPostion216.Location = new System.Drawing.Point(760, 234);
  1530. this.locationPostion216.Margin = new System.Windows.Forms.Padding(0);
  1531. this.locationPostion216.Name = "locationPostion216";
  1532. this.locationPostion216.Size = new System.Drawing.Size(38, 39);
  1533. this.locationPostion216.TabIndex = 152;
  1534. //
  1535. // locationPostion217
  1536. //
  1537. this.locationPostion217.BackColor = System.Drawing.Color.Transparent;
  1538. this.locationPostion217.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion217.BackgroundImage")));
  1539. this.locationPostion217.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1540. this.locationPostion217.Dock = System.Windows.Forms.DockStyle.Fill;
  1541. this.locationPostion217.Location = new System.Drawing.Point(798, 234);
  1542. this.locationPostion217.Margin = new System.Windows.Forms.Padding(0);
  1543. this.locationPostion217.Name = "locationPostion217";
  1544. this.locationPostion217.Size = new System.Drawing.Size(38, 39);
  1545. this.locationPostion217.TabIndex = 153;
  1546. //
  1547. // tableCellLabel210
  1548. //
  1549. this.tableCellLabel210.BackColor = System.Drawing.Color.Transparent;
  1550. this.tableCellLabel210.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel210.BackgroundImage")));
  1551. this.tableCellLabel210.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1552. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel210, 7);
  1553. this.tableCellLabel210.Dock = System.Windows.Forms.DockStyle.Fill;
  1554. this.tableCellLabel210.Location = new System.Drawing.Point(190, 273);
  1555. this.tableCellLabel210.Margin = new System.Windows.Forms.Padding(0);
  1556. this.tableCellLabel210.Name = "tableCellLabel210";
  1557. this.tableCellLabel210.Size = new System.Drawing.Size(266, 39);
  1558. this.tableCellLabel210.TabIndex = 154;
  1559. //
  1560. // srm03
  1561. //
  1562. this.srm03.BackColor = System.Drawing.Color.Transparent;
  1563. this.srm03.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1564. this.myTableLayoutPanel1.SetColumnSpan(this.srm03, 2);
  1565. this.srm03.Dock = System.Windows.Forms.DockStyle.Fill;
  1566. this.srm03.Location = new System.Drawing.Point(456, 273);
  1567. this.srm03.Margin = new System.Windows.Forms.Padding(0);
  1568. this.srm03.Name = "srm03";
  1569. this.srm03.Size = new System.Drawing.Size(76, 39);
  1570. this.srm03.TabIndex = 155;
  1571. //
  1572. // tableCellLabel211
  1573. //
  1574. this.tableCellLabel211.BackColor = System.Drawing.Color.Transparent;
  1575. this.tableCellLabel211.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel211.BackgroundImage")));
  1576. this.tableCellLabel211.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1577. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel211, 8);
  1578. this.tableCellLabel211.Dock = System.Windows.Forms.DockStyle.Fill;
  1579. this.tableCellLabel211.Location = new System.Drawing.Point(532, 273);
  1580. this.tableCellLabel211.Margin = new System.Windows.Forms.Padding(0);
  1581. this.tableCellLabel211.Name = "tableCellLabel211";
  1582. this.tableCellLabel211.Size = new System.Drawing.Size(304, 39);
  1583. this.tableCellLabel211.TabIndex = 156;
  1584. //
  1585. // tableCellLabel212
  1586. //
  1587. this.tableCellLabel212.BackColor = System.Drawing.Color.Transparent;
  1588. this.tableCellLabel212.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel212.BackgroundImage")));
  1589. this.tableCellLabel212.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1590. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel212, 7);
  1591. this.tableCellLabel212.Dock = System.Windows.Forms.DockStyle.Fill;
  1592. this.tableCellLabel212.Location = new System.Drawing.Point(190, 429);
  1593. this.tableCellLabel212.Margin = new System.Windows.Forms.Padding(0);
  1594. this.tableCellLabel212.Name = "tableCellLabel212";
  1595. this.tableCellLabel212.Size = new System.Drawing.Size(266, 39);
  1596. this.tableCellLabel212.TabIndex = 157;
  1597. //
  1598. // tableCellLabel213
  1599. //
  1600. this.tableCellLabel213.BackColor = System.Drawing.Color.Transparent;
  1601. this.tableCellLabel213.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel213.BackgroundImage")));
  1602. this.tableCellLabel213.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1603. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel213, 8);
  1604. this.tableCellLabel213.Dock = System.Windows.Forms.DockStyle.Fill;
  1605. this.tableCellLabel213.Location = new System.Drawing.Point(532, 429);
  1606. this.tableCellLabel213.Margin = new System.Windows.Forms.Padding(0);
  1607. this.tableCellLabel213.Name = "tableCellLabel213";
  1608. this.tableCellLabel213.Size = new System.Drawing.Size(304, 39);
  1609. this.tableCellLabel213.TabIndex = 158;
  1610. //
  1611. // srm02
  1612. //
  1613. this.srm02.BackColor = System.Drawing.Color.Transparent;
  1614. this.srm02.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1615. this.myTableLayoutPanel1.SetColumnSpan(this.srm02, 2);
  1616. this.srm02.Dock = System.Windows.Forms.DockStyle.Fill;
  1617. this.srm02.Location = new System.Drawing.Point(456, 429);
  1618. this.srm02.Margin = new System.Windows.Forms.Padding(0);
  1619. this.srm02.Name = "srm02";
  1620. this.srm02.Size = new System.Drawing.Size(76, 39);
  1621. this.srm02.TabIndex = 159;
  1622. //
  1623. // tableCellLabel214
  1624. //
  1625. this.tableCellLabel214.BackColor = System.Drawing.Color.Transparent;
  1626. this.tableCellLabel214.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel214.BackgroundImage")));
  1627. this.tableCellLabel214.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1628. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel214, 7);
  1629. this.tableCellLabel214.Dock = System.Windows.Forms.DockStyle.Fill;
  1630. this.tableCellLabel214.Location = new System.Drawing.Point(190, 585);
  1631. this.tableCellLabel214.Margin = new System.Windows.Forms.Padding(0);
  1632. this.tableCellLabel214.Name = "tableCellLabel214";
  1633. this.tableCellLabel214.Size = new System.Drawing.Size(266, 39);
  1634. this.tableCellLabel214.TabIndex = 160;
  1635. //
  1636. // tableCellLabel215
  1637. //
  1638. this.tableCellLabel215.BackColor = System.Drawing.Color.Transparent;
  1639. this.tableCellLabel215.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel215.BackgroundImage")));
  1640. this.tableCellLabel215.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1641. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel215, 8);
  1642. this.tableCellLabel215.Dock = System.Windows.Forms.DockStyle.Fill;
  1643. this.tableCellLabel215.Location = new System.Drawing.Point(532, 585);
  1644. this.tableCellLabel215.Margin = new System.Windows.Forms.Padding(0);
  1645. this.tableCellLabel215.Name = "tableCellLabel215";
  1646. this.tableCellLabel215.Size = new System.Drawing.Size(304, 39);
  1647. this.tableCellLabel215.TabIndex = 161;
  1648. //
  1649. // srm01
  1650. //
  1651. this.srm01.BackColor = System.Drawing.Color.Transparent;
  1652. this.srm01.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1653. this.myTableLayoutPanel1.SetColumnSpan(this.srm01, 2);
  1654. this.srm01.Dock = System.Windows.Forms.DockStyle.Fill;
  1655. this.srm01.Location = new System.Drawing.Point(456, 585);
  1656. this.srm01.Margin = new System.Windows.Forms.Padding(0);
  1657. this.srm01.Name = "srm01";
  1658. this.srm01.Size = new System.Drawing.Size(76, 39);
  1659. this.srm01.TabIndex = 162;
  1660. //
  1661. // locationPostion218
  1662. //
  1663. this.locationPostion218.BackColor = System.Drawing.Color.Transparent;
  1664. this.locationPostion218.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion218.BackgroundImage")));
  1665. this.locationPostion218.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1666. this.locationPostion218.Dock = System.Windows.Forms.DockStyle.Fill;
  1667. this.locationPostion218.Location = new System.Drawing.Point(190, 312);
  1668. this.locationPostion218.Margin = new System.Windows.Forms.Padding(0);
  1669. this.locationPostion218.Name = "locationPostion218";
  1670. this.locationPostion218.Size = new System.Drawing.Size(39, 39);
  1671. this.locationPostion218.TabIndex = 163;
  1672. //
  1673. // locationPostion219
  1674. //
  1675. this.locationPostion219.BackColor = System.Drawing.Color.Transparent;
  1676. this.locationPostion219.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion219.BackgroundImage")));
  1677. this.locationPostion219.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1678. this.locationPostion219.Dock = System.Windows.Forms.DockStyle.Fill;
  1679. this.locationPostion219.Location = new System.Drawing.Point(229, 312);
  1680. this.locationPostion219.Margin = new System.Windows.Forms.Padding(0);
  1681. this.locationPostion219.Name = "locationPostion219";
  1682. this.locationPostion219.Size = new System.Drawing.Size(37, 39);
  1683. this.locationPostion219.TabIndex = 164;
  1684. //
  1685. // locationPostion220
  1686. //
  1687. this.locationPostion220.BackColor = System.Drawing.Color.Transparent;
  1688. this.locationPostion220.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion220.BackgroundImage")));
  1689. this.locationPostion220.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1690. this.locationPostion220.Dock = System.Windows.Forms.DockStyle.Fill;
  1691. this.locationPostion220.Location = new System.Drawing.Point(266, 312);
  1692. this.locationPostion220.Margin = new System.Windows.Forms.Padding(0);
  1693. this.locationPostion220.Name = "locationPostion220";
  1694. this.locationPostion220.Size = new System.Drawing.Size(38, 39);
  1695. this.locationPostion220.TabIndex = 165;
  1696. //
  1697. // locationPostion221
  1698. //
  1699. this.locationPostion221.BackColor = System.Drawing.Color.Transparent;
  1700. this.locationPostion221.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion221.BackgroundImage")));
  1701. this.locationPostion221.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1702. this.locationPostion221.Dock = System.Windows.Forms.DockStyle.Fill;
  1703. this.locationPostion221.Location = new System.Drawing.Point(304, 312);
  1704. this.locationPostion221.Margin = new System.Windows.Forms.Padding(0);
  1705. this.locationPostion221.Name = "locationPostion221";
  1706. this.locationPostion221.Size = new System.Drawing.Size(38, 39);
  1707. this.locationPostion221.TabIndex = 166;
  1708. //
  1709. // locationPostion222
  1710. //
  1711. this.locationPostion222.BackColor = System.Drawing.Color.Transparent;
  1712. this.locationPostion222.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion222.BackgroundImage")));
  1713. this.locationPostion222.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1714. this.locationPostion222.Dock = System.Windows.Forms.DockStyle.Fill;
  1715. this.locationPostion222.Location = new System.Drawing.Point(342, 312);
  1716. this.locationPostion222.Margin = new System.Windows.Forms.Padding(0);
  1717. this.locationPostion222.Name = "locationPostion222";
  1718. this.locationPostion222.Size = new System.Drawing.Size(38, 39);
  1719. this.locationPostion222.TabIndex = 167;
  1720. //
  1721. // locationPostion223
  1722. //
  1723. this.locationPostion223.BackColor = System.Drawing.Color.Transparent;
  1724. this.locationPostion223.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion223.BackgroundImage")));
  1725. this.locationPostion223.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1726. this.locationPostion223.Dock = System.Windows.Forms.DockStyle.Fill;
  1727. this.locationPostion223.Location = new System.Drawing.Point(380, 312);
  1728. this.locationPostion223.Margin = new System.Windows.Forms.Padding(0);
  1729. this.locationPostion223.Name = "locationPostion223";
  1730. this.locationPostion223.Size = new System.Drawing.Size(38, 39);
  1731. this.locationPostion223.TabIndex = 168;
  1732. //
  1733. // locationPostion224
  1734. //
  1735. this.locationPostion224.BackColor = System.Drawing.Color.Transparent;
  1736. this.locationPostion224.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion224.BackgroundImage")));
  1737. this.locationPostion224.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1738. this.locationPostion224.Dock = System.Windows.Forms.DockStyle.Fill;
  1739. this.locationPostion224.Location = new System.Drawing.Point(418, 312);
  1740. this.locationPostion224.Margin = new System.Windows.Forms.Padding(0);
  1741. this.locationPostion224.Name = "locationPostion224";
  1742. this.locationPostion224.Size = new System.Drawing.Size(38, 39);
  1743. this.locationPostion224.TabIndex = 169;
  1744. //
  1745. // locationPostion225
  1746. //
  1747. this.locationPostion225.BackColor = System.Drawing.Color.Transparent;
  1748. this.locationPostion225.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion225.BackgroundImage")));
  1749. this.locationPostion225.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1750. this.locationPostion225.Dock = System.Windows.Forms.DockStyle.Fill;
  1751. this.locationPostion225.Location = new System.Drawing.Point(456, 312);
  1752. this.locationPostion225.Margin = new System.Windows.Forms.Padding(0);
  1753. this.locationPostion225.Name = "locationPostion225";
  1754. this.locationPostion225.Size = new System.Drawing.Size(38, 39);
  1755. this.locationPostion225.TabIndex = 170;
  1756. //
  1757. // locationPostion226
  1758. //
  1759. this.locationPostion226.BackColor = System.Drawing.Color.Transparent;
  1760. this.locationPostion226.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion226.BackgroundImage")));
  1761. this.locationPostion226.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1762. this.locationPostion226.Dock = System.Windows.Forms.DockStyle.Fill;
  1763. this.locationPostion226.Location = new System.Drawing.Point(494, 312);
  1764. this.locationPostion226.Margin = new System.Windows.Forms.Padding(0);
  1765. this.locationPostion226.Name = "locationPostion226";
  1766. this.locationPostion226.Size = new System.Drawing.Size(38, 39);
  1767. this.locationPostion226.TabIndex = 171;
  1768. //
  1769. // locationPostion227
  1770. //
  1771. this.locationPostion227.BackColor = System.Drawing.Color.Transparent;
  1772. this.locationPostion227.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion227.BackgroundImage")));
  1773. this.locationPostion227.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1774. this.locationPostion227.Dock = System.Windows.Forms.DockStyle.Fill;
  1775. this.locationPostion227.Location = new System.Drawing.Point(532, 312);
  1776. this.locationPostion227.Margin = new System.Windows.Forms.Padding(0);
  1777. this.locationPostion227.Name = "locationPostion227";
  1778. this.locationPostion227.Size = new System.Drawing.Size(38, 39);
  1779. this.locationPostion227.TabIndex = 172;
  1780. //
  1781. // locationPostion228
  1782. //
  1783. this.locationPostion228.BackColor = System.Drawing.Color.Transparent;
  1784. this.locationPostion228.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion228.BackgroundImage")));
  1785. this.locationPostion228.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1786. this.locationPostion228.Dock = System.Windows.Forms.DockStyle.Fill;
  1787. this.locationPostion228.Location = new System.Drawing.Point(570, 312);
  1788. this.locationPostion228.Margin = new System.Windows.Forms.Padding(0);
  1789. this.locationPostion228.Name = "locationPostion228";
  1790. this.locationPostion228.Size = new System.Drawing.Size(38, 39);
  1791. this.locationPostion228.TabIndex = 173;
  1792. //
  1793. // locationPostion229
  1794. //
  1795. this.locationPostion229.BackColor = System.Drawing.Color.Transparent;
  1796. this.locationPostion229.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion229.BackgroundImage")));
  1797. this.locationPostion229.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1798. this.locationPostion229.Dock = System.Windows.Forms.DockStyle.Fill;
  1799. this.locationPostion229.Location = new System.Drawing.Point(608, 312);
  1800. this.locationPostion229.Margin = new System.Windows.Forms.Padding(0);
  1801. this.locationPostion229.Name = "locationPostion229";
  1802. this.locationPostion229.Size = new System.Drawing.Size(38, 39);
  1803. this.locationPostion229.TabIndex = 174;
  1804. //
  1805. // locationPostion230
  1806. //
  1807. this.locationPostion230.BackColor = System.Drawing.Color.Transparent;
  1808. this.locationPostion230.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion230.BackgroundImage")));
  1809. this.locationPostion230.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1810. this.locationPostion230.Dock = System.Windows.Forms.DockStyle.Fill;
  1811. this.locationPostion230.Location = new System.Drawing.Point(646, 312);
  1812. this.locationPostion230.Margin = new System.Windows.Forms.Padding(0);
  1813. this.locationPostion230.Name = "locationPostion230";
  1814. this.locationPostion230.Size = new System.Drawing.Size(38, 39);
  1815. this.locationPostion230.TabIndex = 175;
  1816. //
  1817. // locationPostion231
  1818. //
  1819. this.locationPostion231.BackColor = System.Drawing.Color.Transparent;
  1820. this.locationPostion231.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion231.BackgroundImage")));
  1821. this.locationPostion231.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1822. this.locationPostion231.Dock = System.Windows.Forms.DockStyle.Fill;
  1823. this.locationPostion231.Location = new System.Drawing.Point(684, 312);
  1824. this.locationPostion231.Margin = new System.Windows.Forms.Padding(0);
  1825. this.locationPostion231.Name = "locationPostion231";
  1826. this.locationPostion231.Size = new System.Drawing.Size(38, 39);
  1827. this.locationPostion231.TabIndex = 176;
  1828. //
  1829. // locationPostion232
  1830. //
  1831. this.locationPostion232.BackColor = System.Drawing.Color.Transparent;
  1832. this.locationPostion232.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion232.BackgroundImage")));
  1833. this.locationPostion232.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1834. this.locationPostion232.Dock = System.Windows.Forms.DockStyle.Fill;
  1835. this.locationPostion232.Location = new System.Drawing.Point(722, 312);
  1836. this.locationPostion232.Margin = new System.Windows.Forms.Padding(0);
  1837. this.locationPostion232.Name = "locationPostion232";
  1838. this.locationPostion232.Size = new System.Drawing.Size(38, 39);
  1839. this.locationPostion232.TabIndex = 177;
  1840. //
  1841. // locationPostion233
  1842. //
  1843. this.locationPostion233.BackColor = System.Drawing.Color.Transparent;
  1844. this.locationPostion233.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion233.BackgroundImage")));
  1845. this.locationPostion233.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1846. this.locationPostion233.Dock = System.Windows.Forms.DockStyle.Fill;
  1847. this.locationPostion233.Location = new System.Drawing.Point(760, 312);
  1848. this.locationPostion233.Margin = new System.Windows.Forms.Padding(0);
  1849. this.locationPostion233.Name = "locationPostion233";
  1850. this.locationPostion233.Size = new System.Drawing.Size(38, 39);
  1851. this.locationPostion233.TabIndex = 178;
  1852. //
  1853. // locationPostion234
  1854. //
  1855. this.locationPostion234.BackColor = System.Drawing.Color.Transparent;
  1856. this.locationPostion234.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion234.BackgroundImage")));
  1857. this.locationPostion234.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1858. this.locationPostion234.Dock = System.Windows.Forms.DockStyle.Fill;
  1859. this.locationPostion234.Location = new System.Drawing.Point(798, 312);
  1860. this.locationPostion234.Margin = new System.Windows.Forms.Padding(0);
  1861. this.locationPostion234.Name = "locationPostion234";
  1862. this.locationPostion234.Size = new System.Drawing.Size(38, 39);
  1863. this.locationPostion234.TabIndex = 179;
  1864. //
  1865. // locationPostion235
  1866. //
  1867. this.locationPostion235.BackColor = System.Drawing.Color.Transparent;
  1868. this.locationPostion235.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion235.BackgroundImage")));
  1869. this.locationPostion235.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1870. this.locationPostion235.Dock = System.Windows.Forms.DockStyle.Fill;
  1871. this.locationPostion235.Location = new System.Drawing.Point(190, 390);
  1872. this.locationPostion235.Margin = new System.Windows.Forms.Padding(0);
  1873. this.locationPostion235.Name = "locationPostion235";
  1874. this.locationPostion235.Size = new System.Drawing.Size(39, 39);
  1875. this.locationPostion235.TabIndex = 180;
  1876. //
  1877. // locationPostion236
  1878. //
  1879. this.locationPostion236.BackColor = System.Drawing.Color.Transparent;
  1880. this.locationPostion236.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion236.BackgroundImage")));
  1881. this.locationPostion236.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1882. this.locationPostion236.Dock = System.Windows.Forms.DockStyle.Fill;
  1883. this.locationPostion236.Location = new System.Drawing.Point(229, 390);
  1884. this.locationPostion236.Margin = new System.Windows.Forms.Padding(0);
  1885. this.locationPostion236.Name = "locationPostion236";
  1886. this.locationPostion236.Size = new System.Drawing.Size(37, 39);
  1887. this.locationPostion236.TabIndex = 181;
  1888. //
  1889. // locationPostion237
  1890. //
  1891. this.locationPostion237.BackColor = System.Drawing.Color.Transparent;
  1892. this.locationPostion237.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion237.BackgroundImage")));
  1893. this.locationPostion237.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1894. this.locationPostion237.Dock = System.Windows.Forms.DockStyle.Fill;
  1895. this.locationPostion237.Location = new System.Drawing.Point(266, 390);
  1896. this.locationPostion237.Margin = new System.Windows.Forms.Padding(0);
  1897. this.locationPostion237.Name = "locationPostion237";
  1898. this.locationPostion237.Size = new System.Drawing.Size(38, 39);
  1899. this.locationPostion237.TabIndex = 182;
  1900. //
  1901. // locationPostion238
  1902. //
  1903. this.locationPostion238.BackColor = System.Drawing.Color.Transparent;
  1904. this.locationPostion238.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion238.BackgroundImage")));
  1905. this.locationPostion238.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1906. this.locationPostion238.Dock = System.Windows.Forms.DockStyle.Fill;
  1907. this.locationPostion238.Location = new System.Drawing.Point(304, 390);
  1908. this.locationPostion238.Margin = new System.Windows.Forms.Padding(0);
  1909. this.locationPostion238.Name = "locationPostion238";
  1910. this.locationPostion238.Size = new System.Drawing.Size(38, 39);
  1911. this.locationPostion238.TabIndex = 183;
  1912. //
  1913. // locationPostion239
  1914. //
  1915. this.locationPostion239.BackColor = System.Drawing.Color.Transparent;
  1916. this.locationPostion239.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion239.BackgroundImage")));
  1917. this.locationPostion239.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1918. this.locationPostion239.Dock = System.Windows.Forms.DockStyle.Fill;
  1919. this.locationPostion239.Location = new System.Drawing.Point(342, 390);
  1920. this.locationPostion239.Margin = new System.Windows.Forms.Padding(0);
  1921. this.locationPostion239.Name = "locationPostion239";
  1922. this.locationPostion239.Size = new System.Drawing.Size(38, 39);
  1923. this.locationPostion239.TabIndex = 184;
  1924. //
  1925. // locationPostion240
  1926. //
  1927. this.locationPostion240.BackColor = System.Drawing.Color.Transparent;
  1928. this.locationPostion240.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion240.BackgroundImage")));
  1929. this.locationPostion240.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1930. this.locationPostion240.Dock = System.Windows.Forms.DockStyle.Fill;
  1931. this.locationPostion240.Location = new System.Drawing.Point(380, 390);
  1932. this.locationPostion240.Margin = new System.Windows.Forms.Padding(0);
  1933. this.locationPostion240.Name = "locationPostion240";
  1934. this.locationPostion240.Size = new System.Drawing.Size(38, 39);
  1935. this.locationPostion240.TabIndex = 185;
  1936. //
  1937. // locationPostion241
  1938. //
  1939. this.locationPostion241.BackColor = System.Drawing.Color.Transparent;
  1940. this.locationPostion241.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion241.BackgroundImage")));
  1941. this.locationPostion241.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1942. this.locationPostion241.Dock = System.Windows.Forms.DockStyle.Fill;
  1943. this.locationPostion241.Location = new System.Drawing.Point(418, 390);
  1944. this.locationPostion241.Margin = new System.Windows.Forms.Padding(0);
  1945. this.locationPostion241.Name = "locationPostion241";
  1946. this.locationPostion241.Size = new System.Drawing.Size(38, 39);
  1947. this.locationPostion241.TabIndex = 186;
  1948. //
  1949. // locationPostion242
  1950. //
  1951. this.locationPostion242.BackColor = System.Drawing.Color.Transparent;
  1952. this.locationPostion242.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion242.BackgroundImage")));
  1953. this.locationPostion242.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1954. this.locationPostion242.Dock = System.Windows.Forms.DockStyle.Fill;
  1955. this.locationPostion242.Location = new System.Drawing.Point(456, 390);
  1956. this.locationPostion242.Margin = new System.Windows.Forms.Padding(0);
  1957. this.locationPostion242.Name = "locationPostion242";
  1958. this.locationPostion242.Size = new System.Drawing.Size(38, 39);
  1959. this.locationPostion242.TabIndex = 187;
  1960. //
  1961. // locationPostion243
  1962. //
  1963. this.locationPostion243.BackColor = System.Drawing.Color.Transparent;
  1964. this.locationPostion243.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion243.BackgroundImage")));
  1965. this.locationPostion243.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1966. this.locationPostion243.Dock = System.Windows.Forms.DockStyle.Fill;
  1967. this.locationPostion243.Location = new System.Drawing.Point(494, 390);
  1968. this.locationPostion243.Margin = new System.Windows.Forms.Padding(0);
  1969. this.locationPostion243.Name = "locationPostion243";
  1970. this.locationPostion243.Size = new System.Drawing.Size(38, 39);
  1971. this.locationPostion243.TabIndex = 188;
  1972. //
  1973. // locationPostion244
  1974. //
  1975. this.locationPostion244.BackColor = System.Drawing.Color.Transparent;
  1976. this.locationPostion244.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion244.BackgroundImage")));
  1977. this.locationPostion244.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1978. this.locationPostion244.Dock = System.Windows.Forms.DockStyle.Fill;
  1979. this.locationPostion244.Location = new System.Drawing.Point(532, 390);
  1980. this.locationPostion244.Margin = new System.Windows.Forms.Padding(0);
  1981. this.locationPostion244.Name = "locationPostion244";
  1982. this.locationPostion244.Size = new System.Drawing.Size(38, 39);
  1983. this.locationPostion244.TabIndex = 189;
  1984. //
  1985. // locationPostion245
  1986. //
  1987. this.locationPostion245.BackColor = System.Drawing.Color.Transparent;
  1988. this.locationPostion245.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion245.BackgroundImage")));
  1989. this.locationPostion245.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1990. this.locationPostion245.Dock = System.Windows.Forms.DockStyle.Fill;
  1991. this.locationPostion245.Location = new System.Drawing.Point(570, 390);
  1992. this.locationPostion245.Margin = new System.Windows.Forms.Padding(0);
  1993. this.locationPostion245.Name = "locationPostion245";
  1994. this.locationPostion245.Size = new System.Drawing.Size(38, 39);
  1995. this.locationPostion245.TabIndex = 190;
  1996. //
  1997. // locationPostion246
  1998. //
  1999. this.locationPostion246.BackColor = System.Drawing.Color.Transparent;
  2000. this.locationPostion246.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion246.BackgroundImage")));
  2001. this.locationPostion246.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2002. this.locationPostion246.Dock = System.Windows.Forms.DockStyle.Fill;
  2003. this.locationPostion246.Location = new System.Drawing.Point(608, 390);
  2004. this.locationPostion246.Margin = new System.Windows.Forms.Padding(0);
  2005. this.locationPostion246.Name = "locationPostion246";
  2006. this.locationPostion246.Size = new System.Drawing.Size(38, 39);
  2007. this.locationPostion246.TabIndex = 191;
  2008. //
  2009. // locationPostion247
  2010. //
  2011. this.locationPostion247.BackColor = System.Drawing.Color.Transparent;
  2012. this.locationPostion247.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion247.BackgroundImage")));
  2013. this.locationPostion247.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2014. this.locationPostion247.Dock = System.Windows.Forms.DockStyle.Fill;
  2015. this.locationPostion247.Location = new System.Drawing.Point(646, 390);
  2016. this.locationPostion247.Margin = new System.Windows.Forms.Padding(0);
  2017. this.locationPostion247.Name = "locationPostion247";
  2018. this.locationPostion247.Size = new System.Drawing.Size(38, 39);
  2019. this.locationPostion247.TabIndex = 192;
  2020. //
  2021. // locationPostion248
  2022. //
  2023. this.locationPostion248.BackColor = System.Drawing.Color.Transparent;
  2024. this.locationPostion248.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion248.BackgroundImage")));
  2025. this.locationPostion248.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2026. this.locationPostion248.Dock = System.Windows.Forms.DockStyle.Fill;
  2027. this.locationPostion248.Location = new System.Drawing.Point(684, 390);
  2028. this.locationPostion248.Margin = new System.Windows.Forms.Padding(0);
  2029. this.locationPostion248.Name = "locationPostion248";
  2030. this.locationPostion248.Size = new System.Drawing.Size(38, 39);
  2031. this.locationPostion248.TabIndex = 193;
  2032. //
  2033. // locationPostion249
  2034. //
  2035. this.locationPostion249.BackColor = System.Drawing.Color.Transparent;
  2036. this.locationPostion249.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion249.BackgroundImage")));
  2037. this.locationPostion249.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2038. this.locationPostion249.Dock = System.Windows.Forms.DockStyle.Fill;
  2039. this.locationPostion249.Location = new System.Drawing.Point(722, 390);
  2040. this.locationPostion249.Margin = new System.Windows.Forms.Padding(0);
  2041. this.locationPostion249.Name = "locationPostion249";
  2042. this.locationPostion249.Size = new System.Drawing.Size(38, 39);
  2043. this.locationPostion249.TabIndex = 194;
  2044. //
  2045. // locationPostion250
  2046. //
  2047. this.locationPostion250.BackColor = System.Drawing.Color.Transparent;
  2048. this.locationPostion250.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion250.BackgroundImage")));
  2049. this.locationPostion250.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2050. this.locationPostion250.Dock = System.Windows.Forms.DockStyle.Fill;
  2051. this.locationPostion250.Location = new System.Drawing.Point(760, 390);
  2052. this.locationPostion250.Margin = new System.Windows.Forms.Padding(0);
  2053. this.locationPostion250.Name = "locationPostion250";
  2054. this.locationPostion250.Size = new System.Drawing.Size(38, 39);
  2055. this.locationPostion250.TabIndex = 195;
  2056. //
  2057. // locationPostion251
  2058. //
  2059. this.locationPostion251.BackColor = System.Drawing.Color.Transparent;
  2060. this.locationPostion251.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion251.BackgroundImage")));
  2061. this.locationPostion251.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2062. this.locationPostion251.Dock = System.Windows.Forms.DockStyle.Fill;
  2063. this.locationPostion251.Location = new System.Drawing.Point(798, 390);
  2064. this.locationPostion251.Margin = new System.Windows.Forms.Padding(0);
  2065. this.locationPostion251.Name = "locationPostion251";
  2066. this.locationPostion251.Size = new System.Drawing.Size(38, 39);
  2067. this.locationPostion251.TabIndex = 196;
  2068. //
  2069. // locationPostion252
  2070. //
  2071. this.locationPostion252.BackColor = System.Drawing.Color.Transparent;
  2072. this.locationPostion252.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion252.BackgroundImage")));
  2073. this.locationPostion252.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2074. this.locationPostion252.Dock = System.Windows.Forms.DockStyle.Fill;
  2075. this.locationPostion252.Location = new System.Drawing.Point(190, 468);
  2076. this.locationPostion252.Margin = new System.Windows.Forms.Padding(0);
  2077. this.locationPostion252.Name = "locationPostion252";
  2078. this.locationPostion252.Size = new System.Drawing.Size(39, 39);
  2079. this.locationPostion252.TabIndex = 197;
  2080. //
  2081. // locationPostion253
  2082. //
  2083. this.locationPostion253.BackColor = System.Drawing.Color.Transparent;
  2084. this.locationPostion253.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion253.BackgroundImage")));
  2085. this.locationPostion253.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2086. this.locationPostion253.Dock = System.Windows.Forms.DockStyle.Fill;
  2087. this.locationPostion253.Location = new System.Drawing.Point(229, 468);
  2088. this.locationPostion253.Margin = new System.Windows.Forms.Padding(0);
  2089. this.locationPostion253.Name = "locationPostion253";
  2090. this.locationPostion253.Size = new System.Drawing.Size(37, 39);
  2091. this.locationPostion253.TabIndex = 198;
  2092. //
  2093. // locationPostion254
  2094. //
  2095. this.locationPostion254.BackColor = System.Drawing.Color.Transparent;
  2096. this.locationPostion254.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion254.BackgroundImage")));
  2097. this.locationPostion254.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2098. this.locationPostion254.Dock = System.Windows.Forms.DockStyle.Fill;
  2099. this.locationPostion254.Location = new System.Drawing.Point(266, 468);
  2100. this.locationPostion254.Margin = new System.Windows.Forms.Padding(0);
  2101. this.locationPostion254.Name = "locationPostion254";
  2102. this.locationPostion254.Size = new System.Drawing.Size(38, 39);
  2103. this.locationPostion254.TabIndex = 199;
  2104. //
  2105. // locationPostion255
  2106. //
  2107. this.locationPostion255.BackColor = System.Drawing.Color.Transparent;
  2108. this.locationPostion255.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion255.BackgroundImage")));
  2109. this.locationPostion255.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2110. this.locationPostion255.Dock = System.Windows.Forms.DockStyle.Fill;
  2111. this.locationPostion255.Location = new System.Drawing.Point(304, 468);
  2112. this.locationPostion255.Margin = new System.Windows.Forms.Padding(0);
  2113. this.locationPostion255.Name = "locationPostion255";
  2114. this.locationPostion255.Size = new System.Drawing.Size(38, 39);
  2115. this.locationPostion255.TabIndex = 200;
  2116. //
  2117. // locationPostion256
  2118. //
  2119. this.locationPostion256.BackColor = System.Drawing.Color.Transparent;
  2120. this.locationPostion256.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion256.BackgroundImage")));
  2121. this.locationPostion256.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2122. this.locationPostion256.Dock = System.Windows.Forms.DockStyle.Fill;
  2123. this.locationPostion256.Location = new System.Drawing.Point(342, 468);
  2124. this.locationPostion256.Margin = new System.Windows.Forms.Padding(0);
  2125. this.locationPostion256.Name = "locationPostion256";
  2126. this.locationPostion256.Size = new System.Drawing.Size(38, 39);
  2127. this.locationPostion256.TabIndex = 201;
  2128. //
  2129. // locationPostion257
  2130. //
  2131. this.locationPostion257.BackColor = System.Drawing.Color.Transparent;
  2132. this.locationPostion257.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion257.BackgroundImage")));
  2133. this.locationPostion257.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2134. this.locationPostion257.Dock = System.Windows.Forms.DockStyle.Fill;
  2135. this.locationPostion257.Location = new System.Drawing.Point(380, 468);
  2136. this.locationPostion257.Margin = new System.Windows.Forms.Padding(0);
  2137. this.locationPostion257.Name = "locationPostion257";
  2138. this.locationPostion257.Size = new System.Drawing.Size(38, 39);
  2139. this.locationPostion257.TabIndex = 202;
  2140. //
  2141. // locationPostion258
  2142. //
  2143. this.locationPostion258.BackColor = System.Drawing.Color.Transparent;
  2144. this.locationPostion258.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion258.BackgroundImage")));
  2145. this.locationPostion258.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2146. this.locationPostion258.Dock = System.Windows.Forms.DockStyle.Fill;
  2147. this.locationPostion258.Location = new System.Drawing.Point(418, 468);
  2148. this.locationPostion258.Margin = new System.Windows.Forms.Padding(0);
  2149. this.locationPostion258.Name = "locationPostion258";
  2150. this.locationPostion258.Size = new System.Drawing.Size(38, 39);
  2151. this.locationPostion258.TabIndex = 203;
  2152. //
  2153. // locationPostion259
  2154. //
  2155. this.locationPostion259.BackColor = System.Drawing.Color.Transparent;
  2156. this.locationPostion259.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion259.BackgroundImage")));
  2157. this.locationPostion259.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2158. this.locationPostion259.Dock = System.Windows.Forms.DockStyle.Fill;
  2159. this.locationPostion259.Location = new System.Drawing.Point(456, 468);
  2160. this.locationPostion259.Margin = new System.Windows.Forms.Padding(0);
  2161. this.locationPostion259.Name = "locationPostion259";
  2162. this.locationPostion259.Size = new System.Drawing.Size(38, 39);
  2163. this.locationPostion259.TabIndex = 204;
  2164. //
  2165. // locationPostion260
  2166. //
  2167. this.locationPostion260.BackColor = System.Drawing.Color.Transparent;
  2168. this.locationPostion260.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion260.BackgroundImage")));
  2169. this.locationPostion260.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2170. this.locationPostion260.Dock = System.Windows.Forms.DockStyle.Fill;
  2171. this.locationPostion260.Location = new System.Drawing.Point(494, 468);
  2172. this.locationPostion260.Margin = new System.Windows.Forms.Padding(0);
  2173. this.locationPostion260.Name = "locationPostion260";
  2174. this.locationPostion260.Size = new System.Drawing.Size(38, 39);
  2175. this.locationPostion260.TabIndex = 205;
  2176. //
  2177. // locationPostion261
  2178. //
  2179. this.locationPostion261.BackColor = System.Drawing.Color.Transparent;
  2180. this.locationPostion261.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion261.BackgroundImage")));
  2181. this.locationPostion261.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2182. this.locationPostion261.Dock = System.Windows.Forms.DockStyle.Fill;
  2183. this.locationPostion261.Location = new System.Drawing.Point(532, 468);
  2184. this.locationPostion261.Margin = new System.Windows.Forms.Padding(0);
  2185. this.locationPostion261.Name = "locationPostion261";
  2186. this.locationPostion261.Size = new System.Drawing.Size(38, 39);
  2187. this.locationPostion261.TabIndex = 206;
  2188. //
  2189. // locationPostion262
  2190. //
  2191. this.locationPostion262.BackColor = System.Drawing.Color.Transparent;
  2192. this.locationPostion262.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion262.BackgroundImage")));
  2193. this.locationPostion262.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2194. this.locationPostion262.Dock = System.Windows.Forms.DockStyle.Fill;
  2195. this.locationPostion262.Location = new System.Drawing.Point(570, 468);
  2196. this.locationPostion262.Margin = new System.Windows.Forms.Padding(0);
  2197. this.locationPostion262.Name = "locationPostion262";
  2198. this.locationPostion262.Size = new System.Drawing.Size(38, 39);
  2199. this.locationPostion262.TabIndex = 207;
  2200. //
  2201. // locationPostion263
  2202. //
  2203. this.locationPostion263.BackColor = System.Drawing.Color.Transparent;
  2204. this.locationPostion263.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion263.BackgroundImage")));
  2205. this.locationPostion263.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2206. this.locationPostion263.Dock = System.Windows.Forms.DockStyle.Fill;
  2207. this.locationPostion263.Location = new System.Drawing.Point(608, 468);
  2208. this.locationPostion263.Margin = new System.Windows.Forms.Padding(0);
  2209. this.locationPostion263.Name = "locationPostion263";
  2210. this.locationPostion263.Size = new System.Drawing.Size(38, 39);
  2211. this.locationPostion263.TabIndex = 208;
  2212. //
  2213. // locationPostion264
  2214. //
  2215. this.locationPostion264.BackColor = System.Drawing.Color.Transparent;
  2216. this.locationPostion264.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion264.BackgroundImage")));
  2217. this.locationPostion264.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2218. this.locationPostion264.Dock = System.Windows.Forms.DockStyle.Fill;
  2219. this.locationPostion264.Location = new System.Drawing.Point(646, 468);
  2220. this.locationPostion264.Margin = new System.Windows.Forms.Padding(0);
  2221. this.locationPostion264.Name = "locationPostion264";
  2222. this.locationPostion264.Size = new System.Drawing.Size(38, 39);
  2223. this.locationPostion264.TabIndex = 209;
  2224. //
  2225. // locationPostion265
  2226. //
  2227. this.locationPostion265.BackColor = System.Drawing.Color.Transparent;
  2228. this.locationPostion265.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion265.BackgroundImage")));
  2229. this.locationPostion265.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2230. this.locationPostion265.Dock = System.Windows.Forms.DockStyle.Fill;
  2231. this.locationPostion265.Location = new System.Drawing.Point(684, 468);
  2232. this.locationPostion265.Margin = new System.Windows.Forms.Padding(0);
  2233. this.locationPostion265.Name = "locationPostion265";
  2234. this.locationPostion265.Size = new System.Drawing.Size(38, 39);
  2235. this.locationPostion265.TabIndex = 210;
  2236. //
  2237. // locationPostion266
  2238. //
  2239. this.locationPostion266.BackColor = System.Drawing.Color.Transparent;
  2240. this.locationPostion266.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion266.BackgroundImage")));
  2241. this.locationPostion266.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2242. this.locationPostion266.Dock = System.Windows.Forms.DockStyle.Fill;
  2243. this.locationPostion266.Location = new System.Drawing.Point(722, 468);
  2244. this.locationPostion266.Margin = new System.Windows.Forms.Padding(0);
  2245. this.locationPostion266.Name = "locationPostion266";
  2246. this.locationPostion266.Size = new System.Drawing.Size(38, 39);
  2247. this.locationPostion266.TabIndex = 211;
  2248. //
  2249. // locationPostion267
  2250. //
  2251. this.locationPostion267.BackColor = System.Drawing.Color.Transparent;
  2252. this.locationPostion267.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion267.BackgroundImage")));
  2253. this.locationPostion267.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2254. this.locationPostion267.Dock = System.Windows.Forms.DockStyle.Fill;
  2255. this.locationPostion267.Location = new System.Drawing.Point(760, 468);
  2256. this.locationPostion267.Margin = new System.Windows.Forms.Padding(0);
  2257. this.locationPostion267.Name = "locationPostion267";
  2258. this.locationPostion267.Size = new System.Drawing.Size(38, 39);
  2259. this.locationPostion267.TabIndex = 212;
  2260. //
  2261. // locationPostion268
  2262. //
  2263. this.locationPostion268.BackColor = System.Drawing.Color.Transparent;
  2264. this.locationPostion268.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion268.BackgroundImage")));
  2265. this.locationPostion268.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2266. this.locationPostion268.Dock = System.Windows.Forms.DockStyle.Fill;
  2267. this.locationPostion268.Location = new System.Drawing.Point(798, 468);
  2268. this.locationPostion268.Margin = new System.Windows.Forms.Padding(0);
  2269. this.locationPostion268.Name = "locationPostion268";
  2270. this.locationPostion268.Size = new System.Drawing.Size(38, 39);
  2271. this.locationPostion268.TabIndex = 213;
  2272. //
  2273. // locationPostion269
  2274. //
  2275. this.locationPostion269.BackColor = System.Drawing.Color.Transparent;
  2276. this.locationPostion269.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion269.BackgroundImage")));
  2277. this.locationPostion269.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2278. this.locationPostion269.Dock = System.Windows.Forms.DockStyle.Fill;
  2279. this.locationPostion269.Location = new System.Drawing.Point(190, 546);
  2280. this.locationPostion269.Margin = new System.Windows.Forms.Padding(0);
  2281. this.locationPostion269.Name = "locationPostion269";
  2282. this.locationPostion269.Size = new System.Drawing.Size(39, 39);
  2283. this.locationPostion269.TabIndex = 214;
  2284. //
  2285. // locationPostion270
  2286. //
  2287. this.locationPostion270.BackColor = System.Drawing.Color.Transparent;
  2288. this.locationPostion270.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion270.BackgroundImage")));
  2289. this.locationPostion270.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2290. this.locationPostion270.Dock = System.Windows.Forms.DockStyle.Fill;
  2291. this.locationPostion270.Location = new System.Drawing.Point(229, 546);
  2292. this.locationPostion270.Margin = new System.Windows.Forms.Padding(0);
  2293. this.locationPostion270.Name = "locationPostion270";
  2294. this.locationPostion270.Size = new System.Drawing.Size(37, 39);
  2295. this.locationPostion270.TabIndex = 215;
  2296. //
  2297. // locationPostion271
  2298. //
  2299. this.locationPostion271.BackColor = System.Drawing.Color.Transparent;
  2300. this.locationPostion271.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion271.BackgroundImage")));
  2301. this.locationPostion271.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2302. this.locationPostion271.Dock = System.Windows.Forms.DockStyle.Fill;
  2303. this.locationPostion271.Location = new System.Drawing.Point(266, 546);
  2304. this.locationPostion271.Margin = new System.Windows.Forms.Padding(0);
  2305. this.locationPostion271.Name = "locationPostion271";
  2306. this.locationPostion271.Size = new System.Drawing.Size(38, 39);
  2307. this.locationPostion271.TabIndex = 216;
  2308. //
  2309. // locationPostion272
  2310. //
  2311. this.locationPostion272.BackColor = System.Drawing.Color.Transparent;
  2312. this.locationPostion272.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion272.BackgroundImage")));
  2313. this.locationPostion272.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2314. this.locationPostion272.Dock = System.Windows.Forms.DockStyle.Fill;
  2315. this.locationPostion272.Location = new System.Drawing.Point(304, 546);
  2316. this.locationPostion272.Margin = new System.Windows.Forms.Padding(0);
  2317. this.locationPostion272.Name = "locationPostion272";
  2318. this.locationPostion272.Size = new System.Drawing.Size(38, 39);
  2319. this.locationPostion272.TabIndex = 217;
  2320. //
  2321. // locationPostion273
  2322. //
  2323. this.locationPostion273.BackColor = System.Drawing.Color.Transparent;
  2324. this.locationPostion273.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion273.BackgroundImage")));
  2325. this.locationPostion273.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2326. this.locationPostion273.Dock = System.Windows.Forms.DockStyle.Fill;
  2327. this.locationPostion273.Location = new System.Drawing.Point(342, 546);
  2328. this.locationPostion273.Margin = new System.Windows.Forms.Padding(0);
  2329. this.locationPostion273.Name = "locationPostion273";
  2330. this.locationPostion273.Size = new System.Drawing.Size(38, 39);
  2331. this.locationPostion273.TabIndex = 218;
  2332. //
  2333. // locationPostion274
  2334. //
  2335. this.locationPostion274.BackColor = System.Drawing.Color.Transparent;
  2336. this.locationPostion274.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion274.BackgroundImage")));
  2337. this.locationPostion274.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2338. this.locationPostion274.Dock = System.Windows.Forms.DockStyle.Fill;
  2339. this.locationPostion274.Location = new System.Drawing.Point(380, 546);
  2340. this.locationPostion274.Margin = new System.Windows.Forms.Padding(0);
  2341. this.locationPostion274.Name = "locationPostion274";
  2342. this.locationPostion274.Size = new System.Drawing.Size(38, 39);
  2343. this.locationPostion274.TabIndex = 219;
  2344. //
  2345. // locationPostion275
  2346. //
  2347. this.locationPostion275.BackColor = System.Drawing.Color.Transparent;
  2348. this.locationPostion275.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion275.BackgroundImage")));
  2349. this.locationPostion275.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2350. this.locationPostion275.Dock = System.Windows.Forms.DockStyle.Fill;
  2351. this.locationPostion275.Location = new System.Drawing.Point(418, 546);
  2352. this.locationPostion275.Margin = new System.Windows.Forms.Padding(0);
  2353. this.locationPostion275.Name = "locationPostion275";
  2354. this.locationPostion275.Size = new System.Drawing.Size(38, 39);
  2355. this.locationPostion275.TabIndex = 220;
  2356. //
  2357. // locationPostion276
  2358. //
  2359. this.locationPostion276.BackColor = System.Drawing.Color.Transparent;
  2360. this.locationPostion276.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion276.BackgroundImage")));
  2361. this.locationPostion276.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2362. this.locationPostion276.Dock = System.Windows.Forms.DockStyle.Fill;
  2363. this.locationPostion276.Location = new System.Drawing.Point(456, 546);
  2364. this.locationPostion276.Margin = new System.Windows.Forms.Padding(0);
  2365. this.locationPostion276.Name = "locationPostion276";
  2366. this.locationPostion276.Size = new System.Drawing.Size(38, 39);
  2367. this.locationPostion276.TabIndex = 221;
  2368. //
  2369. // locationPostion277
  2370. //
  2371. this.locationPostion277.BackColor = System.Drawing.Color.Transparent;
  2372. this.locationPostion277.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion277.BackgroundImage")));
  2373. this.locationPostion277.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2374. this.locationPostion277.Dock = System.Windows.Forms.DockStyle.Fill;
  2375. this.locationPostion277.Location = new System.Drawing.Point(494, 546);
  2376. this.locationPostion277.Margin = new System.Windows.Forms.Padding(0);
  2377. this.locationPostion277.Name = "locationPostion277";
  2378. this.locationPostion277.Size = new System.Drawing.Size(38, 39);
  2379. this.locationPostion277.TabIndex = 222;
  2380. //
  2381. // locationPostion278
  2382. //
  2383. this.locationPostion278.BackColor = System.Drawing.Color.Transparent;
  2384. this.locationPostion278.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion278.BackgroundImage")));
  2385. this.locationPostion278.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2386. this.locationPostion278.Dock = System.Windows.Forms.DockStyle.Fill;
  2387. this.locationPostion278.Location = new System.Drawing.Point(532, 546);
  2388. this.locationPostion278.Margin = new System.Windows.Forms.Padding(0);
  2389. this.locationPostion278.Name = "locationPostion278";
  2390. this.locationPostion278.Size = new System.Drawing.Size(38, 39);
  2391. this.locationPostion278.TabIndex = 223;
  2392. //
  2393. // locationPostion279
  2394. //
  2395. this.locationPostion279.BackColor = System.Drawing.Color.Transparent;
  2396. this.locationPostion279.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion279.BackgroundImage")));
  2397. this.locationPostion279.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2398. this.locationPostion279.Dock = System.Windows.Forms.DockStyle.Fill;
  2399. this.locationPostion279.Location = new System.Drawing.Point(570, 546);
  2400. this.locationPostion279.Margin = new System.Windows.Forms.Padding(0);
  2401. this.locationPostion279.Name = "locationPostion279";
  2402. this.locationPostion279.Size = new System.Drawing.Size(38, 39);
  2403. this.locationPostion279.TabIndex = 224;
  2404. //
  2405. // locationPostion280
  2406. //
  2407. this.locationPostion280.BackColor = System.Drawing.Color.Transparent;
  2408. this.locationPostion280.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion280.BackgroundImage")));
  2409. this.locationPostion280.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2410. this.locationPostion280.Dock = System.Windows.Forms.DockStyle.Fill;
  2411. this.locationPostion280.Location = new System.Drawing.Point(608, 546);
  2412. this.locationPostion280.Margin = new System.Windows.Forms.Padding(0);
  2413. this.locationPostion280.Name = "locationPostion280";
  2414. this.locationPostion280.Size = new System.Drawing.Size(38, 39);
  2415. this.locationPostion280.TabIndex = 225;
  2416. //
  2417. // locationPostion281
  2418. //
  2419. this.locationPostion281.BackColor = System.Drawing.Color.Transparent;
  2420. this.locationPostion281.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion281.BackgroundImage")));
  2421. this.locationPostion281.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2422. this.locationPostion281.Dock = System.Windows.Forms.DockStyle.Fill;
  2423. this.locationPostion281.Location = new System.Drawing.Point(646, 546);
  2424. this.locationPostion281.Margin = new System.Windows.Forms.Padding(0);
  2425. this.locationPostion281.Name = "locationPostion281";
  2426. this.locationPostion281.Size = new System.Drawing.Size(38, 39);
  2427. this.locationPostion281.TabIndex = 226;
  2428. //
  2429. // locationPostion282
  2430. //
  2431. this.locationPostion282.BackColor = System.Drawing.Color.Transparent;
  2432. this.locationPostion282.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion282.BackgroundImage")));
  2433. this.locationPostion282.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2434. this.locationPostion282.Dock = System.Windows.Forms.DockStyle.Fill;
  2435. this.locationPostion282.Location = new System.Drawing.Point(684, 546);
  2436. this.locationPostion282.Margin = new System.Windows.Forms.Padding(0);
  2437. this.locationPostion282.Name = "locationPostion282";
  2438. this.locationPostion282.Size = new System.Drawing.Size(38, 39);
  2439. this.locationPostion282.TabIndex = 227;
  2440. //
  2441. // locationPostion283
  2442. //
  2443. this.locationPostion283.BackColor = System.Drawing.Color.Transparent;
  2444. this.locationPostion283.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion283.BackgroundImage")));
  2445. this.locationPostion283.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2446. this.locationPostion283.Dock = System.Windows.Forms.DockStyle.Fill;
  2447. this.locationPostion283.Location = new System.Drawing.Point(722, 546);
  2448. this.locationPostion283.Margin = new System.Windows.Forms.Padding(0);
  2449. this.locationPostion283.Name = "locationPostion283";
  2450. this.locationPostion283.Size = new System.Drawing.Size(38, 39);
  2451. this.locationPostion283.TabIndex = 228;
  2452. //
  2453. // locationPostion284
  2454. //
  2455. this.locationPostion284.BackColor = System.Drawing.Color.Transparent;
  2456. this.locationPostion284.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion284.BackgroundImage")));
  2457. this.locationPostion284.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2458. this.locationPostion284.Dock = System.Windows.Forms.DockStyle.Fill;
  2459. this.locationPostion284.Location = new System.Drawing.Point(760, 546);
  2460. this.locationPostion284.Margin = new System.Windows.Forms.Padding(0);
  2461. this.locationPostion284.Name = "locationPostion284";
  2462. this.locationPostion284.Size = new System.Drawing.Size(38, 39);
  2463. this.locationPostion284.TabIndex = 229;
  2464. //
  2465. // locationPostion285
  2466. //
  2467. this.locationPostion285.BackColor = System.Drawing.Color.Transparent;
  2468. this.locationPostion285.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion285.BackgroundImage")));
  2469. this.locationPostion285.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2470. this.locationPostion285.Dock = System.Windows.Forms.DockStyle.Fill;
  2471. this.locationPostion285.Location = new System.Drawing.Point(798, 546);
  2472. this.locationPostion285.Margin = new System.Windows.Forms.Padding(0);
  2473. this.locationPostion285.Name = "locationPostion285";
  2474. this.locationPostion285.Size = new System.Drawing.Size(38, 39);
  2475. this.locationPostion285.TabIndex = 230;
  2476. //
  2477. // locationPostion286
  2478. //
  2479. this.locationPostion286.BackColor = System.Drawing.Color.Transparent;
  2480. this.locationPostion286.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion286.BackgroundImage")));
  2481. this.locationPostion286.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2482. this.locationPostion286.Dock = System.Windows.Forms.DockStyle.Fill;
  2483. this.locationPostion286.Location = new System.Drawing.Point(190, 624);
  2484. this.locationPostion286.Margin = new System.Windows.Forms.Padding(0);
  2485. this.locationPostion286.Name = "locationPostion286";
  2486. this.locationPostion286.Size = new System.Drawing.Size(39, 39);
  2487. this.locationPostion286.TabIndex = 231;
  2488. //
  2489. // locationPostion287
  2490. //
  2491. this.locationPostion287.BackColor = System.Drawing.Color.Transparent;
  2492. this.locationPostion287.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion287.BackgroundImage")));
  2493. this.locationPostion287.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2494. this.locationPostion287.Dock = System.Windows.Forms.DockStyle.Fill;
  2495. this.locationPostion287.Location = new System.Drawing.Point(229, 624);
  2496. this.locationPostion287.Margin = new System.Windows.Forms.Padding(0);
  2497. this.locationPostion287.Name = "locationPostion287";
  2498. this.locationPostion287.Size = new System.Drawing.Size(37, 39);
  2499. this.locationPostion287.TabIndex = 232;
  2500. //
  2501. // locationPostion288
  2502. //
  2503. this.locationPostion288.BackColor = System.Drawing.Color.Transparent;
  2504. this.locationPostion288.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion288.BackgroundImage")));
  2505. this.locationPostion288.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2506. this.locationPostion288.Dock = System.Windows.Forms.DockStyle.Fill;
  2507. this.locationPostion288.Location = new System.Drawing.Point(266, 624);
  2508. this.locationPostion288.Margin = new System.Windows.Forms.Padding(0);
  2509. this.locationPostion288.Name = "locationPostion288";
  2510. this.locationPostion288.Size = new System.Drawing.Size(38, 39);
  2511. this.locationPostion288.TabIndex = 233;
  2512. //
  2513. // locationPostion289
  2514. //
  2515. this.locationPostion289.BackColor = System.Drawing.Color.Transparent;
  2516. this.locationPostion289.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion289.BackgroundImage")));
  2517. this.locationPostion289.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2518. this.locationPostion289.Dock = System.Windows.Forms.DockStyle.Fill;
  2519. this.locationPostion289.Location = new System.Drawing.Point(304, 624);
  2520. this.locationPostion289.Margin = new System.Windows.Forms.Padding(0);
  2521. this.locationPostion289.Name = "locationPostion289";
  2522. this.locationPostion289.Size = new System.Drawing.Size(38, 39);
  2523. this.locationPostion289.TabIndex = 234;
  2524. //
  2525. // locationPostion290
  2526. //
  2527. this.locationPostion290.BackColor = System.Drawing.Color.Transparent;
  2528. this.locationPostion290.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion290.BackgroundImage")));
  2529. this.locationPostion290.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2530. this.locationPostion290.Dock = System.Windows.Forms.DockStyle.Fill;
  2531. this.locationPostion290.Location = new System.Drawing.Point(342, 624);
  2532. this.locationPostion290.Margin = new System.Windows.Forms.Padding(0);
  2533. this.locationPostion290.Name = "locationPostion290";
  2534. this.locationPostion290.Size = new System.Drawing.Size(38, 39);
  2535. this.locationPostion290.TabIndex = 235;
  2536. //
  2537. // locationPostion291
  2538. //
  2539. this.locationPostion291.BackColor = System.Drawing.Color.Transparent;
  2540. this.locationPostion291.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion291.BackgroundImage")));
  2541. this.locationPostion291.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2542. this.locationPostion291.Dock = System.Windows.Forms.DockStyle.Fill;
  2543. this.locationPostion291.Location = new System.Drawing.Point(380, 624);
  2544. this.locationPostion291.Margin = new System.Windows.Forms.Padding(0);
  2545. this.locationPostion291.Name = "locationPostion291";
  2546. this.locationPostion291.Size = new System.Drawing.Size(38, 39);
  2547. this.locationPostion291.TabIndex = 236;
  2548. //
  2549. // locationPostion292
  2550. //
  2551. this.locationPostion292.BackColor = System.Drawing.Color.Transparent;
  2552. this.locationPostion292.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion292.BackgroundImage")));
  2553. this.locationPostion292.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2554. this.locationPostion292.Dock = System.Windows.Forms.DockStyle.Fill;
  2555. this.locationPostion292.Location = new System.Drawing.Point(418, 624);
  2556. this.locationPostion292.Margin = new System.Windows.Forms.Padding(0);
  2557. this.locationPostion292.Name = "locationPostion292";
  2558. this.locationPostion292.Size = new System.Drawing.Size(38, 39);
  2559. this.locationPostion292.TabIndex = 237;
  2560. //
  2561. // locationPostion293
  2562. //
  2563. this.locationPostion293.BackColor = System.Drawing.Color.Transparent;
  2564. this.locationPostion293.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion293.BackgroundImage")));
  2565. this.locationPostion293.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2566. this.locationPostion293.Dock = System.Windows.Forms.DockStyle.Fill;
  2567. this.locationPostion293.Location = new System.Drawing.Point(456, 624);
  2568. this.locationPostion293.Margin = new System.Windows.Forms.Padding(0);
  2569. this.locationPostion293.Name = "locationPostion293";
  2570. this.locationPostion293.Size = new System.Drawing.Size(38, 39);
  2571. this.locationPostion293.TabIndex = 238;
  2572. //
  2573. // locationPostion294
  2574. //
  2575. this.locationPostion294.BackColor = System.Drawing.Color.Transparent;
  2576. this.locationPostion294.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion294.BackgroundImage")));
  2577. this.locationPostion294.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2578. this.locationPostion294.Dock = System.Windows.Forms.DockStyle.Fill;
  2579. this.locationPostion294.Location = new System.Drawing.Point(494, 624);
  2580. this.locationPostion294.Margin = new System.Windows.Forms.Padding(0);
  2581. this.locationPostion294.Name = "locationPostion294";
  2582. this.locationPostion294.Size = new System.Drawing.Size(38, 39);
  2583. this.locationPostion294.TabIndex = 239;
  2584. //
  2585. // locationPostion295
  2586. //
  2587. this.locationPostion295.BackColor = System.Drawing.Color.Transparent;
  2588. this.locationPostion295.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion295.BackgroundImage")));
  2589. this.locationPostion295.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2590. this.locationPostion295.Dock = System.Windows.Forms.DockStyle.Fill;
  2591. this.locationPostion295.Location = new System.Drawing.Point(532, 624);
  2592. this.locationPostion295.Margin = new System.Windows.Forms.Padding(0);
  2593. this.locationPostion295.Name = "locationPostion295";
  2594. this.locationPostion295.Size = new System.Drawing.Size(38, 39);
  2595. this.locationPostion295.TabIndex = 240;
  2596. //
  2597. // locationPostion296
  2598. //
  2599. this.locationPostion296.BackColor = System.Drawing.Color.Transparent;
  2600. this.locationPostion296.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion296.BackgroundImage")));
  2601. this.locationPostion296.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2602. this.locationPostion296.Dock = System.Windows.Forms.DockStyle.Fill;
  2603. this.locationPostion296.Location = new System.Drawing.Point(570, 624);
  2604. this.locationPostion296.Margin = new System.Windows.Forms.Padding(0);
  2605. this.locationPostion296.Name = "locationPostion296";
  2606. this.locationPostion296.Size = new System.Drawing.Size(38, 39);
  2607. this.locationPostion296.TabIndex = 241;
  2608. //
  2609. // locationPostion297
  2610. //
  2611. this.locationPostion297.BackColor = System.Drawing.Color.Transparent;
  2612. this.locationPostion297.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion297.BackgroundImage")));
  2613. this.locationPostion297.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2614. this.locationPostion297.Dock = System.Windows.Forms.DockStyle.Fill;
  2615. this.locationPostion297.Location = new System.Drawing.Point(608, 624);
  2616. this.locationPostion297.Margin = new System.Windows.Forms.Padding(0);
  2617. this.locationPostion297.Name = "locationPostion297";
  2618. this.locationPostion297.Size = new System.Drawing.Size(38, 39);
  2619. this.locationPostion297.TabIndex = 242;
  2620. //
  2621. // locationPostion298
  2622. //
  2623. this.locationPostion298.BackColor = System.Drawing.Color.Transparent;
  2624. this.locationPostion298.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion298.BackgroundImage")));
  2625. this.locationPostion298.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2626. this.locationPostion298.Dock = System.Windows.Forms.DockStyle.Fill;
  2627. this.locationPostion298.Location = new System.Drawing.Point(646, 624);
  2628. this.locationPostion298.Margin = new System.Windows.Forms.Padding(0);
  2629. this.locationPostion298.Name = "locationPostion298";
  2630. this.locationPostion298.Size = new System.Drawing.Size(38, 39);
  2631. this.locationPostion298.TabIndex = 243;
  2632. //
  2633. // locationPostion299
  2634. //
  2635. this.locationPostion299.BackColor = System.Drawing.Color.Transparent;
  2636. this.locationPostion299.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion299.BackgroundImage")));
  2637. this.locationPostion299.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2638. this.locationPostion299.Dock = System.Windows.Forms.DockStyle.Fill;
  2639. this.locationPostion299.Location = new System.Drawing.Point(684, 624);
  2640. this.locationPostion299.Margin = new System.Windows.Forms.Padding(0);
  2641. this.locationPostion299.Name = "locationPostion299";
  2642. this.locationPostion299.Size = new System.Drawing.Size(38, 39);
  2643. this.locationPostion299.TabIndex = 244;
  2644. //
  2645. // locationPostion2100
  2646. //
  2647. this.locationPostion2100.BackColor = System.Drawing.Color.Transparent;
  2648. this.locationPostion2100.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2100.BackgroundImage")));
  2649. this.locationPostion2100.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2650. this.locationPostion2100.Dock = System.Windows.Forms.DockStyle.Fill;
  2651. this.locationPostion2100.Location = new System.Drawing.Point(722, 624);
  2652. this.locationPostion2100.Margin = new System.Windows.Forms.Padding(0);
  2653. this.locationPostion2100.Name = "locationPostion2100";
  2654. this.locationPostion2100.Size = new System.Drawing.Size(38, 39);
  2655. this.locationPostion2100.TabIndex = 245;
  2656. //
  2657. // locationPostion2101
  2658. //
  2659. this.locationPostion2101.BackColor = System.Drawing.Color.Transparent;
  2660. this.locationPostion2101.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2101.BackgroundImage")));
  2661. this.locationPostion2101.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2662. this.locationPostion2101.Dock = System.Windows.Forms.DockStyle.Fill;
  2663. this.locationPostion2101.Location = new System.Drawing.Point(760, 624);
  2664. this.locationPostion2101.Margin = new System.Windows.Forms.Padding(0);
  2665. this.locationPostion2101.Name = "locationPostion2101";
  2666. this.locationPostion2101.Size = new System.Drawing.Size(38, 39);
  2667. this.locationPostion2101.TabIndex = 246;
  2668. //
  2669. // locationPostion2102
  2670. //
  2671. this.locationPostion2102.BackColor = System.Drawing.Color.Transparent;
  2672. this.locationPostion2102.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2102.BackgroundImage")));
  2673. this.locationPostion2102.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2674. this.locationPostion2102.Dock = System.Windows.Forms.DockStyle.Fill;
  2675. this.locationPostion2102.Location = new System.Drawing.Point(798, 624);
  2676. this.locationPostion2102.Margin = new System.Windows.Forms.Padding(0);
  2677. this.locationPostion2102.Name = "locationPostion2102";
  2678. this.locationPostion2102.Size = new System.Drawing.Size(38, 39);
  2679. this.locationPostion2102.TabIndex = 247;
  2680. //
  2681. // conveyor_1044
  2682. //
  2683. this.conveyor_1044.BackColor = System.Drawing.Color.Transparent;
  2684. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor_1044, 2);
  2685. this.conveyor_1044.Dock = System.Windows.Forms.DockStyle.Fill;
  2686. this.conveyor_1044.Location = new System.Drawing.Point(988, 273);
  2687. this.conveyor_1044.Margin = new System.Windows.Forms.Padding(0);
  2688. this.conveyor_1044.Name = "conveyor_1044";
  2689. this.conveyor_1044.Size = new System.Drawing.Size(76, 39);
  2690. this.conveyor_1044.TabIndex = 248;
  2691. //
  2692. // tabPage2
  2693. //
  2694. this.tabPage2.Controls.Add(this.tableLayoutPanel1);
  2695. this.tabPage2.Location = new System.Drawing.Point(4, 25);
  2696. this.tabPage2.Margin = new System.Windows.Forms.Padding(0);
  2697. this.tabPage2.Name = "tabPage2";
  2698. this.tabPage2.Size = new System.Drawing.Size(1348, 781);
  2699. this.tabPage2.TabIndex = 1;
  2700. this.tabPage2.Text = "托盘立体库物流(二楼)";
  2701. this.tabPage2.UseVisualStyleBackColor = true;
  2702. //
  2703. // tableLayoutPanel1
  2704. //
  2705. this.tableLayoutPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(144)))), ((int)(((byte)(154)))));
  2706. this.tableLayoutPanel1.ColumnCount = 33;
  2707. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2708. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2709. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2710. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2711. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2712. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2713. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2714. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2715. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2716. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2717. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2718. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2719. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2720. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2721. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2722. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2723. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2724. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2725. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2726. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2727. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2728. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2729. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2730. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2731. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2732. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2733. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2734. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2735. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2736. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.120166F));
  2737. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.115174F));
  2738. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 3.269838F));
  2739. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.009999505F));
  2740. this.tableLayoutPanel1.Controls.Add(this.tableCellLabel16, 2, 4);
  2741. this.tableLayoutPanel1.Controls.Add(this.conveyor_1090, 1, 5);
  2742. this.tableLayoutPanel1.Controls.Add(this.conveyor_1092, 1, 7);
  2743. this.tableLayoutPanel1.Controls.Add(this.conveyor_1093, 1, 8);
  2744. this.tableLayoutPanel1.Controls.Add(this.conveyor_1094, 1, 9);
  2745. this.tableLayoutPanel1.Controls.Add(this.conveyor_1095, 1, 10);
  2746. this.tableLayoutPanel1.Controls.Add(this.conveyor_1096, 1, 11);
  2747. this.tableLayoutPanel1.Controls.Add(this.conveyor_1097, 1, 12);
  2748. this.tableLayoutPanel1.Controls.Add(this.conveyor_1098, 1, 13);
  2749. this.tableLayoutPanel1.Controls.Add(this.conveyor_1099, 1, 14);
  2750. this.tableLayoutPanel1.Controls.Add(this.conveyor_1100, 1, 15);
  2751. this.tableLayoutPanel1.Controls.Add(this.conveyor_1101, 1, 16);
  2752. this.tableLayoutPanel1.Controls.Add(this.conveyor_1102, 1, 17);
  2753. this.tableLayoutPanel1.Controls.Add(this.rgv04, 2, 8);
  2754. this.tableLayoutPanel1.Controls.Add(this.tableCellLabel41, 2, 10);
  2755. this.tableLayoutPanel1.Controls.Add(this.conveyor_1081, 3, 8);
  2756. this.tableLayoutPanel1.Controls.Add(this.conveyor_1083, 3, 12);
  2757. this.tableLayoutPanel1.Controls.Add(this.conveyor_1085, 3, 16);
  2758. this.tableLayoutPanel1.Controls.Add(this.conveyor2_1116, 22, 12);
  2759. this.tableLayoutPanel1.Controls.Add(this.conveyor_1121, 24, 12);
  2760. this.tableLayoutPanel1.Controls.Add(this.conveyor_1123, 24, 13);
  2761. this.tableLayoutPanel1.Controls.Add(this.conveyor_1124, 24, 14);
  2762. this.tableLayoutPanel1.Controls.Add(this.conveyor_1130, 28, 14);
  2763. this.tableLayoutPanel1.Controls.Add(this.conveyor_1132, 28, 15);
  2764. this.tableLayoutPanel1.Controls.Add(this.conveyor_1133, 28, 16);
  2765. this.tableLayoutPanel1.Controls.Add(this.conveyor_1134, 28, 17);
  2766. this.tableLayoutPanel1.Controls.Add(this.conveyor_1136, 28, 18);
  2767. this.tableLayoutPanel1.Controls.Add(this.conveyor_1137, 28, 19);
  2768. this.tableLayoutPanel1.Controls.Add(this.conveyor2_1114, 28, 11);
  2769. this.tableLayoutPanel1.Controls.Add(this.locationPostion2103, 5, 6);
  2770. this.tableLayoutPanel1.Controls.Add(this.locationPostion2104, 6, 6);
  2771. this.tableLayoutPanel1.Controls.Add(this.locationPostion2105, 7, 6);
  2772. this.tableLayoutPanel1.Controls.Add(this.locationPostion2106, 8, 6);
  2773. this.tableLayoutPanel1.Controls.Add(this.locationPostion2107, 9, 6);
  2774. this.tableLayoutPanel1.Controls.Add(this.locationPostion2108, 10, 6);
  2775. this.tableLayoutPanel1.Controls.Add(this.locationPostion2109, 11, 6);
  2776. this.tableLayoutPanel1.Controls.Add(this.locationPostion2110, 12, 6);
  2777. this.tableLayoutPanel1.Controls.Add(this.locationPostion2111, 13, 6);
  2778. this.tableLayoutPanel1.Controls.Add(this.locationPostion2112, 14, 6);
  2779. this.tableLayoutPanel1.Controls.Add(this.locationPostion2113, 15, 6);
  2780. this.tableLayoutPanel1.Controls.Add(this.locationPostion2114, 16, 6);
  2781. this.tableLayoutPanel1.Controls.Add(this.locationPostion2115, 17, 6);
  2782. this.tableLayoutPanel1.Controls.Add(this.locationPostion2116, 18, 6);
  2783. this.tableLayoutPanel1.Controls.Add(this.locationPostion2117, 19, 6);
  2784. this.tableLayoutPanel1.Controls.Add(this.locationPostion2118, 20, 6);
  2785. this.tableLayoutPanel1.Controls.Add(this.srm033, 12, 7);
  2786. this.tableLayoutPanel1.Controls.Add(this.tableCellLabel216, 5, 7);
  2787. this.tableLayoutPanel1.Controls.Add(this.tableCellLabel217, 14, 7);
  2788. this.tableLayoutPanel1.Controls.Add(this.locationPostion2119, 5, 8);
  2789. this.tableLayoutPanel1.Controls.Add(this.locationPostion2120, 6, 8);
  2790. this.tableLayoutPanel1.Controls.Add(this.locationPostion2121, 7, 8);
  2791. this.tableLayoutPanel1.Controls.Add(this.locationPostion2122, 8, 8);
  2792. this.tableLayoutPanel1.Controls.Add(this.locationPostion2123, 9, 8);
  2793. this.tableLayoutPanel1.Controls.Add(this.locationPostion2124, 10, 8);
  2794. this.tableLayoutPanel1.Controls.Add(this.locationPostion2125, 11, 8);
  2795. this.tableLayoutPanel1.Controls.Add(this.locationPostion2126, 12, 8);
  2796. this.tableLayoutPanel1.Controls.Add(this.locationPostion2127, 13, 8);
  2797. this.tableLayoutPanel1.Controls.Add(this.locationPostion2128, 14, 8);
  2798. this.tableLayoutPanel1.Controls.Add(this.locationPostion2129, 15, 8);
  2799. this.tableLayoutPanel1.Controls.Add(this.locationPostion2130, 16, 8);
  2800. this.tableLayoutPanel1.Controls.Add(this.locationPostion2131, 17, 8);
  2801. this.tableLayoutPanel1.Controls.Add(this.locationPostion2132, 18, 8);
  2802. this.tableLayoutPanel1.Controls.Add(this.locationPostion2133, 19, 8);
  2803. this.tableLayoutPanel1.Controls.Add(this.locationPostion2134, 20, 8);
  2804. this.tableLayoutPanel1.Controls.Add(this.locationPostion2135, 5, 10);
  2805. this.tableLayoutPanel1.Controls.Add(this.locationPostion2136, 6, 10);
  2806. this.tableLayoutPanel1.Controls.Add(this.locationPostion2137, 7, 10);
  2807. this.tableLayoutPanel1.Controls.Add(this.locationPostion2138, 8, 10);
  2808. this.tableLayoutPanel1.Controls.Add(this.locationPostion2139, 9, 10);
  2809. this.tableLayoutPanel1.Controls.Add(this.locationPostion2140, 10, 10);
  2810. this.tableLayoutPanel1.Controls.Add(this.locationPostion2141, 11, 10);
  2811. this.tableLayoutPanel1.Controls.Add(this.locationPostion2142, 12, 10);
  2812. this.tableLayoutPanel1.Controls.Add(this.locationPostion2143, 13, 10);
  2813. this.tableLayoutPanel1.Controls.Add(this.locationPostion2144, 14, 10);
  2814. this.tableLayoutPanel1.Controls.Add(this.locationPostion2145, 15, 10);
  2815. this.tableLayoutPanel1.Controls.Add(this.locationPostion2146, 16, 10);
  2816. this.tableLayoutPanel1.Controls.Add(this.locationPostion2147, 17, 10);
  2817. this.tableLayoutPanel1.Controls.Add(this.locationPostion2148, 18, 10);
  2818. this.tableLayoutPanel1.Controls.Add(this.locationPostion2149, 19, 10);
  2819. this.tableLayoutPanel1.Controls.Add(this.locationPostion2150, 20, 10);
  2820. this.tableLayoutPanel1.Controls.Add(this.locationPostion2151, 5, 12);
  2821. this.tableLayoutPanel1.Controls.Add(this.locationPostion2152, 6, 12);
  2822. this.tableLayoutPanel1.Controls.Add(this.locationPostion2153, 7, 12);
  2823. this.tableLayoutPanel1.Controls.Add(this.locationPostion2154, 8, 12);
  2824. this.tableLayoutPanel1.Controls.Add(this.locationPostion2155, 9, 12);
  2825. this.tableLayoutPanel1.Controls.Add(this.locationPostion2156, 10, 12);
  2826. this.tableLayoutPanel1.Controls.Add(this.locationPostion2157, 11, 12);
  2827. this.tableLayoutPanel1.Controls.Add(this.locationPostion2158, 12, 12);
  2828. this.tableLayoutPanel1.Controls.Add(this.locationPostion2159, 13, 12);
  2829. this.tableLayoutPanel1.Controls.Add(this.locationPostion2160, 14, 12);
  2830. this.tableLayoutPanel1.Controls.Add(this.locationPostion2161, 15, 12);
  2831. this.tableLayoutPanel1.Controls.Add(this.locationPostion2162, 16, 12);
  2832. this.tableLayoutPanel1.Controls.Add(this.locationPostion2163, 17, 12);
  2833. this.tableLayoutPanel1.Controls.Add(this.locationPostion2164, 18, 12);
  2834. this.tableLayoutPanel1.Controls.Add(this.locationPostion2165, 19, 12);
  2835. this.tableLayoutPanel1.Controls.Add(this.locationPostion2166, 20, 12);
  2836. this.tableLayoutPanel1.Controls.Add(this.tableCellLabel218, 5, 11);
  2837. this.tableLayoutPanel1.Controls.Add(this.tableCellLabel219, 14, 11);
  2838. this.tableLayoutPanel1.Controls.Add(this.srm022, 12, 11);
  2839. this.tableLayoutPanel1.Controls.Add(this.locationPostion2167, 5, 14);
  2840. this.tableLayoutPanel1.Controls.Add(this.locationPostion2168, 6, 14);
  2841. this.tableLayoutPanel1.Controls.Add(this.locationPostion2169, 7, 14);
  2842. this.tableLayoutPanel1.Controls.Add(this.locationPostion2170, 8, 14);
  2843. this.tableLayoutPanel1.Controls.Add(this.locationPostion2171, 9, 14);
  2844. this.tableLayoutPanel1.Controls.Add(this.locationPostion2172, 10, 14);
  2845. this.tableLayoutPanel1.Controls.Add(this.locationPostion2173, 11, 14);
  2846. this.tableLayoutPanel1.Controls.Add(this.locationPostion2174, 12, 14);
  2847. this.tableLayoutPanel1.Controls.Add(this.locationPostion2175, 13, 14);
  2848. this.tableLayoutPanel1.Controls.Add(this.locationPostion2176, 14, 14);
  2849. this.tableLayoutPanel1.Controls.Add(this.locationPostion2177, 15, 14);
  2850. this.tableLayoutPanel1.Controls.Add(this.locationPostion2178, 16, 14);
  2851. this.tableLayoutPanel1.Controls.Add(this.locationPostion2179, 17, 14);
  2852. this.tableLayoutPanel1.Controls.Add(this.locationPostion2180, 18, 14);
  2853. this.tableLayoutPanel1.Controls.Add(this.locationPostion2181, 20, 14);
  2854. this.tableLayoutPanel1.Controls.Add(this.locationPostion2182, 19, 14);
  2855. this.tableLayoutPanel1.Controls.Add(this.locationPostion2183, 5, 16);
  2856. this.tableLayoutPanel1.Controls.Add(this.locationPostion2184, 6, 16);
  2857. this.tableLayoutPanel1.Controls.Add(this.locationPostion2185, 7, 16);
  2858. this.tableLayoutPanel1.Controls.Add(this.locationPostion2186, 8, 16);
  2859. this.tableLayoutPanel1.Controls.Add(this.locationPostion2187, 9, 16);
  2860. this.tableLayoutPanel1.Controls.Add(this.locationPostion2188, 10, 16);
  2861. this.tableLayoutPanel1.Controls.Add(this.locationPostion2189, 11, 16);
  2862. this.tableLayoutPanel1.Controls.Add(this.locationPostion2190, 12, 16);
  2863. this.tableLayoutPanel1.Controls.Add(this.locationPostion2191, 13, 16);
  2864. this.tableLayoutPanel1.Controls.Add(this.locationPostion2192, 14, 16);
  2865. this.tableLayoutPanel1.Controls.Add(this.locationPostion2193, 15, 16);
  2866. this.tableLayoutPanel1.Controls.Add(this.locationPostion2194, 16, 16);
  2867. this.tableLayoutPanel1.Controls.Add(this.locationPostion2195, 17, 16);
  2868. this.tableLayoutPanel1.Controls.Add(this.locationPostion2196, 18, 16);
  2869. this.tableLayoutPanel1.Controls.Add(this.locationPostion2197, 19, 16);
  2870. this.tableLayoutPanel1.Controls.Add(this.locationPostion2198, 20, 16);
  2871. this.tableLayoutPanel1.Controls.Add(this.tableCellLabel220, 5, 15);
  2872. this.tableLayoutPanel1.Controls.Add(this.tableCellLabel221, 14, 15);
  2873. this.tableLayoutPanel1.Controls.Add(this.srm011, 12, 15);
  2874. this.tableLayoutPanel1.Controls.Add(this.conveyor_1080, 3, 6);
  2875. this.tableLayoutPanel1.Controls.Add(this.conveyor_1082, 3, 10);
  2876. this.tableLayoutPanel1.Controls.Add(this.conveyor_1084, 3, 14);
  2877. this.tableLayoutPanel1.Controls.Add(this.conveyor_1103, 0, 6);
  2878. this.tableLayoutPanel1.Controls.Add(this.conveyor_1091, 1, 6);
  2879. this.tableLayoutPanel1.Controls.Add(this.conveyor_1120, 23, 12);
  2880. this.tableLayoutPanel1.Controls.Add(this.conveyor_1126, 25, 14);
  2881. this.tableLayoutPanel1.Controls.Add(this.conveyor_1127, 26, 14);
  2882. this.tableLayoutPanel1.Controls.Add(this.conveyor_1128, 27, 14);
  2883. this.tableLayoutPanel1.Controls.Add(this.conveyor_1129, 29, 14);
  2884. this.tableLayoutPanel1.Controls.Add(this.conveyor_1114, 29, 11);
  2885. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  2886. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  2887. this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
  2888. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  2889. this.tableLayoutPanel1.RowCount = 21;
  2890. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2891. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2892. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2893. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2894. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2895. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2896. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2897. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2898. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2899. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2900. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2901. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2902. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2903. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2904. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2905. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2906. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2907. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2908. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2909. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 5F));
  2910. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 1F));
  2911. this.tableLayoutPanel1.Size = new System.Drawing.Size(1348, 781);
  2912. this.tableLayoutPanel1.TabIndex = 1;
  2913. this.tableLayoutPanel1.CellPaint += new System.Windows.Forms.TableLayoutCellPaintEventHandler(this.tableLayoutPanel1_CellPaint);
  2914. //
  2915. // tableCellLabel16
  2916. //
  2917. this.tableCellLabel16.BackColor = System.Drawing.Color.Transparent;
  2918. this.tableCellLabel16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel16.BackgroundImage")));
  2919. this.tableCellLabel16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2920. this.tableCellLabel16.Dock = System.Windows.Forms.DockStyle.Fill;
  2921. this.tableCellLabel16.Location = new System.Drawing.Point(84, 157);
  2922. this.tableCellLabel16.Margin = new System.Windows.Forms.Padding(0, 1, 0, 0);
  2923. this.tableCellLabel16.Name = "tableCellLabel16";
  2924. this.tableLayoutPanel1.SetRowSpan(this.tableCellLabel16, 4);
  2925. this.tableCellLabel16.Size = new System.Drawing.Size(42, 155);
  2926. this.tableCellLabel16.TabIndex = 0;
  2927. //
  2928. // conveyor_1090
  2929. //
  2930. this.conveyor_1090.Dock = System.Windows.Forms.DockStyle.Fill;
  2931. this.conveyor_1090.Location = new System.Drawing.Point(43, 196);
  2932. this.conveyor_1090.Margin = new System.Windows.Forms.Padding(1);
  2933. this.conveyor_1090.Name = "conveyor_1090";
  2934. this.conveyor_1090.Size = new System.Drawing.Size(40, 37);
  2935. this.conveyor_1090.TabIndex = 2;
  2936. //
  2937. // conveyor_1092
  2938. //
  2939. this.conveyor_1092.Dock = System.Windows.Forms.DockStyle.Fill;
  2940. this.conveyor_1092.Location = new System.Drawing.Point(43, 274);
  2941. this.conveyor_1092.Margin = new System.Windows.Forms.Padding(1);
  2942. this.conveyor_1092.Name = "conveyor_1092";
  2943. this.conveyor_1092.Size = new System.Drawing.Size(40, 37);
  2944. this.conveyor_1092.TabIndex = 5;
  2945. //
  2946. // conveyor_1093
  2947. //
  2948. this.conveyor_1093.Dock = System.Windows.Forms.DockStyle.Fill;
  2949. this.conveyor_1093.Location = new System.Drawing.Point(43, 313);
  2950. this.conveyor_1093.Margin = new System.Windows.Forms.Padding(1);
  2951. this.conveyor_1093.Name = "conveyor_1093";
  2952. this.conveyor_1093.Size = new System.Drawing.Size(40, 37);
  2953. this.conveyor_1093.TabIndex = 6;
  2954. //
  2955. // conveyor_1094
  2956. //
  2957. this.conveyor_1094.Dock = System.Windows.Forms.DockStyle.Fill;
  2958. this.conveyor_1094.Location = new System.Drawing.Point(43, 352);
  2959. this.conveyor_1094.Margin = new System.Windows.Forms.Padding(1);
  2960. this.conveyor_1094.Name = "conveyor_1094";
  2961. this.conveyor_1094.Size = new System.Drawing.Size(40, 37);
  2962. this.conveyor_1094.TabIndex = 7;
  2963. //
  2964. // conveyor_1095
  2965. //
  2966. this.conveyor_1095.Dock = System.Windows.Forms.DockStyle.Fill;
  2967. this.conveyor_1095.Location = new System.Drawing.Point(43, 391);
  2968. this.conveyor_1095.Margin = new System.Windows.Forms.Padding(1);
  2969. this.conveyor_1095.Name = "conveyor_1095";
  2970. this.conveyor_1095.Size = new System.Drawing.Size(40, 37);
  2971. this.conveyor_1095.TabIndex = 8;
  2972. //
  2973. // conveyor_1096
  2974. //
  2975. this.conveyor_1096.Dock = System.Windows.Forms.DockStyle.Fill;
  2976. this.conveyor_1096.Location = new System.Drawing.Point(43, 430);
  2977. this.conveyor_1096.Margin = new System.Windows.Forms.Padding(1);
  2978. this.conveyor_1096.Name = "conveyor_1096";
  2979. this.conveyor_1096.Size = new System.Drawing.Size(40, 37);
  2980. this.conveyor_1096.TabIndex = 9;
  2981. //
  2982. // conveyor_1097
  2983. //
  2984. this.conveyor_1097.Dock = System.Windows.Forms.DockStyle.Fill;
  2985. this.conveyor_1097.Location = new System.Drawing.Point(43, 469);
  2986. this.conveyor_1097.Margin = new System.Windows.Forms.Padding(1);
  2987. this.conveyor_1097.Name = "conveyor_1097";
  2988. this.conveyor_1097.Size = new System.Drawing.Size(40, 37);
  2989. this.conveyor_1097.TabIndex = 10;
  2990. //
  2991. // conveyor_1098
  2992. //
  2993. this.conveyor_1098.Dock = System.Windows.Forms.DockStyle.Fill;
  2994. this.conveyor_1098.Location = new System.Drawing.Point(43, 508);
  2995. this.conveyor_1098.Margin = new System.Windows.Forms.Padding(1);
  2996. this.conveyor_1098.Name = "conveyor_1098";
  2997. this.conveyor_1098.Size = new System.Drawing.Size(40, 37);
  2998. this.conveyor_1098.TabIndex = 11;
  2999. //
  3000. // conveyor_1099
  3001. //
  3002. this.conveyor_1099.Dock = System.Windows.Forms.DockStyle.Fill;
  3003. this.conveyor_1099.Location = new System.Drawing.Point(43, 547);
  3004. this.conveyor_1099.Margin = new System.Windows.Forms.Padding(1);
  3005. this.conveyor_1099.Name = "conveyor_1099";
  3006. this.conveyor_1099.Size = new System.Drawing.Size(40, 37);
  3007. this.conveyor_1099.TabIndex = 12;
  3008. //
  3009. // conveyor_1100
  3010. //
  3011. this.conveyor_1100.Dock = System.Windows.Forms.DockStyle.Fill;
  3012. this.conveyor_1100.Location = new System.Drawing.Point(43, 586);
  3013. this.conveyor_1100.Margin = new System.Windows.Forms.Padding(1);
  3014. this.conveyor_1100.Name = "conveyor_1100";
  3015. this.conveyor_1100.Size = new System.Drawing.Size(40, 37);
  3016. this.conveyor_1100.TabIndex = 13;
  3017. //
  3018. // conveyor_1101
  3019. //
  3020. this.conveyor_1101.Dock = System.Windows.Forms.DockStyle.Fill;
  3021. this.conveyor_1101.Location = new System.Drawing.Point(43, 625);
  3022. this.conveyor_1101.Margin = new System.Windows.Forms.Padding(1);
  3023. this.conveyor_1101.Name = "conveyor_1101";
  3024. this.conveyor_1101.Size = new System.Drawing.Size(40, 37);
  3025. this.conveyor_1101.TabIndex = 14;
  3026. //
  3027. // conveyor_1102
  3028. //
  3029. this.conveyor_1102.Dock = System.Windows.Forms.DockStyle.Fill;
  3030. this.conveyor_1102.Location = new System.Drawing.Point(43, 664);
  3031. this.conveyor_1102.Margin = new System.Windows.Forms.Padding(1);
  3032. this.conveyor_1102.Name = "conveyor_1102";
  3033. this.conveyor_1102.Size = new System.Drawing.Size(40, 37);
  3034. this.conveyor_1102.TabIndex = 15;
  3035. //
  3036. // rgv04
  3037. //
  3038. this.rgv04.Dock = System.Windows.Forms.DockStyle.Fill;
  3039. this.rgv04.Location = new System.Drawing.Point(86, 314);
  3040. this.rgv04.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  3041. this.rgv04.Name = "rgv04";
  3042. this.tableLayoutPanel1.SetRowSpan(this.rgv04, 2);
  3043. this.rgv04.Size = new System.Drawing.Size(38, 74);
  3044. this.rgv04.TabIndex = 18;
  3045. //
  3046. // tableCellLabel41
  3047. //
  3048. this.tableCellLabel41.BackColor = System.Drawing.Color.Transparent;
  3049. this.tableCellLabel41.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel41.BackgroundImage")));
  3050. this.tableCellLabel41.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3051. this.tableCellLabel41.Dock = System.Windows.Forms.DockStyle.Fill;
  3052. this.tableCellLabel41.Location = new System.Drawing.Point(84, 390);
  3053. this.tableCellLabel41.Margin = new System.Windows.Forms.Padding(0);
  3054. this.tableCellLabel41.Name = "tableCellLabel41";
  3055. this.tableLayoutPanel1.SetRowSpan(this.tableCellLabel41, 9);
  3056. this.tableCellLabel41.Size = new System.Drawing.Size(42, 351);
  3057. this.tableCellLabel41.TabIndex = 19;
  3058. //
  3059. // conveyor_1081
  3060. //
  3061. this.conveyor_1081.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3062. this.tableLayoutPanel1.SetColumnSpan(this.conveyor_1081, 2);
  3063. this.conveyor_1081.Dock = System.Windows.Forms.DockStyle.Fill;
  3064. this.conveyor_1081.Location = new System.Drawing.Point(127, 312);
  3065. this.conveyor_1081.Margin = new System.Windows.Forms.Padding(1, 0, 0, 0);
  3066. this.conveyor_1081.Name = "conveyor_1081";
  3067. this.conveyor_1081.Size = new System.Drawing.Size(83, 39);
  3068. this.conveyor_1081.TabIndex = 29;
  3069. //
  3070. // conveyor_1083
  3071. //
  3072. this.conveyor_1083.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3073. this.tableLayoutPanel1.SetColumnSpan(this.conveyor_1083, 2);
  3074. this.conveyor_1083.Dock = System.Windows.Forms.DockStyle.Fill;
  3075. this.conveyor_1083.Location = new System.Drawing.Point(127, 468);
  3076. this.conveyor_1083.Margin = new System.Windows.Forms.Padding(1, 0, 0, 0);
  3077. this.conveyor_1083.Name = "conveyor_1083";
  3078. this.conveyor_1083.Size = new System.Drawing.Size(83, 39);
  3079. this.conveyor_1083.TabIndex = 31;
  3080. //
  3081. // conveyor_1085
  3082. //
  3083. this.conveyor_1085.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3084. this.tableLayoutPanel1.SetColumnSpan(this.conveyor_1085, 2);
  3085. this.conveyor_1085.Dock = System.Windows.Forms.DockStyle.Fill;
  3086. this.conveyor_1085.Location = new System.Drawing.Point(127, 624);
  3087. this.conveyor_1085.Margin = new System.Windows.Forms.Padding(1, 0, 0, 0);
  3088. this.conveyor_1085.Name = "conveyor_1085";
  3089. this.conveyor_1085.Size = new System.Drawing.Size(83, 39);
  3090. this.conveyor_1085.TabIndex = 33;
  3091. //
  3092. // conveyor2_1116
  3093. //
  3094. this.conveyor2_1116.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  3095. this.conveyor2_1116.Dock = System.Windows.Forms.DockStyle.Fill;
  3096. this.conveyor2_1116.Location = new System.Drawing.Point(924, 468);
  3097. this.conveyor2_1116.Margin = new System.Windows.Forms.Padding(0);
  3098. this.conveyor2_1116.Name = "conveyor2_1116";
  3099. this.conveyor2_1116.Size = new System.Drawing.Size(42, 39);
  3100. this.conveyor2_1116.TabIndex = 43;
  3101. //
  3102. // conveyor_1121
  3103. //
  3104. this.conveyor_1121.Dock = System.Windows.Forms.DockStyle.Fill;
  3105. this.conveyor_1121.Location = new System.Drawing.Point(1008, 468);
  3106. this.conveyor_1121.Margin = new System.Windows.Forms.Padding(0);
  3107. this.conveyor_1121.Name = "conveyor_1121";
  3108. this.conveyor_1121.Size = new System.Drawing.Size(42, 39);
  3109. this.conveyor_1121.TabIndex = 45;
  3110. //
  3111. // conveyor_1123
  3112. //
  3113. this.conveyor_1123.Dock = System.Windows.Forms.DockStyle.Fill;
  3114. this.conveyor_1123.Location = new System.Drawing.Point(1008, 507);
  3115. this.conveyor_1123.Margin = new System.Windows.Forms.Padding(0);
  3116. this.conveyor_1123.Name = "conveyor_1123";
  3117. this.conveyor_1123.Size = new System.Drawing.Size(42, 39);
  3118. this.conveyor_1123.TabIndex = 46;
  3119. //
  3120. // conveyor_1124
  3121. //
  3122. this.conveyor_1124.Dock = System.Windows.Forms.DockStyle.Fill;
  3123. this.conveyor_1124.Location = new System.Drawing.Point(1008, 546);
  3124. this.conveyor_1124.Margin = new System.Windows.Forms.Padding(0);
  3125. this.conveyor_1124.Name = "conveyor_1124";
  3126. this.conveyor_1124.Size = new System.Drawing.Size(42, 39);
  3127. this.conveyor_1124.TabIndex = 47;
  3128. //
  3129. // conveyor_1130
  3130. //
  3131. this.conveyor_1130.Dock = System.Windows.Forms.DockStyle.Fill;
  3132. this.conveyor_1130.Location = new System.Drawing.Point(1176, 546);
  3133. this.conveyor_1130.Margin = new System.Windows.Forms.Padding(0);
  3134. this.conveyor_1130.Name = "conveyor_1130";
  3135. this.conveyor_1130.Size = new System.Drawing.Size(42, 39);
  3136. this.conveyor_1130.TabIndex = 51;
  3137. //
  3138. // conveyor_1132
  3139. //
  3140. this.conveyor_1132.Dock = System.Windows.Forms.DockStyle.Fill;
  3141. this.conveyor_1132.Location = new System.Drawing.Point(1176, 585);
  3142. this.conveyor_1132.Margin = new System.Windows.Forms.Padding(0);
  3143. this.conveyor_1132.Name = "conveyor_1132";
  3144. this.conveyor_1132.Size = new System.Drawing.Size(42, 39);
  3145. this.conveyor_1132.TabIndex = 54;
  3146. //
  3147. // conveyor_1133
  3148. //
  3149. this.conveyor_1133.Dock = System.Windows.Forms.DockStyle.Fill;
  3150. this.conveyor_1133.Location = new System.Drawing.Point(1176, 624);
  3151. this.conveyor_1133.Margin = new System.Windows.Forms.Padding(0);
  3152. this.conveyor_1133.Name = "conveyor_1133";
  3153. this.conveyor_1133.Size = new System.Drawing.Size(42, 39);
  3154. this.conveyor_1133.TabIndex = 55;
  3155. //
  3156. // conveyor_1134
  3157. //
  3158. this.conveyor_1134.Dock = System.Windows.Forms.DockStyle.Fill;
  3159. this.conveyor_1134.Location = new System.Drawing.Point(1176, 663);
  3160. this.conveyor_1134.Margin = new System.Windows.Forms.Padding(0);
  3161. this.conveyor_1134.Name = "conveyor_1134";
  3162. this.conveyor_1134.Size = new System.Drawing.Size(42, 39);
  3163. this.conveyor_1134.TabIndex = 56;
  3164. //
  3165. // conveyor_1136
  3166. //
  3167. this.conveyor_1136.Dock = System.Windows.Forms.DockStyle.Fill;
  3168. this.conveyor_1136.Location = new System.Drawing.Point(1176, 702);
  3169. this.conveyor_1136.Margin = new System.Windows.Forms.Padding(0);
  3170. this.conveyor_1136.Name = "conveyor_1136";
  3171. this.conveyor_1136.Size = new System.Drawing.Size(42, 39);
  3172. this.conveyor_1136.TabIndex = 57;
  3173. //
  3174. // conveyor_1137
  3175. //
  3176. this.conveyor_1137.BackColor = System.Drawing.Color.Transparent;
  3177. this.conveyor_1137.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("conveyor_1137.BackgroundImage")));
  3178. this.conveyor_1137.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3179. this.conveyor_1137.Dock = System.Windows.Forms.DockStyle.Fill;
  3180. this.conveyor_1137.Location = new System.Drawing.Point(1176, 741);
  3181. this.conveyor_1137.Margin = new System.Windows.Forms.Padding(0);
  3182. this.conveyor_1137.Name = "conveyor_1137";
  3183. this.conveyor_1137.Size = new System.Drawing.Size(42, 39);
  3184. this.conveyor_1137.TabIndex = 58;
  3185. //
  3186. // conveyor2_1114
  3187. //
  3188. this.conveyor2_1114.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  3189. this.conveyor2_1114.Dock = System.Windows.Forms.DockStyle.Fill;
  3190. this.conveyor2_1114.Location = new System.Drawing.Point(1176, 429);
  3191. this.conveyor2_1114.Margin = new System.Windows.Forms.Padding(0);
  3192. this.conveyor2_1114.Name = "conveyor2_1114";
  3193. this.conveyor2_1114.Size = new System.Drawing.Size(42, 39);
  3194. this.conveyor2_1114.TabIndex = 59;
  3195. //
  3196. // locationPostion2103
  3197. //
  3198. this.locationPostion2103.BackColor = System.Drawing.Color.Transparent;
  3199. this.locationPostion2103.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2103.BackgroundImage")));
  3200. this.locationPostion2103.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3201. this.locationPostion2103.Dock = System.Windows.Forms.DockStyle.Fill;
  3202. this.locationPostion2103.Location = new System.Drawing.Point(210, 234);
  3203. this.locationPostion2103.Margin = new System.Windows.Forms.Padding(0);
  3204. this.locationPostion2103.Name = "locationPostion2103";
  3205. this.locationPostion2103.Size = new System.Drawing.Size(42, 39);
  3206. this.locationPostion2103.TabIndex = 64;
  3207. //
  3208. // locationPostion2104
  3209. //
  3210. this.locationPostion2104.BackColor = System.Drawing.Color.Transparent;
  3211. this.locationPostion2104.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2104.BackgroundImage")));
  3212. this.locationPostion2104.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3213. this.locationPostion2104.Dock = System.Windows.Forms.DockStyle.Fill;
  3214. this.locationPostion2104.Location = new System.Drawing.Point(252, 234);
  3215. this.locationPostion2104.Margin = new System.Windows.Forms.Padding(0);
  3216. this.locationPostion2104.Name = "locationPostion2104";
  3217. this.locationPostion2104.Size = new System.Drawing.Size(42, 39);
  3218. this.locationPostion2104.TabIndex = 65;
  3219. //
  3220. // locationPostion2105
  3221. //
  3222. this.locationPostion2105.BackColor = System.Drawing.Color.Transparent;
  3223. this.locationPostion2105.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2105.BackgroundImage")));
  3224. this.locationPostion2105.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3225. this.locationPostion2105.Dock = System.Windows.Forms.DockStyle.Fill;
  3226. this.locationPostion2105.Location = new System.Drawing.Point(294, 234);
  3227. this.locationPostion2105.Margin = new System.Windows.Forms.Padding(0);
  3228. this.locationPostion2105.Name = "locationPostion2105";
  3229. this.locationPostion2105.Size = new System.Drawing.Size(42, 39);
  3230. this.locationPostion2105.TabIndex = 66;
  3231. //
  3232. // locationPostion2106
  3233. //
  3234. this.locationPostion2106.BackColor = System.Drawing.Color.Transparent;
  3235. this.locationPostion2106.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2106.BackgroundImage")));
  3236. this.locationPostion2106.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3237. this.locationPostion2106.Dock = System.Windows.Forms.DockStyle.Fill;
  3238. this.locationPostion2106.Location = new System.Drawing.Point(336, 234);
  3239. this.locationPostion2106.Margin = new System.Windows.Forms.Padding(0);
  3240. this.locationPostion2106.Name = "locationPostion2106";
  3241. this.locationPostion2106.Size = new System.Drawing.Size(42, 39);
  3242. this.locationPostion2106.TabIndex = 67;
  3243. //
  3244. // locationPostion2107
  3245. //
  3246. this.locationPostion2107.BackColor = System.Drawing.Color.Transparent;
  3247. this.locationPostion2107.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2107.BackgroundImage")));
  3248. this.locationPostion2107.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3249. this.locationPostion2107.Dock = System.Windows.Forms.DockStyle.Fill;
  3250. this.locationPostion2107.Location = new System.Drawing.Point(378, 234);
  3251. this.locationPostion2107.Margin = new System.Windows.Forms.Padding(0);
  3252. this.locationPostion2107.Name = "locationPostion2107";
  3253. this.locationPostion2107.Size = new System.Drawing.Size(42, 39);
  3254. this.locationPostion2107.TabIndex = 68;
  3255. //
  3256. // locationPostion2108
  3257. //
  3258. this.locationPostion2108.BackColor = System.Drawing.Color.Transparent;
  3259. this.locationPostion2108.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2108.BackgroundImage")));
  3260. this.locationPostion2108.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3261. this.locationPostion2108.Dock = System.Windows.Forms.DockStyle.Fill;
  3262. this.locationPostion2108.Location = new System.Drawing.Point(420, 234);
  3263. this.locationPostion2108.Margin = new System.Windows.Forms.Padding(0);
  3264. this.locationPostion2108.Name = "locationPostion2108";
  3265. this.locationPostion2108.Size = new System.Drawing.Size(42, 39);
  3266. this.locationPostion2108.TabIndex = 69;
  3267. //
  3268. // locationPostion2109
  3269. //
  3270. this.locationPostion2109.BackColor = System.Drawing.Color.Transparent;
  3271. this.locationPostion2109.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2109.BackgroundImage")));
  3272. this.locationPostion2109.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3273. this.locationPostion2109.Dock = System.Windows.Forms.DockStyle.Fill;
  3274. this.locationPostion2109.Location = new System.Drawing.Point(462, 234);
  3275. this.locationPostion2109.Margin = new System.Windows.Forms.Padding(0);
  3276. this.locationPostion2109.Name = "locationPostion2109";
  3277. this.locationPostion2109.Size = new System.Drawing.Size(42, 39);
  3278. this.locationPostion2109.TabIndex = 70;
  3279. //
  3280. // locationPostion2110
  3281. //
  3282. this.locationPostion2110.BackColor = System.Drawing.Color.Transparent;
  3283. this.locationPostion2110.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2110.BackgroundImage")));
  3284. this.locationPostion2110.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3285. this.locationPostion2110.Dock = System.Windows.Forms.DockStyle.Fill;
  3286. this.locationPostion2110.Location = new System.Drawing.Point(504, 234);
  3287. this.locationPostion2110.Margin = new System.Windows.Forms.Padding(0);
  3288. this.locationPostion2110.Name = "locationPostion2110";
  3289. this.locationPostion2110.Size = new System.Drawing.Size(42, 39);
  3290. this.locationPostion2110.TabIndex = 71;
  3291. //
  3292. // locationPostion2111
  3293. //
  3294. this.locationPostion2111.BackColor = System.Drawing.Color.Transparent;
  3295. this.locationPostion2111.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2111.BackgroundImage")));
  3296. this.locationPostion2111.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3297. this.locationPostion2111.Dock = System.Windows.Forms.DockStyle.Fill;
  3298. this.locationPostion2111.Location = new System.Drawing.Point(546, 234);
  3299. this.locationPostion2111.Margin = new System.Windows.Forms.Padding(0);
  3300. this.locationPostion2111.Name = "locationPostion2111";
  3301. this.locationPostion2111.Size = new System.Drawing.Size(42, 39);
  3302. this.locationPostion2111.TabIndex = 72;
  3303. //
  3304. // locationPostion2112
  3305. //
  3306. this.locationPostion2112.BackColor = System.Drawing.Color.Transparent;
  3307. this.locationPostion2112.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2112.BackgroundImage")));
  3308. this.locationPostion2112.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3309. this.locationPostion2112.Dock = System.Windows.Forms.DockStyle.Fill;
  3310. this.locationPostion2112.Location = new System.Drawing.Point(588, 234);
  3311. this.locationPostion2112.Margin = new System.Windows.Forms.Padding(0);
  3312. this.locationPostion2112.Name = "locationPostion2112";
  3313. this.locationPostion2112.Size = new System.Drawing.Size(42, 39);
  3314. this.locationPostion2112.TabIndex = 73;
  3315. //
  3316. // locationPostion2113
  3317. //
  3318. this.locationPostion2113.BackColor = System.Drawing.Color.Transparent;
  3319. this.locationPostion2113.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2113.BackgroundImage")));
  3320. this.locationPostion2113.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3321. this.locationPostion2113.Dock = System.Windows.Forms.DockStyle.Fill;
  3322. this.locationPostion2113.Location = new System.Drawing.Point(630, 234);
  3323. this.locationPostion2113.Margin = new System.Windows.Forms.Padding(0);
  3324. this.locationPostion2113.Name = "locationPostion2113";
  3325. this.locationPostion2113.Size = new System.Drawing.Size(42, 39);
  3326. this.locationPostion2113.TabIndex = 74;
  3327. //
  3328. // locationPostion2114
  3329. //
  3330. this.locationPostion2114.BackColor = System.Drawing.Color.Transparent;
  3331. this.locationPostion2114.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2114.BackgroundImage")));
  3332. this.locationPostion2114.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3333. this.locationPostion2114.Dock = System.Windows.Forms.DockStyle.Fill;
  3334. this.locationPostion2114.Location = new System.Drawing.Point(672, 234);
  3335. this.locationPostion2114.Margin = new System.Windows.Forms.Padding(0);
  3336. this.locationPostion2114.Name = "locationPostion2114";
  3337. this.locationPostion2114.Size = new System.Drawing.Size(42, 39);
  3338. this.locationPostion2114.TabIndex = 75;
  3339. //
  3340. // locationPostion2115
  3341. //
  3342. this.locationPostion2115.BackColor = System.Drawing.Color.Transparent;
  3343. this.locationPostion2115.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2115.BackgroundImage")));
  3344. this.locationPostion2115.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3345. this.locationPostion2115.Dock = System.Windows.Forms.DockStyle.Fill;
  3346. this.locationPostion2115.Location = new System.Drawing.Point(714, 234);
  3347. this.locationPostion2115.Margin = new System.Windows.Forms.Padding(0);
  3348. this.locationPostion2115.Name = "locationPostion2115";
  3349. this.locationPostion2115.Size = new System.Drawing.Size(42, 39);
  3350. this.locationPostion2115.TabIndex = 76;
  3351. //
  3352. // locationPostion2116
  3353. //
  3354. this.locationPostion2116.BackColor = System.Drawing.Color.Transparent;
  3355. this.locationPostion2116.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2116.BackgroundImage")));
  3356. this.locationPostion2116.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3357. this.locationPostion2116.Dock = System.Windows.Forms.DockStyle.Fill;
  3358. this.locationPostion2116.Location = new System.Drawing.Point(756, 234);
  3359. this.locationPostion2116.Margin = new System.Windows.Forms.Padding(0);
  3360. this.locationPostion2116.Name = "locationPostion2116";
  3361. this.locationPostion2116.Size = new System.Drawing.Size(42, 39);
  3362. this.locationPostion2116.TabIndex = 77;
  3363. //
  3364. // locationPostion2117
  3365. //
  3366. this.locationPostion2117.BackColor = System.Drawing.Color.Transparent;
  3367. this.locationPostion2117.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2117.BackgroundImage")));
  3368. this.locationPostion2117.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3369. this.locationPostion2117.Dock = System.Windows.Forms.DockStyle.Fill;
  3370. this.locationPostion2117.Location = new System.Drawing.Point(798, 234);
  3371. this.locationPostion2117.Margin = new System.Windows.Forms.Padding(0);
  3372. this.locationPostion2117.Name = "locationPostion2117";
  3373. this.locationPostion2117.Size = new System.Drawing.Size(42, 39);
  3374. this.locationPostion2117.TabIndex = 78;
  3375. //
  3376. // locationPostion2118
  3377. //
  3378. this.locationPostion2118.BackColor = System.Drawing.Color.Transparent;
  3379. this.locationPostion2118.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2118.BackgroundImage")));
  3380. this.locationPostion2118.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3381. this.locationPostion2118.Dock = System.Windows.Forms.DockStyle.Fill;
  3382. this.locationPostion2118.Location = new System.Drawing.Point(840, 234);
  3383. this.locationPostion2118.Margin = new System.Windows.Forms.Padding(0);
  3384. this.locationPostion2118.Name = "locationPostion2118";
  3385. this.locationPostion2118.Size = new System.Drawing.Size(42, 39);
  3386. this.locationPostion2118.TabIndex = 79;
  3387. //
  3388. // srm033
  3389. //
  3390. this.srm033.BackColor = System.Drawing.Color.Transparent;
  3391. this.srm033.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm033.BackgroundImage")));
  3392. this.srm033.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3393. this.tableLayoutPanel1.SetColumnSpan(this.srm033, 2);
  3394. this.srm033.Dock = System.Windows.Forms.DockStyle.Fill;
  3395. this.srm033.Location = new System.Drawing.Point(504, 273);
  3396. this.srm033.Margin = new System.Windows.Forms.Padding(0);
  3397. this.srm033.Name = "srm033";
  3398. this.srm033.Size = new System.Drawing.Size(84, 39);
  3399. this.srm033.TabIndex = 80;
  3400. //
  3401. // tableCellLabel216
  3402. //
  3403. this.tableCellLabel216.BackColor = System.Drawing.Color.Transparent;
  3404. this.tableCellLabel216.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel216.BackgroundImage")));
  3405. this.tableCellLabel216.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3406. this.tableLayoutPanel1.SetColumnSpan(this.tableCellLabel216, 7);
  3407. this.tableCellLabel216.Dock = System.Windows.Forms.DockStyle.Fill;
  3408. this.tableCellLabel216.Location = new System.Drawing.Point(210, 273);
  3409. this.tableCellLabel216.Margin = new System.Windows.Forms.Padding(0);
  3410. this.tableCellLabel216.Name = "tableCellLabel216";
  3411. this.tableCellLabel216.Size = new System.Drawing.Size(294, 39);
  3412. this.tableCellLabel216.TabIndex = 81;
  3413. //
  3414. // tableCellLabel217
  3415. //
  3416. this.tableCellLabel217.BackColor = System.Drawing.Color.Transparent;
  3417. this.tableCellLabel217.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel217.BackgroundImage")));
  3418. this.tableCellLabel217.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3419. this.tableLayoutPanel1.SetColumnSpan(this.tableCellLabel217, 7);
  3420. this.tableCellLabel217.Dock = System.Windows.Forms.DockStyle.Fill;
  3421. this.tableCellLabel217.Location = new System.Drawing.Point(588, 273);
  3422. this.tableCellLabel217.Margin = new System.Windows.Forms.Padding(0);
  3423. this.tableCellLabel217.Name = "tableCellLabel217";
  3424. this.tableCellLabel217.Size = new System.Drawing.Size(294, 39);
  3425. this.tableCellLabel217.TabIndex = 82;
  3426. //
  3427. // locationPostion2119
  3428. //
  3429. this.locationPostion2119.BackColor = System.Drawing.Color.Transparent;
  3430. this.locationPostion2119.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2119.BackgroundImage")));
  3431. this.locationPostion2119.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3432. this.locationPostion2119.Dock = System.Windows.Forms.DockStyle.Fill;
  3433. this.locationPostion2119.Location = new System.Drawing.Point(210, 312);
  3434. this.locationPostion2119.Margin = new System.Windows.Forms.Padding(0);
  3435. this.locationPostion2119.Name = "locationPostion2119";
  3436. this.locationPostion2119.Size = new System.Drawing.Size(42, 39);
  3437. this.locationPostion2119.TabIndex = 83;
  3438. //
  3439. // locationPostion2120
  3440. //
  3441. this.locationPostion2120.BackColor = System.Drawing.Color.Transparent;
  3442. this.locationPostion2120.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2120.BackgroundImage")));
  3443. this.locationPostion2120.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3444. this.locationPostion2120.Dock = System.Windows.Forms.DockStyle.Fill;
  3445. this.locationPostion2120.Location = new System.Drawing.Point(252, 312);
  3446. this.locationPostion2120.Margin = new System.Windows.Forms.Padding(0);
  3447. this.locationPostion2120.Name = "locationPostion2120";
  3448. this.locationPostion2120.Size = new System.Drawing.Size(42, 39);
  3449. this.locationPostion2120.TabIndex = 84;
  3450. //
  3451. // locationPostion2121
  3452. //
  3453. this.locationPostion2121.BackColor = System.Drawing.Color.Transparent;
  3454. this.locationPostion2121.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2121.BackgroundImage")));
  3455. this.locationPostion2121.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3456. this.locationPostion2121.Dock = System.Windows.Forms.DockStyle.Fill;
  3457. this.locationPostion2121.Location = new System.Drawing.Point(294, 312);
  3458. this.locationPostion2121.Margin = new System.Windows.Forms.Padding(0);
  3459. this.locationPostion2121.Name = "locationPostion2121";
  3460. this.locationPostion2121.Size = new System.Drawing.Size(42, 39);
  3461. this.locationPostion2121.TabIndex = 85;
  3462. //
  3463. // locationPostion2122
  3464. //
  3465. this.locationPostion2122.BackColor = System.Drawing.Color.Transparent;
  3466. this.locationPostion2122.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2122.BackgroundImage")));
  3467. this.locationPostion2122.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3468. this.locationPostion2122.Dock = System.Windows.Forms.DockStyle.Fill;
  3469. this.locationPostion2122.Location = new System.Drawing.Point(336, 312);
  3470. this.locationPostion2122.Margin = new System.Windows.Forms.Padding(0);
  3471. this.locationPostion2122.Name = "locationPostion2122";
  3472. this.locationPostion2122.Size = new System.Drawing.Size(42, 39);
  3473. this.locationPostion2122.TabIndex = 86;
  3474. //
  3475. // locationPostion2123
  3476. //
  3477. this.locationPostion2123.BackColor = System.Drawing.Color.Transparent;
  3478. this.locationPostion2123.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2123.BackgroundImage")));
  3479. this.locationPostion2123.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3480. this.locationPostion2123.Dock = System.Windows.Forms.DockStyle.Fill;
  3481. this.locationPostion2123.Location = new System.Drawing.Point(378, 312);
  3482. this.locationPostion2123.Margin = new System.Windows.Forms.Padding(0);
  3483. this.locationPostion2123.Name = "locationPostion2123";
  3484. this.locationPostion2123.Size = new System.Drawing.Size(42, 39);
  3485. this.locationPostion2123.TabIndex = 87;
  3486. //
  3487. // locationPostion2124
  3488. //
  3489. this.locationPostion2124.BackColor = System.Drawing.Color.Transparent;
  3490. this.locationPostion2124.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2124.BackgroundImage")));
  3491. this.locationPostion2124.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3492. this.locationPostion2124.Dock = System.Windows.Forms.DockStyle.Fill;
  3493. this.locationPostion2124.Location = new System.Drawing.Point(420, 312);
  3494. this.locationPostion2124.Margin = new System.Windows.Forms.Padding(0);
  3495. this.locationPostion2124.Name = "locationPostion2124";
  3496. this.locationPostion2124.Size = new System.Drawing.Size(42, 39);
  3497. this.locationPostion2124.TabIndex = 88;
  3498. //
  3499. // locationPostion2125
  3500. //
  3501. this.locationPostion2125.BackColor = System.Drawing.Color.Transparent;
  3502. this.locationPostion2125.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2125.BackgroundImage")));
  3503. this.locationPostion2125.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3504. this.locationPostion2125.Dock = System.Windows.Forms.DockStyle.Fill;
  3505. this.locationPostion2125.Location = new System.Drawing.Point(462, 312);
  3506. this.locationPostion2125.Margin = new System.Windows.Forms.Padding(0);
  3507. this.locationPostion2125.Name = "locationPostion2125";
  3508. this.locationPostion2125.Size = new System.Drawing.Size(42, 39);
  3509. this.locationPostion2125.TabIndex = 89;
  3510. //
  3511. // locationPostion2126
  3512. //
  3513. this.locationPostion2126.BackColor = System.Drawing.Color.Transparent;
  3514. this.locationPostion2126.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2126.BackgroundImage")));
  3515. this.locationPostion2126.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3516. this.locationPostion2126.Dock = System.Windows.Forms.DockStyle.Fill;
  3517. this.locationPostion2126.Location = new System.Drawing.Point(504, 312);
  3518. this.locationPostion2126.Margin = new System.Windows.Forms.Padding(0);
  3519. this.locationPostion2126.Name = "locationPostion2126";
  3520. this.locationPostion2126.Size = new System.Drawing.Size(42, 39);
  3521. this.locationPostion2126.TabIndex = 90;
  3522. //
  3523. // locationPostion2127
  3524. //
  3525. this.locationPostion2127.BackColor = System.Drawing.Color.Transparent;
  3526. this.locationPostion2127.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2127.BackgroundImage")));
  3527. this.locationPostion2127.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3528. this.locationPostion2127.Dock = System.Windows.Forms.DockStyle.Fill;
  3529. this.locationPostion2127.Location = new System.Drawing.Point(546, 312);
  3530. this.locationPostion2127.Margin = new System.Windows.Forms.Padding(0);
  3531. this.locationPostion2127.Name = "locationPostion2127";
  3532. this.locationPostion2127.Size = new System.Drawing.Size(42, 39);
  3533. this.locationPostion2127.TabIndex = 91;
  3534. //
  3535. // locationPostion2128
  3536. //
  3537. this.locationPostion2128.BackColor = System.Drawing.Color.Transparent;
  3538. this.locationPostion2128.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2128.BackgroundImage")));
  3539. this.locationPostion2128.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3540. this.locationPostion2128.Dock = System.Windows.Forms.DockStyle.Fill;
  3541. this.locationPostion2128.Location = new System.Drawing.Point(588, 312);
  3542. this.locationPostion2128.Margin = new System.Windows.Forms.Padding(0);
  3543. this.locationPostion2128.Name = "locationPostion2128";
  3544. this.locationPostion2128.Size = new System.Drawing.Size(42, 39);
  3545. this.locationPostion2128.TabIndex = 92;
  3546. //
  3547. // locationPostion2129
  3548. //
  3549. this.locationPostion2129.BackColor = System.Drawing.Color.Transparent;
  3550. this.locationPostion2129.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2129.BackgroundImage")));
  3551. this.locationPostion2129.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3552. this.locationPostion2129.Dock = System.Windows.Forms.DockStyle.Fill;
  3553. this.locationPostion2129.Location = new System.Drawing.Point(630, 312);
  3554. this.locationPostion2129.Margin = new System.Windows.Forms.Padding(0);
  3555. this.locationPostion2129.Name = "locationPostion2129";
  3556. this.locationPostion2129.Size = new System.Drawing.Size(42, 39);
  3557. this.locationPostion2129.TabIndex = 93;
  3558. //
  3559. // locationPostion2130
  3560. //
  3561. this.locationPostion2130.BackColor = System.Drawing.Color.Transparent;
  3562. this.locationPostion2130.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2130.BackgroundImage")));
  3563. this.locationPostion2130.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3564. this.locationPostion2130.Dock = System.Windows.Forms.DockStyle.Fill;
  3565. this.locationPostion2130.Location = new System.Drawing.Point(672, 312);
  3566. this.locationPostion2130.Margin = new System.Windows.Forms.Padding(0);
  3567. this.locationPostion2130.Name = "locationPostion2130";
  3568. this.locationPostion2130.Size = new System.Drawing.Size(42, 39);
  3569. this.locationPostion2130.TabIndex = 94;
  3570. //
  3571. // locationPostion2131
  3572. //
  3573. this.locationPostion2131.BackColor = System.Drawing.Color.Transparent;
  3574. this.locationPostion2131.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2131.BackgroundImage")));
  3575. this.locationPostion2131.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3576. this.locationPostion2131.Dock = System.Windows.Forms.DockStyle.Fill;
  3577. this.locationPostion2131.Location = new System.Drawing.Point(714, 312);
  3578. this.locationPostion2131.Margin = new System.Windows.Forms.Padding(0);
  3579. this.locationPostion2131.Name = "locationPostion2131";
  3580. this.locationPostion2131.Size = new System.Drawing.Size(42, 39);
  3581. this.locationPostion2131.TabIndex = 95;
  3582. //
  3583. // locationPostion2132
  3584. //
  3585. this.locationPostion2132.BackColor = System.Drawing.Color.Transparent;
  3586. this.locationPostion2132.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2132.BackgroundImage")));
  3587. this.locationPostion2132.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3588. this.locationPostion2132.Dock = System.Windows.Forms.DockStyle.Fill;
  3589. this.locationPostion2132.Location = new System.Drawing.Point(756, 312);
  3590. this.locationPostion2132.Margin = new System.Windows.Forms.Padding(0);
  3591. this.locationPostion2132.Name = "locationPostion2132";
  3592. this.locationPostion2132.Size = new System.Drawing.Size(42, 39);
  3593. this.locationPostion2132.TabIndex = 96;
  3594. //
  3595. // locationPostion2133
  3596. //
  3597. this.locationPostion2133.BackColor = System.Drawing.Color.Transparent;
  3598. this.locationPostion2133.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2133.BackgroundImage")));
  3599. this.locationPostion2133.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3600. this.locationPostion2133.Dock = System.Windows.Forms.DockStyle.Fill;
  3601. this.locationPostion2133.Location = new System.Drawing.Point(798, 312);
  3602. this.locationPostion2133.Margin = new System.Windows.Forms.Padding(0);
  3603. this.locationPostion2133.Name = "locationPostion2133";
  3604. this.locationPostion2133.Size = new System.Drawing.Size(42, 39);
  3605. this.locationPostion2133.TabIndex = 97;
  3606. //
  3607. // locationPostion2134
  3608. //
  3609. this.locationPostion2134.BackColor = System.Drawing.Color.Transparent;
  3610. this.locationPostion2134.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2134.BackgroundImage")));
  3611. this.locationPostion2134.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3612. this.locationPostion2134.Dock = System.Windows.Forms.DockStyle.Fill;
  3613. this.locationPostion2134.Location = new System.Drawing.Point(840, 312);
  3614. this.locationPostion2134.Margin = new System.Windows.Forms.Padding(0);
  3615. this.locationPostion2134.Name = "locationPostion2134";
  3616. this.locationPostion2134.Size = new System.Drawing.Size(42, 39);
  3617. this.locationPostion2134.TabIndex = 98;
  3618. //
  3619. // locationPostion2135
  3620. //
  3621. this.locationPostion2135.BackColor = System.Drawing.Color.Transparent;
  3622. this.locationPostion2135.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2135.BackgroundImage")));
  3623. this.locationPostion2135.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3624. this.locationPostion2135.Dock = System.Windows.Forms.DockStyle.Fill;
  3625. this.locationPostion2135.Location = new System.Drawing.Point(210, 390);
  3626. this.locationPostion2135.Margin = new System.Windows.Forms.Padding(0);
  3627. this.locationPostion2135.Name = "locationPostion2135";
  3628. this.locationPostion2135.Size = new System.Drawing.Size(42, 39);
  3629. this.locationPostion2135.TabIndex = 99;
  3630. //
  3631. // locationPostion2136
  3632. //
  3633. this.locationPostion2136.BackColor = System.Drawing.Color.Transparent;
  3634. this.locationPostion2136.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2136.BackgroundImage")));
  3635. this.locationPostion2136.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3636. this.locationPostion2136.Dock = System.Windows.Forms.DockStyle.Fill;
  3637. this.locationPostion2136.Location = new System.Drawing.Point(252, 390);
  3638. this.locationPostion2136.Margin = new System.Windows.Forms.Padding(0);
  3639. this.locationPostion2136.Name = "locationPostion2136";
  3640. this.locationPostion2136.Size = new System.Drawing.Size(42, 39);
  3641. this.locationPostion2136.TabIndex = 100;
  3642. //
  3643. // locationPostion2137
  3644. //
  3645. this.locationPostion2137.BackColor = System.Drawing.Color.Transparent;
  3646. this.locationPostion2137.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2137.BackgroundImage")));
  3647. this.locationPostion2137.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3648. this.locationPostion2137.Dock = System.Windows.Forms.DockStyle.Fill;
  3649. this.locationPostion2137.Location = new System.Drawing.Point(294, 390);
  3650. this.locationPostion2137.Margin = new System.Windows.Forms.Padding(0);
  3651. this.locationPostion2137.Name = "locationPostion2137";
  3652. this.locationPostion2137.Size = new System.Drawing.Size(42, 39);
  3653. this.locationPostion2137.TabIndex = 101;
  3654. //
  3655. // locationPostion2138
  3656. //
  3657. this.locationPostion2138.BackColor = System.Drawing.Color.Transparent;
  3658. this.locationPostion2138.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2138.BackgroundImage")));
  3659. this.locationPostion2138.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3660. this.locationPostion2138.Dock = System.Windows.Forms.DockStyle.Fill;
  3661. this.locationPostion2138.Location = new System.Drawing.Point(336, 390);
  3662. this.locationPostion2138.Margin = new System.Windows.Forms.Padding(0);
  3663. this.locationPostion2138.Name = "locationPostion2138";
  3664. this.locationPostion2138.Size = new System.Drawing.Size(42, 39);
  3665. this.locationPostion2138.TabIndex = 102;
  3666. //
  3667. // locationPostion2139
  3668. //
  3669. this.locationPostion2139.BackColor = System.Drawing.Color.Transparent;
  3670. this.locationPostion2139.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2139.BackgroundImage")));
  3671. this.locationPostion2139.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3672. this.locationPostion2139.Dock = System.Windows.Forms.DockStyle.Fill;
  3673. this.locationPostion2139.Location = new System.Drawing.Point(378, 390);
  3674. this.locationPostion2139.Margin = new System.Windows.Forms.Padding(0);
  3675. this.locationPostion2139.Name = "locationPostion2139";
  3676. this.locationPostion2139.Size = new System.Drawing.Size(42, 39);
  3677. this.locationPostion2139.TabIndex = 103;
  3678. //
  3679. // locationPostion2140
  3680. //
  3681. this.locationPostion2140.BackColor = System.Drawing.Color.Transparent;
  3682. this.locationPostion2140.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2140.BackgroundImage")));
  3683. this.locationPostion2140.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3684. this.locationPostion2140.Dock = System.Windows.Forms.DockStyle.Fill;
  3685. this.locationPostion2140.Location = new System.Drawing.Point(420, 390);
  3686. this.locationPostion2140.Margin = new System.Windows.Forms.Padding(0);
  3687. this.locationPostion2140.Name = "locationPostion2140";
  3688. this.locationPostion2140.Size = new System.Drawing.Size(42, 39);
  3689. this.locationPostion2140.TabIndex = 104;
  3690. //
  3691. // locationPostion2141
  3692. //
  3693. this.locationPostion2141.BackColor = System.Drawing.Color.Transparent;
  3694. this.locationPostion2141.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2141.BackgroundImage")));
  3695. this.locationPostion2141.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3696. this.locationPostion2141.Dock = System.Windows.Forms.DockStyle.Fill;
  3697. this.locationPostion2141.Location = new System.Drawing.Point(462, 390);
  3698. this.locationPostion2141.Margin = new System.Windows.Forms.Padding(0);
  3699. this.locationPostion2141.Name = "locationPostion2141";
  3700. this.locationPostion2141.Size = new System.Drawing.Size(42, 39);
  3701. this.locationPostion2141.TabIndex = 105;
  3702. //
  3703. // locationPostion2142
  3704. //
  3705. this.locationPostion2142.BackColor = System.Drawing.Color.Transparent;
  3706. this.locationPostion2142.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2142.BackgroundImage")));
  3707. this.locationPostion2142.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3708. this.locationPostion2142.Dock = System.Windows.Forms.DockStyle.Fill;
  3709. this.locationPostion2142.Location = new System.Drawing.Point(504, 390);
  3710. this.locationPostion2142.Margin = new System.Windows.Forms.Padding(0);
  3711. this.locationPostion2142.Name = "locationPostion2142";
  3712. this.locationPostion2142.Size = new System.Drawing.Size(42, 39);
  3713. this.locationPostion2142.TabIndex = 106;
  3714. //
  3715. // locationPostion2143
  3716. //
  3717. this.locationPostion2143.BackColor = System.Drawing.Color.Transparent;
  3718. this.locationPostion2143.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2143.BackgroundImage")));
  3719. this.locationPostion2143.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3720. this.locationPostion2143.Dock = System.Windows.Forms.DockStyle.Fill;
  3721. this.locationPostion2143.Location = new System.Drawing.Point(546, 390);
  3722. this.locationPostion2143.Margin = new System.Windows.Forms.Padding(0);
  3723. this.locationPostion2143.Name = "locationPostion2143";
  3724. this.locationPostion2143.Size = new System.Drawing.Size(42, 39);
  3725. this.locationPostion2143.TabIndex = 107;
  3726. //
  3727. // locationPostion2144
  3728. //
  3729. this.locationPostion2144.BackColor = System.Drawing.Color.Transparent;
  3730. this.locationPostion2144.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2144.BackgroundImage")));
  3731. this.locationPostion2144.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3732. this.locationPostion2144.Dock = System.Windows.Forms.DockStyle.Fill;
  3733. this.locationPostion2144.Location = new System.Drawing.Point(588, 390);
  3734. this.locationPostion2144.Margin = new System.Windows.Forms.Padding(0);
  3735. this.locationPostion2144.Name = "locationPostion2144";
  3736. this.locationPostion2144.Size = new System.Drawing.Size(42, 39);
  3737. this.locationPostion2144.TabIndex = 108;
  3738. //
  3739. // locationPostion2145
  3740. //
  3741. this.locationPostion2145.BackColor = System.Drawing.Color.Transparent;
  3742. this.locationPostion2145.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2145.BackgroundImage")));
  3743. this.locationPostion2145.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3744. this.locationPostion2145.Dock = System.Windows.Forms.DockStyle.Fill;
  3745. this.locationPostion2145.Location = new System.Drawing.Point(630, 390);
  3746. this.locationPostion2145.Margin = new System.Windows.Forms.Padding(0);
  3747. this.locationPostion2145.Name = "locationPostion2145";
  3748. this.locationPostion2145.Size = new System.Drawing.Size(42, 39);
  3749. this.locationPostion2145.TabIndex = 109;
  3750. //
  3751. // locationPostion2146
  3752. //
  3753. this.locationPostion2146.BackColor = System.Drawing.Color.Transparent;
  3754. this.locationPostion2146.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2146.BackgroundImage")));
  3755. this.locationPostion2146.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3756. this.locationPostion2146.Dock = System.Windows.Forms.DockStyle.Fill;
  3757. this.locationPostion2146.Location = new System.Drawing.Point(672, 390);
  3758. this.locationPostion2146.Margin = new System.Windows.Forms.Padding(0);
  3759. this.locationPostion2146.Name = "locationPostion2146";
  3760. this.locationPostion2146.Size = new System.Drawing.Size(42, 39);
  3761. this.locationPostion2146.TabIndex = 110;
  3762. //
  3763. // locationPostion2147
  3764. //
  3765. this.locationPostion2147.BackColor = System.Drawing.Color.Transparent;
  3766. this.locationPostion2147.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2147.BackgroundImage")));
  3767. this.locationPostion2147.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3768. this.locationPostion2147.Dock = System.Windows.Forms.DockStyle.Fill;
  3769. this.locationPostion2147.Location = new System.Drawing.Point(714, 390);
  3770. this.locationPostion2147.Margin = new System.Windows.Forms.Padding(0);
  3771. this.locationPostion2147.Name = "locationPostion2147";
  3772. this.locationPostion2147.Size = new System.Drawing.Size(42, 39);
  3773. this.locationPostion2147.TabIndex = 111;
  3774. //
  3775. // locationPostion2148
  3776. //
  3777. this.locationPostion2148.BackColor = System.Drawing.Color.Transparent;
  3778. this.locationPostion2148.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2148.BackgroundImage")));
  3779. this.locationPostion2148.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3780. this.locationPostion2148.Dock = System.Windows.Forms.DockStyle.Fill;
  3781. this.locationPostion2148.Location = new System.Drawing.Point(756, 390);
  3782. this.locationPostion2148.Margin = new System.Windows.Forms.Padding(0);
  3783. this.locationPostion2148.Name = "locationPostion2148";
  3784. this.locationPostion2148.Size = new System.Drawing.Size(42, 39);
  3785. this.locationPostion2148.TabIndex = 112;
  3786. //
  3787. // locationPostion2149
  3788. //
  3789. this.locationPostion2149.BackColor = System.Drawing.Color.Transparent;
  3790. this.locationPostion2149.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2149.BackgroundImage")));
  3791. this.locationPostion2149.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3792. this.locationPostion2149.Dock = System.Windows.Forms.DockStyle.Fill;
  3793. this.locationPostion2149.Location = new System.Drawing.Point(798, 390);
  3794. this.locationPostion2149.Margin = new System.Windows.Forms.Padding(0);
  3795. this.locationPostion2149.Name = "locationPostion2149";
  3796. this.locationPostion2149.Size = new System.Drawing.Size(42, 39);
  3797. this.locationPostion2149.TabIndex = 113;
  3798. //
  3799. // locationPostion2150
  3800. //
  3801. this.locationPostion2150.BackColor = System.Drawing.Color.Transparent;
  3802. this.locationPostion2150.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2150.BackgroundImage")));
  3803. this.locationPostion2150.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3804. this.locationPostion2150.Dock = System.Windows.Forms.DockStyle.Fill;
  3805. this.locationPostion2150.Location = new System.Drawing.Point(840, 390);
  3806. this.locationPostion2150.Margin = new System.Windows.Forms.Padding(0);
  3807. this.locationPostion2150.Name = "locationPostion2150";
  3808. this.locationPostion2150.Size = new System.Drawing.Size(42, 39);
  3809. this.locationPostion2150.TabIndex = 114;
  3810. //
  3811. // locationPostion2151
  3812. //
  3813. this.locationPostion2151.BackColor = System.Drawing.Color.Transparent;
  3814. this.locationPostion2151.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2151.BackgroundImage")));
  3815. this.locationPostion2151.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3816. this.locationPostion2151.Dock = System.Windows.Forms.DockStyle.Fill;
  3817. this.locationPostion2151.Location = new System.Drawing.Point(210, 468);
  3818. this.locationPostion2151.Margin = new System.Windows.Forms.Padding(0);
  3819. this.locationPostion2151.Name = "locationPostion2151";
  3820. this.locationPostion2151.Size = new System.Drawing.Size(42, 39);
  3821. this.locationPostion2151.TabIndex = 115;
  3822. //
  3823. // locationPostion2152
  3824. //
  3825. this.locationPostion2152.BackColor = System.Drawing.Color.Transparent;
  3826. this.locationPostion2152.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2152.BackgroundImage")));
  3827. this.locationPostion2152.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3828. this.locationPostion2152.Dock = System.Windows.Forms.DockStyle.Fill;
  3829. this.locationPostion2152.Location = new System.Drawing.Point(252, 468);
  3830. this.locationPostion2152.Margin = new System.Windows.Forms.Padding(0);
  3831. this.locationPostion2152.Name = "locationPostion2152";
  3832. this.locationPostion2152.Size = new System.Drawing.Size(42, 39);
  3833. this.locationPostion2152.TabIndex = 116;
  3834. //
  3835. // locationPostion2153
  3836. //
  3837. this.locationPostion2153.BackColor = System.Drawing.Color.Transparent;
  3838. this.locationPostion2153.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2153.BackgroundImage")));
  3839. this.locationPostion2153.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3840. this.locationPostion2153.Dock = System.Windows.Forms.DockStyle.Fill;
  3841. this.locationPostion2153.Location = new System.Drawing.Point(294, 468);
  3842. this.locationPostion2153.Margin = new System.Windows.Forms.Padding(0);
  3843. this.locationPostion2153.Name = "locationPostion2153";
  3844. this.locationPostion2153.Size = new System.Drawing.Size(42, 39);
  3845. this.locationPostion2153.TabIndex = 117;
  3846. //
  3847. // locationPostion2154
  3848. //
  3849. this.locationPostion2154.BackColor = System.Drawing.Color.Transparent;
  3850. this.locationPostion2154.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2154.BackgroundImage")));
  3851. this.locationPostion2154.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3852. this.locationPostion2154.Dock = System.Windows.Forms.DockStyle.Fill;
  3853. this.locationPostion2154.Location = new System.Drawing.Point(336, 468);
  3854. this.locationPostion2154.Margin = new System.Windows.Forms.Padding(0);
  3855. this.locationPostion2154.Name = "locationPostion2154";
  3856. this.locationPostion2154.Size = new System.Drawing.Size(42, 39);
  3857. this.locationPostion2154.TabIndex = 118;
  3858. //
  3859. // locationPostion2155
  3860. //
  3861. this.locationPostion2155.BackColor = System.Drawing.Color.Transparent;
  3862. this.locationPostion2155.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2155.BackgroundImage")));
  3863. this.locationPostion2155.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3864. this.locationPostion2155.Dock = System.Windows.Forms.DockStyle.Fill;
  3865. this.locationPostion2155.Location = new System.Drawing.Point(378, 468);
  3866. this.locationPostion2155.Margin = new System.Windows.Forms.Padding(0);
  3867. this.locationPostion2155.Name = "locationPostion2155";
  3868. this.locationPostion2155.Size = new System.Drawing.Size(42, 39);
  3869. this.locationPostion2155.TabIndex = 119;
  3870. //
  3871. // locationPostion2156
  3872. //
  3873. this.locationPostion2156.BackColor = System.Drawing.Color.Transparent;
  3874. this.locationPostion2156.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2156.BackgroundImage")));
  3875. this.locationPostion2156.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3876. this.locationPostion2156.Dock = System.Windows.Forms.DockStyle.Fill;
  3877. this.locationPostion2156.Location = new System.Drawing.Point(420, 468);
  3878. this.locationPostion2156.Margin = new System.Windows.Forms.Padding(0);
  3879. this.locationPostion2156.Name = "locationPostion2156";
  3880. this.locationPostion2156.Size = new System.Drawing.Size(42, 39);
  3881. this.locationPostion2156.TabIndex = 120;
  3882. //
  3883. // locationPostion2157
  3884. //
  3885. this.locationPostion2157.BackColor = System.Drawing.Color.Transparent;
  3886. this.locationPostion2157.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2157.BackgroundImage")));
  3887. this.locationPostion2157.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3888. this.locationPostion2157.Dock = System.Windows.Forms.DockStyle.Fill;
  3889. this.locationPostion2157.Location = new System.Drawing.Point(462, 468);
  3890. this.locationPostion2157.Margin = new System.Windows.Forms.Padding(0);
  3891. this.locationPostion2157.Name = "locationPostion2157";
  3892. this.locationPostion2157.Size = new System.Drawing.Size(42, 39);
  3893. this.locationPostion2157.TabIndex = 121;
  3894. //
  3895. // locationPostion2158
  3896. //
  3897. this.locationPostion2158.BackColor = System.Drawing.Color.Transparent;
  3898. this.locationPostion2158.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2158.BackgroundImage")));
  3899. this.locationPostion2158.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3900. this.locationPostion2158.Dock = System.Windows.Forms.DockStyle.Fill;
  3901. this.locationPostion2158.Location = new System.Drawing.Point(504, 468);
  3902. this.locationPostion2158.Margin = new System.Windows.Forms.Padding(0);
  3903. this.locationPostion2158.Name = "locationPostion2158";
  3904. this.locationPostion2158.Size = new System.Drawing.Size(42, 39);
  3905. this.locationPostion2158.TabIndex = 122;
  3906. //
  3907. // locationPostion2159
  3908. //
  3909. this.locationPostion2159.BackColor = System.Drawing.Color.Transparent;
  3910. this.locationPostion2159.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2159.BackgroundImage")));
  3911. this.locationPostion2159.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3912. this.locationPostion2159.Dock = System.Windows.Forms.DockStyle.Fill;
  3913. this.locationPostion2159.Location = new System.Drawing.Point(546, 468);
  3914. this.locationPostion2159.Margin = new System.Windows.Forms.Padding(0);
  3915. this.locationPostion2159.Name = "locationPostion2159";
  3916. this.locationPostion2159.Size = new System.Drawing.Size(42, 39);
  3917. this.locationPostion2159.TabIndex = 123;
  3918. //
  3919. // locationPostion2160
  3920. //
  3921. this.locationPostion2160.BackColor = System.Drawing.Color.Transparent;
  3922. this.locationPostion2160.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2160.BackgroundImage")));
  3923. this.locationPostion2160.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3924. this.locationPostion2160.Dock = System.Windows.Forms.DockStyle.Fill;
  3925. this.locationPostion2160.Location = new System.Drawing.Point(588, 468);
  3926. this.locationPostion2160.Margin = new System.Windows.Forms.Padding(0);
  3927. this.locationPostion2160.Name = "locationPostion2160";
  3928. this.locationPostion2160.Size = new System.Drawing.Size(42, 39);
  3929. this.locationPostion2160.TabIndex = 124;
  3930. //
  3931. // locationPostion2161
  3932. //
  3933. this.locationPostion2161.BackColor = System.Drawing.Color.Transparent;
  3934. this.locationPostion2161.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2161.BackgroundImage")));
  3935. this.locationPostion2161.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3936. this.locationPostion2161.Dock = System.Windows.Forms.DockStyle.Fill;
  3937. this.locationPostion2161.Location = new System.Drawing.Point(630, 468);
  3938. this.locationPostion2161.Margin = new System.Windows.Forms.Padding(0);
  3939. this.locationPostion2161.Name = "locationPostion2161";
  3940. this.locationPostion2161.Size = new System.Drawing.Size(42, 39);
  3941. this.locationPostion2161.TabIndex = 125;
  3942. //
  3943. // locationPostion2162
  3944. //
  3945. this.locationPostion2162.BackColor = System.Drawing.Color.Transparent;
  3946. this.locationPostion2162.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2162.BackgroundImage")));
  3947. this.locationPostion2162.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3948. this.locationPostion2162.Dock = System.Windows.Forms.DockStyle.Fill;
  3949. this.locationPostion2162.Location = new System.Drawing.Point(672, 468);
  3950. this.locationPostion2162.Margin = new System.Windows.Forms.Padding(0);
  3951. this.locationPostion2162.Name = "locationPostion2162";
  3952. this.locationPostion2162.Size = new System.Drawing.Size(42, 39);
  3953. this.locationPostion2162.TabIndex = 126;
  3954. //
  3955. // locationPostion2163
  3956. //
  3957. this.locationPostion2163.BackColor = System.Drawing.Color.Transparent;
  3958. this.locationPostion2163.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2163.BackgroundImage")));
  3959. this.locationPostion2163.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3960. this.locationPostion2163.Dock = System.Windows.Forms.DockStyle.Fill;
  3961. this.locationPostion2163.Location = new System.Drawing.Point(714, 468);
  3962. this.locationPostion2163.Margin = new System.Windows.Forms.Padding(0);
  3963. this.locationPostion2163.Name = "locationPostion2163";
  3964. this.locationPostion2163.Size = new System.Drawing.Size(42, 39);
  3965. this.locationPostion2163.TabIndex = 127;
  3966. //
  3967. // locationPostion2164
  3968. //
  3969. this.locationPostion2164.BackColor = System.Drawing.Color.Transparent;
  3970. this.locationPostion2164.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2164.BackgroundImage")));
  3971. this.locationPostion2164.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3972. this.locationPostion2164.Dock = System.Windows.Forms.DockStyle.Fill;
  3973. this.locationPostion2164.Location = new System.Drawing.Point(756, 468);
  3974. this.locationPostion2164.Margin = new System.Windows.Forms.Padding(0);
  3975. this.locationPostion2164.Name = "locationPostion2164";
  3976. this.locationPostion2164.Size = new System.Drawing.Size(42, 39);
  3977. this.locationPostion2164.TabIndex = 128;
  3978. //
  3979. // locationPostion2165
  3980. //
  3981. this.locationPostion2165.BackColor = System.Drawing.Color.Transparent;
  3982. this.locationPostion2165.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2165.BackgroundImage")));
  3983. this.locationPostion2165.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3984. this.locationPostion2165.Dock = System.Windows.Forms.DockStyle.Fill;
  3985. this.locationPostion2165.Location = new System.Drawing.Point(798, 468);
  3986. this.locationPostion2165.Margin = new System.Windows.Forms.Padding(0);
  3987. this.locationPostion2165.Name = "locationPostion2165";
  3988. this.locationPostion2165.Size = new System.Drawing.Size(42, 39);
  3989. this.locationPostion2165.TabIndex = 129;
  3990. //
  3991. // locationPostion2166
  3992. //
  3993. this.locationPostion2166.BackColor = System.Drawing.Color.Transparent;
  3994. this.locationPostion2166.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2166.BackgroundImage")));
  3995. this.locationPostion2166.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3996. this.locationPostion2166.Dock = System.Windows.Forms.DockStyle.Fill;
  3997. this.locationPostion2166.Location = new System.Drawing.Point(840, 468);
  3998. this.locationPostion2166.Margin = new System.Windows.Forms.Padding(0);
  3999. this.locationPostion2166.Name = "locationPostion2166";
  4000. this.locationPostion2166.Size = new System.Drawing.Size(42, 39);
  4001. this.locationPostion2166.TabIndex = 130;
  4002. //
  4003. // tableCellLabel218
  4004. //
  4005. this.tableCellLabel218.BackColor = System.Drawing.Color.Transparent;
  4006. this.tableCellLabel218.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel218.BackgroundImage")));
  4007. this.tableCellLabel218.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  4008. this.tableLayoutPanel1.SetColumnSpan(this.tableCellLabel218, 7);
  4009. this.tableCellLabel218.Dock = System.Windows.Forms.DockStyle.Fill;
  4010. this.tableCellLabel218.Location = new System.Drawing.Point(210, 429);
  4011. this.tableCellLabel218.Margin = new System.Windows.Forms.Padding(0);
  4012. this.tableCellLabel218.Name = "tableCellLabel218";
  4013. this.tableCellLabel218.Size = new System.Drawing.Size(294, 39);
  4014. this.tableCellLabel218.TabIndex = 131;
  4015. //
  4016. // tableCellLabel219
  4017. //
  4018. this.tableCellLabel219.BackColor = System.Drawing.Color.Transparent;
  4019. this.tableCellLabel219.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel219.BackgroundImage")));
  4020. this.tableCellLabel219.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  4021. this.tableLayoutPanel1.SetColumnSpan(this.tableCellLabel219, 7);
  4022. this.tableCellLabel219.Dock = System.Windows.Forms.DockStyle.Fill;
  4023. this.tableCellLabel219.Location = new System.Drawing.Point(588, 429);
  4024. this.tableCellLabel219.Margin = new System.Windows.Forms.Padding(0);
  4025. this.tableCellLabel219.Name = "tableCellLabel219";
  4026. this.tableCellLabel219.Size = new System.Drawing.Size(294, 39);
  4027. this.tableCellLabel219.TabIndex = 132;
  4028. //
  4029. // srm022
  4030. //
  4031. this.srm022.BackColor = System.Drawing.Color.Transparent;
  4032. this.srm022.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4033. this.tableLayoutPanel1.SetColumnSpan(this.srm022, 2);
  4034. this.srm022.Dock = System.Windows.Forms.DockStyle.Fill;
  4035. this.srm022.Location = new System.Drawing.Point(504, 429);
  4036. this.srm022.Margin = new System.Windows.Forms.Padding(0);
  4037. this.srm022.Name = "srm022";
  4038. this.srm022.Size = new System.Drawing.Size(84, 39);
  4039. this.srm022.TabIndex = 133;
  4040. //
  4041. // locationPostion2167
  4042. //
  4043. this.locationPostion2167.BackColor = System.Drawing.Color.Transparent;
  4044. this.locationPostion2167.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2167.BackgroundImage")));
  4045. this.locationPostion2167.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4046. this.locationPostion2167.Dock = System.Windows.Forms.DockStyle.Fill;
  4047. this.locationPostion2167.Location = new System.Drawing.Point(210, 546);
  4048. this.locationPostion2167.Margin = new System.Windows.Forms.Padding(0);
  4049. this.locationPostion2167.Name = "locationPostion2167";
  4050. this.locationPostion2167.Size = new System.Drawing.Size(42, 39);
  4051. this.locationPostion2167.TabIndex = 134;
  4052. //
  4053. // locationPostion2168
  4054. //
  4055. this.locationPostion2168.BackColor = System.Drawing.Color.Transparent;
  4056. this.locationPostion2168.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2168.BackgroundImage")));
  4057. this.locationPostion2168.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4058. this.locationPostion2168.Dock = System.Windows.Forms.DockStyle.Fill;
  4059. this.locationPostion2168.Location = new System.Drawing.Point(252, 546);
  4060. this.locationPostion2168.Margin = new System.Windows.Forms.Padding(0);
  4061. this.locationPostion2168.Name = "locationPostion2168";
  4062. this.locationPostion2168.Size = new System.Drawing.Size(42, 39);
  4063. this.locationPostion2168.TabIndex = 135;
  4064. //
  4065. // locationPostion2169
  4066. //
  4067. this.locationPostion2169.BackColor = System.Drawing.Color.Transparent;
  4068. this.locationPostion2169.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2169.BackgroundImage")));
  4069. this.locationPostion2169.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4070. this.locationPostion2169.Dock = System.Windows.Forms.DockStyle.Fill;
  4071. this.locationPostion2169.Location = new System.Drawing.Point(294, 546);
  4072. this.locationPostion2169.Margin = new System.Windows.Forms.Padding(0);
  4073. this.locationPostion2169.Name = "locationPostion2169";
  4074. this.locationPostion2169.Size = new System.Drawing.Size(42, 39);
  4075. this.locationPostion2169.TabIndex = 136;
  4076. //
  4077. // locationPostion2170
  4078. //
  4079. this.locationPostion2170.BackColor = System.Drawing.Color.Transparent;
  4080. this.locationPostion2170.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2170.BackgroundImage")));
  4081. this.locationPostion2170.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4082. this.locationPostion2170.Dock = System.Windows.Forms.DockStyle.Fill;
  4083. this.locationPostion2170.Location = new System.Drawing.Point(336, 546);
  4084. this.locationPostion2170.Margin = new System.Windows.Forms.Padding(0);
  4085. this.locationPostion2170.Name = "locationPostion2170";
  4086. this.locationPostion2170.Size = new System.Drawing.Size(42, 39);
  4087. this.locationPostion2170.TabIndex = 137;
  4088. //
  4089. // locationPostion2171
  4090. //
  4091. this.locationPostion2171.BackColor = System.Drawing.Color.Transparent;
  4092. this.locationPostion2171.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2171.BackgroundImage")));
  4093. this.locationPostion2171.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4094. this.locationPostion2171.Dock = System.Windows.Forms.DockStyle.Fill;
  4095. this.locationPostion2171.Location = new System.Drawing.Point(378, 546);
  4096. this.locationPostion2171.Margin = new System.Windows.Forms.Padding(0);
  4097. this.locationPostion2171.Name = "locationPostion2171";
  4098. this.locationPostion2171.Size = new System.Drawing.Size(42, 39);
  4099. this.locationPostion2171.TabIndex = 138;
  4100. //
  4101. // locationPostion2172
  4102. //
  4103. this.locationPostion2172.BackColor = System.Drawing.Color.Transparent;
  4104. this.locationPostion2172.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2172.BackgroundImage")));
  4105. this.locationPostion2172.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4106. this.locationPostion2172.Dock = System.Windows.Forms.DockStyle.Fill;
  4107. this.locationPostion2172.Location = new System.Drawing.Point(420, 546);
  4108. this.locationPostion2172.Margin = new System.Windows.Forms.Padding(0);
  4109. this.locationPostion2172.Name = "locationPostion2172";
  4110. this.locationPostion2172.Size = new System.Drawing.Size(42, 39);
  4111. this.locationPostion2172.TabIndex = 139;
  4112. //
  4113. // locationPostion2173
  4114. //
  4115. this.locationPostion2173.BackColor = System.Drawing.Color.Transparent;
  4116. this.locationPostion2173.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2173.BackgroundImage")));
  4117. this.locationPostion2173.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4118. this.locationPostion2173.Dock = System.Windows.Forms.DockStyle.Fill;
  4119. this.locationPostion2173.Location = new System.Drawing.Point(462, 546);
  4120. this.locationPostion2173.Margin = new System.Windows.Forms.Padding(0);
  4121. this.locationPostion2173.Name = "locationPostion2173";
  4122. this.locationPostion2173.Size = new System.Drawing.Size(42, 39);
  4123. this.locationPostion2173.TabIndex = 140;
  4124. //
  4125. // locationPostion2174
  4126. //
  4127. this.locationPostion2174.BackColor = System.Drawing.Color.Transparent;
  4128. this.locationPostion2174.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2174.BackgroundImage")));
  4129. this.locationPostion2174.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4130. this.locationPostion2174.Dock = System.Windows.Forms.DockStyle.Fill;
  4131. this.locationPostion2174.Location = new System.Drawing.Point(504, 546);
  4132. this.locationPostion2174.Margin = new System.Windows.Forms.Padding(0);
  4133. this.locationPostion2174.Name = "locationPostion2174";
  4134. this.locationPostion2174.Size = new System.Drawing.Size(42, 39);
  4135. this.locationPostion2174.TabIndex = 141;
  4136. //
  4137. // locationPostion2175
  4138. //
  4139. this.locationPostion2175.BackColor = System.Drawing.Color.Transparent;
  4140. this.locationPostion2175.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2175.BackgroundImage")));
  4141. this.locationPostion2175.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4142. this.locationPostion2175.Dock = System.Windows.Forms.DockStyle.Fill;
  4143. this.locationPostion2175.Location = new System.Drawing.Point(546, 546);
  4144. this.locationPostion2175.Margin = new System.Windows.Forms.Padding(0);
  4145. this.locationPostion2175.Name = "locationPostion2175";
  4146. this.locationPostion2175.Size = new System.Drawing.Size(42, 39);
  4147. this.locationPostion2175.TabIndex = 142;
  4148. //
  4149. // locationPostion2176
  4150. //
  4151. this.locationPostion2176.BackColor = System.Drawing.Color.Transparent;
  4152. this.locationPostion2176.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2176.BackgroundImage")));
  4153. this.locationPostion2176.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4154. this.locationPostion2176.Dock = System.Windows.Forms.DockStyle.Fill;
  4155. this.locationPostion2176.Location = new System.Drawing.Point(588, 546);
  4156. this.locationPostion2176.Margin = new System.Windows.Forms.Padding(0);
  4157. this.locationPostion2176.Name = "locationPostion2176";
  4158. this.locationPostion2176.Size = new System.Drawing.Size(42, 39);
  4159. this.locationPostion2176.TabIndex = 143;
  4160. //
  4161. // locationPostion2177
  4162. //
  4163. this.locationPostion2177.BackColor = System.Drawing.Color.Transparent;
  4164. this.locationPostion2177.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2177.BackgroundImage")));
  4165. this.locationPostion2177.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4166. this.locationPostion2177.Dock = System.Windows.Forms.DockStyle.Fill;
  4167. this.locationPostion2177.Location = new System.Drawing.Point(630, 546);
  4168. this.locationPostion2177.Margin = new System.Windows.Forms.Padding(0);
  4169. this.locationPostion2177.Name = "locationPostion2177";
  4170. this.locationPostion2177.Size = new System.Drawing.Size(42, 39);
  4171. this.locationPostion2177.TabIndex = 144;
  4172. //
  4173. // locationPostion2178
  4174. //
  4175. this.locationPostion2178.BackColor = System.Drawing.Color.Transparent;
  4176. this.locationPostion2178.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2178.BackgroundImage")));
  4177. this.locationPostion2178.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4178. this.locationPostion2178.Dock = System.Windows.Forms.DockStyle.Fill;
  4179. this.locationPostion2178.Location = new System.Drawing.Point(672, 546);
  4180. this.locationPostion2178.Margin = new System.Windows.Forms.Padding(0);
  4181. this.locationPostion2178.Name = "locationPostion2178";
  4182. this.locationPostion2178.Size = new System.Drawing.Size(42, 39);
  4183. this.locationPostion2178.TabIndex = 145;
  4184. //
  4185. // locationPostion2179
  4186. //
  4187. this.locationPostion2179.BackColor = System.Drawing.Color.Transparent;
  4188. this.locationPostion2179.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2179.BackgroundImage")));
  4189. this.locationPostion2179.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4190. this.locationPostion2179.Dock = System.Windows.Forms.DockStyle.Fill;
  4191. this.locationPostion2179.Location = new System.Drawing.Point(714, 546);
  4192. this.locationPostion2179.Margin = new System.Windows.Forms.Padding(0);
  4193. this.locationPostion2179.Name = "locationPostion2179";
  4194. this.locationPostion2179.Size = new System.Drawing.Size(42, 39);
  4195. this.locationPostion2179.TabIndex = 146;
  4196. //
  4197. // locationPostion2180
  4198. //
  4199. this.locationPostion2180.BackColor = System.Drawing.Color.Transparent;
  4200. this.locationPostion2180.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2180.BackgroundImage")));
  4201. this.locationPostion2180.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4202. this.locationPostion2180.Dock = System.Windows.Forms.DockStyle.Fill;
  4203. this.locationPostion2180.Location = new System.Drawing.Point(756, 546);
  4204. this.locationPostion2180.Margin = new System.Windows.Forms.Padding(0);
  4205. this.locationPostion2180.Name = "locationPostion2180";
  4206. this.locationPostion2180.Size = new System.Drawing.Size(42, 39);
  4207. this.locationPostion2180.TabIndex = 147;
  4208. //
  4209. // locationPostion2181
  4210. //
  4211. this.locationPostion2181.BackColor = System.Drawing.Color.Transparent;
  4212. this.locationPostion2181.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2181.BackgroundImage")));
  4213. this.locationPostion2181.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4214. this.locationPostion2181.Dock = System.Windows.Forms.DockStyle.Fill;
  4215. this.locationPostion2181.Location = new System.Drawing.Point(840, 546);
  4216. this.locationPostion2181.Margin = new System.Windows.Forms.Padding(0);
  4217. this.locationPostion2181.Name = "locationPostion2181";
  4218. this.locationPostion2181.Size = new System.Drawing.Size(42, 39);
  4219. this.locationPostion2181.TabIndex = 148;
  4220. //
  4221. // locationPostion2182
  4222. //
  4223. this.locationPostion2182.BackColor = System.Drawing.Color.Transparent;
  4224. this.locationPostion2182.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2182.BackgroundImage")));
  4225. this.locationPostion2182.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4226. this.locationPostion2182.Dock = System.Windows.Forms.DockStyle.Fill;
  4227. this.locationPostion2182.Location = new System.Drawing.Point(798, 546);
  4228. this.locationPostion2182.Margin = new System.Windows.Forms.Padding(0);
  4229. this.locationPostion2182.Name = "locationPostion2182";
  4230. this.locationPostion2182.Size = new System.Drawing.Size(42, 39);
  4231. this.locationPostion2182.TabIndex = 149;
  4232. //
  4233. // locationPostion2183
  4234. //
  4235. this.locationPostion2183.BackColor = System.Drawing.Color.Transparent;
  4236. this.locationPostion2183.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2183.BackgroundImage")));
  4237. this.locationPostion2183.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4238. this.locationPostion2183.Dock = System.Windows.Forms.DockStyle.Fill;
  4239. this.locationPostion2183.Location = new System.Drawing.Point(210, 624);
  4240. this.locationPostion2183.Margin = new System.Windows.Forms.Padding(0);
  4241. this.locationPostion2183.Name = "locationPostion2183";
  4242. this.locationPostion2183.Size = new System.Drawing.Size(42, 39);
  4243. this.locationPostion2183.TabIndex = 150;
  4244. //
  4245. // locationPostion2184
  4246. //
  4247. this.locationPostion2184.BackColor = System.Drawing.Color.Transparent;
  4248. this.locationPostion2184.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2184.BackgroundImage")));
  4249. this.locationPostion2184.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4250. this.locationPostion2184.Dock = System.Windows.Forms.DockStyle.Fill;
  4251. this.locationPostion2184.Location = new System.Drawing.Point(252, 624);
  4252. this.locationPostion2184.Margin = new System.Windows.Forms.Padding(0);
  4253. this.locationPostion2184.Name = "locationPostion2184";
  4254. this.locationPostion2184.Size = new System.Drawing.Size(42, 39);
  4255. this.locationPostion2184.TabIndex = 151;
  4256. //
  4257. // locationPostion2185
  4258. //
  4259. this.locationPostion2185.BackColor = System.Drawing.Color.Transparent;
  4260. this.locationPostion2185.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2185.BackgroundImage")));
  4261. this.locationPostion2185.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4262. this.locationPostion2185.Dock = System.Windows.Forms.DockStyle.Fill;
  4263. this.locationPostion2185.Location = new System.Drawing.Point(294, 624);
  4264. this.locationPostion2185.Margin = new System.Windows.Forms.Padding(0);
  4265. this.locationPostion2185.Name = "locationPostion2185";
  4266. this.locationPostion2185.Size = new System.Drawing.Size(42, 39);
  4267. this.locationPostion2185.TabIndex = 152;
  4268. //
  4269. // locationPostion2186
  4270. //
  4271. this.locationPostion2186.BackColor = System.Drawing.Color.Transparent;
  4272. this.locationPostion2186.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2186.BackgroundImage")));
  4273. this.locationPostion2186.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4274. this.locationPostion2186.Dock = System.Windows.Forms.DockStyle.Fill;
  4275. this.locationPostion2186.Location = new System.Drawing.Point(336, 624);
  4276. this.locationPostion2186.Margin = new System.Windows.Forms.Padding(0);
  4277. this.locationPostion2186.Name = "locationPostion2186";
  4278. this.locationPostion2186.Size = new System.Drawing.Size(42, 39);
  4279. this.locationPostion2186.TabIndex = 153;
  4280. //
  4281. // locationPostion2187
  4282. //
  4283. this.locationPostion2187.BackColor = System.Drawing.Color.Transparent;
  4284. this.locationPostion2187.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2187.BackgroundImage")));
  4285. this.locationPostion2187.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4286. this.locationPostion2187.Dock = System.Windows.Forms.DockStyle.Fill;
  4287. this.locationPostion2187.Location = new System.Drawing.Point(378, 624);
  4288. this.locationPostion2187.Margin = new System.Windows.Forms.Padding(0);
  4289. this.locationPostion2187.Name = "locationPostion2187";
  4290. this.locationPostion2187.Size = new System.Drawing.Size(42, 39);
  4291. this.locationPostion2187.TabIndex = 154;
  4292. //
  4293. // locationPostion2188
  4294. //
  4295. this.locationPostion2188.BackColor = System.Drawing.Color.Transparent;
  4296. this.locationPostion2188.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2188.BackgroundImage")));
  4297. this.locationPostion2188.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4298. this.locationPostion2188.Dock = System.Windows.Forms.DockStyle.Fill;
  4299. this.locationPostion2188.Location = new System.Drawing.Point(420, 624);
  4300. this.locationPostion2188.Margin = new System.Windows.Forms.Padding(0);
  4301. this.locationPostion2188.Name = "locationPostion2188";
  4302. this.locationPostion2188.Size = new System.Drawing.Size(42, 39);
  4303. this.locationPostion2188.TabIndex = 155;
  4304. //
  4305. // locationPostion2189
  4306. //
  4307. this.locationPostion2189.BackColor = System.Drawing.Color.Transparent;
  4308. this.locationPostion2189.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2189.BackgroundImage")));
  4309. this.locationPostion2189.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4310. this.locationPostion2189.Dock = System.Windows.Forms.DockStyle.Fill;
  4311. this.locationPostion2189.Location = new System.Drawing.Point(462, 624);
  4312. this.locationPostion2189.Margin = new System.Windows.Forms.Padding(0);
  4313. this.locationPostion2189.Name = "locationPostion2189";
  4314. this.locationPostion2189.Size = new System.Drawing.Size(42, 39);
  4315. this.locationPostion2189.TabIndex = 156;
  4316. //
  4317. // locationPostion2190
  4318. //
  4319. this.locationPostion2190.BackColor = System.Drawing.Color.Transparent;
  4320. this.locationPostion2190.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2190.BackgroundImage")));
  4321. this.locationPostion2190.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4322. this.locationPostion2190.Dock = System.Windows.Forms.DockStyle.Fill;
  4323. this.locationPostion2190.Location = new System.Drawing.Point(504, 624);
  4324. this.locationPostion2190.Margin = new System.Windows.Forms.Padding(0);
  4325. this.locationPostion2190.Name = "locationPostion2190";
  4326. this.locationPostion2190.Size = new System.Drawing.Size(42, 39);
  4327. this.locationPostion2190.TabIndex = 157;
  4328. //
  4329. // locationPostion2191
  4330. //
  4331. this.locationPostion2191.BackColor = System.Drawing.Color.Transparent;
  4332. this.locationPostion2191.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2191.BackgroundImage")));
  4333. this.locationPostion2191.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4334. this.locationPostion2191.Dock = System.Windows.Forms.DockStyle.Fill;
  4335. this.locationPostion2191.Location = new System.Drawing.Point(546, 624);
  4336. this.locationPostion2191.Margin = new System.Windows.Forms.Padding(0);
  4337. this.locationPostion2191.Name = "locationPostion2191";
  4338. this.locationPostion2191.Size = new System.Drawing.Size(42, 39);
  4339. this.locationPostion2191.TabIndex = 158;
  4340. //
  4341. // locationPostion2192
  4342. //
  4343. this.locationPostion2192.BackColor = System.Drawing.Color.Transparent;
  4344. this.locationPostion2192.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2192.BackgroundImage")));
  4345. this.locationPostion2192.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4346. this.locationPostion2192.Dock = System.Windows.Forms.DockStyle.Fill;
  4347. this.locationPostion2192.Location = new System.Drawing.Point(588, 624);
  4348. this.locationPostion2192.Margin = new System.Windows.Forms.Padding(0);
  4349. this.locationPostion2192.Name = "locationPostion2192";
  4350. this.locationPostion2192.Size = new System.Drawing.Size(42, 39);
  4351. this.locationPostion2192.TabIndex = 159;
  4352. //
  4353. // locationPostion2193
  4354. //
  4355. this.locationPostion2193.BackColor = System.Drawing.Color.Transparent;
  4356. this.locationPostion2193.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2193.BackgroundImage")));
  4357. this.locationPostion2193.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4358. this.locationPostion2193.Dock = System.Windows.Forms.DockStyle.Fill;
  4359. this.locationPostion2193.Location = new System.Drawing.Point(630, 624);
  4360. this.locationPostion2193.Margin = new System.Windows.Forms.Padding(0);
  4361. this.locationPostion2193.Name = "locationPostion2193";
  4362. this.locationPostion2193.Size = new System.Drawing.Size(42, 39);
  4363. this.locationPostion2193.TabIndex = 160;
  4364. //
  4365. // locationPostion2194
  4366. //
  4367. this.locationPostion2194.BackColor = System.Drawing.Color.Transparent;
  4368. this.locationPostion2194.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2194.BackgroundImage")));
  4369. this.locationPostion2194.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4370. this.locationPostion2194.Dock = System.Windows.Forms.DockStyle.Fill;
  4371. this.locationPostion2194.Location = new System.Drawing.Point(672, 624);
  4372. this.locationPostion2194.Margin = new System.Windows.Forms.Padding(0);
  4373. this.locationPostion2194.Name = "locationPostion2194";
  4374. this.locationPostion2194.Size = new System.Drawing.Size(42, 39);
  4375. this.locationPostion2194.TabIndex = 161;
  4376. //
  4377. // locationPostion2195
  4378. //
  4379. this.locationPostion2195.BackColor = System.Drawing.Color.Transparent;
  4380. this.locationPostion2195.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2195.BackgroundImage")));
  4381. this.locationPostion2195.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4382. this.locationPostion2195.Dock = System.Windows.Forms.DockStyle.Fill;
  4383. this.locationPostion2195.Location = new System.Drawing.Point(714, 624);
  4384. this.locationPostion2195.Margin = new System.Windows.Forms.Padding(0);
  4385. this.locationPostion2195.Name = "locationPostion2195";
  4386. this.locationPostion2195.Size = new System.Drawing.Size(42, 39);
  4387. this.locationPostion2195.TabIndex = 162;
  4388. //
  4389. // locationPostion2196
  4390. //
  4391. this.locationPostion2196.BackColor = System.Drawing.Color.Transparent;
  4392. this.locationPostion2196.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2196.BackgroundImage")));
  4393. this.locationPostion2196.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4394. this.locationPostion2196.Dock = System.Windows.Forms.DockStyle.Fill;
  4395. this.locationPostion2196.Location = new System.Drawing.Point(756, 624);
  4396. this.locationPostion2196.Margin = new System.Windows.Forms.Padding(0);
  4397. this.locationPostion2196.Name = "locationPostion2196";
  4398. this.locationPostion2196.Size = new System.Drawing.Size(42, 39);
  4399. this.locationPostion2196.TabIndex = 163;
  4400. //
  4401. // locationPostion2197
  4402. //
  4403. this.locationPostion2197.BackColor = System.Drawing.Color.Transparent;
  4404. this.locationPostion2197.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2197.BackgroundImage")));
  4405. this.locationPostion2197.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4406. this.locationPostion2197.Dock = System.Windows.Forms.DockStyle.Fill;
  4407. this.locationPostion2197.Location = new System.Drawing.Point(798, 624);
  4408. this.locationPostion2197.Margin = new System.Windows.Forms.Padding(0);
  4409. this.locationPostion2197.Name = "locationPostion2197";
  4410. this.locationPostion2197.Size = new System.Drawing.Size(42, 39);
  4411. this.locationPostion2197.TabIndex = 164;
  4412. //
  4413. // locationPostion2198
  4414. //
  4415. this.locationPostion2198.BackColor = System.Drawing.Color.Transparent;
  4416. this.locationPostion2198.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("locationPostion2198.BackgroundImage")));
  4417. this.locationPostion2198.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4418. this.locationPostion2198.Dock = System.Windows.Forms.DockStyle.Fill;
  4419. this.locationPostion2198.Location = new System.Drawing.Point(840, 624);
  4420. this.locationPostion2198.Margin = new System.Windows.Forms.Padding(0);
  4421. this.locationPostion2198.Name = "locationPostion2198";
  4422. this.locationPostion2198.Size = new System.Drawing.Size(42, 39);
  4423. this.locationPostion2198.TabIndex = 165;
  4424. //
  4425. // tableCellLabel220
  4426. //
  4427. this.tableCellLabel220.BackColor = System.Drawing.Color.Transparent;
  4428. this.tableCellLabel220.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel220.BackgroundImage")));
  4429. this.tableCellLabel220.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  4430. this.tableLayoutPanel1.SetColumnSpan(this.tableCellLabel220, 7);
  4431. this.tableCellLabel220.Dock = System.Windows.Forms.DockStyle.Fill;
  4432. this.tableCellLabel220.Location = new System.Drawing.Point(210, 585);
  4433. this.tableCellLabel220.Margin = new System.Windows.Forms.Padding(0);
  4434. this.tableCellLabel220.Name = "tableCellLabel220";
  4435. this.tableCellLabel220.Size = new System.Drawing.Size(294, 39);
  4436. this.tableCellLabel220.TabIndex = 166;
  4437. //
  4438. // tableCellLabel221
  4439. //
  4440. this.tableCellLabel221.BackColor = System.Drawing.Color.Transparent;
  4441. this.tableCellLabel221.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel221.BackgroundImage")));
  4442. this.tableCellLabel221.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  4443. this.tableLayoutPanel1.SetColumnSpan(this.tableCellLabel221, 7);
  4444. this.tableCellLabel221.Dock = System.Windows.Forms.DockStyle.Fill;
  4445. this.tableCellLabel221.Location = new System.Drawing.Point(588, 585);
  4446. this.tableCellLabel221.Margin = new System.Windows.Forms.Padding(0);
  4447. this.tableCellLabel221.Name = "tableCellLabel221";
  4448. this.tableCellLabel221.Size = new System.Drawing.Size(294, 39);
  4449. this.tableCellLabel221.TabIndex = 167;
  4450. //
  4451. // srm011
  4452. //
  4453. this.srm011.BackColor = System.Drawing.Color.Transparent;
  4454. this.srm011.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4455. this.tableLayoutPanel1.SetColumnSpan(this.srm011, 2);
  4456. this.srm011.Dock = System.Windows.Forms.DockStyle.Fill;
  4457. this.srm011.Location = new System.Drawing.Point(504, 585);
  4458. this.srm011.Margin = new System.Windows.Forms.Padding(0);
  4459. this.srm011.Name = "srm011";
  4460. this.srm011.Size = new System.Drawing.Size(84, 39);
  4461. this.srm011.TabIndex = 168;
  4462. //
  4463. // conveyor_1080
  4464. //
  4465. this.conveyor_1080.BackColor = System.Drawing.Color.Transparent;
  4466. this.conveyor_1080.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4467. this.tableLayoutPanel1.SetColumnSpan(this.conveyor_1080, 2);
  4468. this.conveyor_1080.Dock = System.Windows.Forms.DockStyle.Fill;
  4469. this.conveyor_1080.Location = new System.Drawing.Point(126, 234);
  4470. this.conveyor_1080.Margin = new System.Windows.Forms.Padding(0);
  4471. this.conveyor_1080.Name = "conveyor_1080";
  4472. this.conveyor_1080.Size = new System.Drawing.Size(84, 39);
  4473. this.conveyor_1080.TabIndex = 169;
  4474. //
  4475. // conveyor_1082
  4476. //
  4477. this.conveyor_1082.BackColor = System.Drawing.Color.Transparent;
  4478. this.conveyor_1082.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4479. this.tableLayoutPanel1.SetColumnSpan(this.conveyor_1082, 2);
  4480. this.conveyor_1082.Dock = System.Windows.Forms.DockStyle.Fill;
  4481. this.conveyor_1082.Location = new System.Drawing.Point(126, 390);
  4482. this.conveyor_1082.Margin = new System.Windows.Forms.Padding(0);
  4483. this.conveyor_1082.Name = "conveyor_1082";
  4484. this.conveyor_1082.Size = new System.Drawing.Size(84, 39);
  4485. this.conveyor_1082.TabIndex = 170;
  4486. //
  4487. // conveyor_1084
  4488. //
  4489. this.conveyor_1084.BackColor = System.Drawing.Color.Transparent;
  4490. this.conveyor_1084.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4491. this.tableLayoutPanel1.SetColumnSpan(this.conveyor_1084, 2);
  4492. this.conveyor_1084.Dock = System.Windows.Forms.DockStyle.Fill;
  4493. this.conveyor_1084.Location = new System.Drawing.Point(126, 546);
  4494. this.conveyor_1084.Margin = new System.Windows.Forms.Padding(0);
  4495. this.conveyor_1084.Name = "conveyor_1084";
  4496. this.conveyor_1084.Size = new System.Drawing.Size(84, 39);
  4497. this.conveyor_1084.TabIndex = 171;
  4498. //
  4499. // conveyor_1103
  4500. //
  4501. this.conveyor_1103.BackColor = System.Drawing.Color.Transparent;
  4502. this.conveyor_1103.Dock = System.Windows.Forms.DockStyle.Fill;
  4503. this.conveyor_1103.Location = new System.Drawing.Point(1, 235);
  4504. this.conveyor_1103.Margin = new System.Windows.Forms.Padding(1);
  4505. this.conveyor_1103.Name = "conveyor_1103";
  4506. this.conveyor_1103.Size = new System.Drawing.Size(40, 37);
  4507. this.conveyor_1103.TabIndex = 172;
  4508. //
  4509. // conveyor_1091
  4510. //
  4511. this.conveyor_1091.BackColor = System.Drawing.Color.Transparent;
  4512. this.conveyor_1091.Dock = System.Windows.Forms.DockStyle.Fill;
  4513. this.conveyor_1091.Location = new System.Drawing.Point(43, 235);
  4514. this.conveyor_1091.Margin = new System.Windows.Forms.Padding(1);
  4515. this.conveyor_1091.Name = "conveyor_1091";
  4516. this.conveyor_1091.Size = new System.Drawing.Size(40, 37);
  4517. this.conveyor_1091.TabIndex = 173;
  4518. //
  4519. // conveyor_1120
  4520. //
  4521. this.conveyor_1120.BackColor = System.Drawing.Color.Transparent;
  4522. this.conveyor_1120.Dock = System.Windows.Forms.DockStyle.Fill;
  4523. this.conveyor_1120.Location = new System.Drawing.Point(966, 468);
  4524. this.conveyor_1120.Margin = new System.Windows.Forms.Padding(0);
  4525. this.conveyor_1120.Name = "conveyor_1120";
  4526. this.conveyor_1120.Size = new System.Drawing.Size(42, 39);
  4527. this.conveyor_1120.TabIndex = 174;
  4528. //
  4529. // conveyor_1126
  4530. //
  4531. this.conveyor_1126.BackColor = System.Drawing.Color.Transparent;
  4532. this.conveyor_1126.Dock = System.Windows.Forms.DockStyle.Fill;
  4533. this.conveyor_1126.Location = new System.Drawing.Point(1050, 546);
  4534. this.conveyor_1126.Margin = new System.Windows.Forms.Padding(0);
  4535. this.conveyor_1126.Name = "conveyor_1126";
  4536. this.conveyor_1126.Size = new System.Drawing.Size(42, 39);
  4537. this.conveyor_1126.TabIndex = 175;
  4538. //
  4539. // conveyor_1127
  4540. //
  4541. this.conveyor_1127.BackColor = System.Drawing.Color.Transparent;
  4542. this.conveyor_1127.Dock = System.Windows.Forms.DockStyle.Fill;
  4543. this.conveyor_1127.Location = new System.Drawing.Point(1092, 546);
  4544. this.conveyor_1127.Margin = new System.Windows.Forms.Padding(0);
  4545. this.conveyor_1127.Name = "conveyor_1127";
  4546. this.conveyor_1127.Size = new System.Drawing.Size(42, 39);
  4547. this.conveyor_1127.TabIndex = 176;
  4548. //
  4549. // conveyor_1128
  4550. //
  4551. this.conveyor_1128.BackColor = System.Drawing.Color.Transparent;
  4552. this.conveyor_1128.Dock = System.Windows.Forms.DockStyle.Fill;
  4553. this.conveyor_1128.Location = new System.Drawing.Point(1134, 546);
  4554. this.conveyor_1128.Margin = new System.Windows.Forms.Padding(0);
  4555. this.conveyor_1128.Name = "conveyor_1128";
  4556. this.conveyor_1128.Size = new System.Drawing.Size(42, 39);
  4557. this.conveyor_1128.TabIndex = 177;
  4558. //
  4559. // conveyor_1129
  4560. //
  4561. this.conveyor_1129.BackColor = System.Drawing.Color.Transparent;
  4562. this.tableLayoutPanel1.SetColumnSpan(this.conveyor_1129, 2);
  4563. this.conveyor_1129.Dock = System.Windows.Forms.DockStyle.Fill;
  4564. this.conveyor_1129.Location = new System.Drawing.Point(1218, 546);
  4565. this.conveyor_1129.Margin = new System.Windows.Forms.Padding(0);
  4566. this.conveyor_1129.Name = "conveyor_1129";
  4567. this.conveyor_1129.Size = new System.Drawing.Size(83, 39);
  4568. this.conveyor_1129.TabIndex = 178;
  4569. //
  4570. // conveyor_1114
  4571. //
  4572. this.conveyor_1114.BackColor = System.Drawing.Color.Transparent;
  4573. this.conveyor_1114.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4574. this.conveyor_1114.Dock = System.Windows.Forms.DockStyle.Fill;
  4575. this.conveyor_1114.Location = new System.Drawing.Point(1218, 429);
  4576. this.conveyor_1114.Margin = new System.Windows.Forms.Padding(0);
  4577. this.conveyor_1114.Name = "conveyor_1114";
  4578. this.conveyor_1114.Size = new System.Drawing.Size(42, 39);
  4579. this.conveyor_1114.TabIndex = 180;
  4580. //
  4581. // Form_Monitior
  4582. //
  4583. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  4584. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  4585. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(144)))), ((int)(((byte)(154)))));
  4586. this.ClientSize = new System.Drawing.Size(1356, 810);
  4587. this.Controls.Add(this.tabControl1);
  4588. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  4589. this.Margin = new System.Windows.Forms.Padding(2);
  4590. this.Name = "Form_Monitior";
  4591. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  4592. this.Text = "立体库托盘物流监控";
  4593. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  4594. this.Load += new System.EventHandler(this.Form_Monitior_Load);
  4595. this.tabControl1.ResumeLayout(false);
  4596. this.tabPage1.ResumeLayout(false);
  4597. this.myTableLayoutPanel1.ResumeLayout(false);
  4598. this.myTableLayoutPanel2.ResumeLayout(false);
  4599. this.tabPage2.ResumeLayout(false);
  4600. this.tableLayoutPanel1.ResumeLayout(false);
  4601. this.ResumeLayout(false);
  4602. }
  4603. #endregion
  4604. private System.Windows.Forms.TabControl tabControl1;
  4605. private System.Windows.Forms.TabPage tabPage1;
  4606. private System.Windows.Forms.TabPage tabPage2;
  4607. private MyTableLayoutPanel myTableLayoutPanel1;
  4608. private From_Montior.Conveyor3 conveyor_1018;
  4609. private From_Montior.Conveyor3 conveyor_1048;
  4610. private From_Montior.Conveyor3 conveyor_1017;
  4611. private From_Montior.Conveyor3 conveyor_1015;
  4612. private From_Montior.Conveyor3 conveyor_1036;
  4613. private From_Montior.Conveyor3 conveyor_1037;
  4614. private From_Montior.Conveyor3 conveyor_1039;
  4615. private From_Montior.Conveyor3 conveyor_1040;
  4616. private From_Montior.Conveyor3 conveyor_1038;
  4617. private MyTableLayoutPanel myTableLayoutPanel2;
  4618. private From_Montior.Conveyor_R conveyor_1032;
  4619. private From_Montior.Conveyor_R conveyor_1035;
  4620. private System.Windows.Forms.Button button1;
  4621. private System.Windows.Forms.Button button2;
  4622. private From_Montior.Conveyor4_left conveyor_1001;
  4623. private From_Montior.Conveyor4_left conveyor_1003;
  4624. private From_Montior.Conveyor4_left conveyor_1005;
  4625. private From_Montior.Conveyor conveyor_1041;
  4626. private From_Montior.Conveyor5 conveyor_1116;
  4627. private From_Montior.Conveyor4_left conveyor_1051;
  4628. private From_Montior.Conveyor4_left conveyor_1053;
  4629. private From_Montior.Conveyor4_left conveyor_1055;
  4630. private From_Montior.Conveyor conveyor_1062;
  4631. private From_Montior.Conveyor conveyor_1063;
  4632. private From_Montior.Conveyor conveyor_1064;
  4633. private From_Montior.Conveyor conveyor_1065;
  4634. private From_Montior.Conveyor conveyor_1066;
  4635. private From_Montior.Conveyor conveyor_1067;
  4636. private From_Montior.Conveyor conveyor_1068;
  4637. private From_Montior.Conveyor conveyor_1069;
  4638. private From_Montior.Conveyor conveyor_1070;
  4639. private From_Montior.Conveyor conveyor_1071;
  4640. private From_Montior.Conveyor conveyor_1072;
  4641. private From_Montior.TableCellLabel2 tableCellLabel27;
  4642. private TableCellLabel tableCellLabel1;
  4643. private From_Montior.Rgv rgv02;
  4644. private TableCellLabel tableCellLabel12;
  4645. private TableCellLabel tableCellLabel15;
  4646. private TableCellLabel tableCellLabel18;
  4647. private From_Montior.Rgv rgv03;
  4648. private From_Montior.Conveyor6 conveyor_1138;
  4649. private From_Montior.Conveyor3 conveyor_1139;
  4650. private From_Montior.Conveyor5 conveyor_1112;
  4651. private From_Montior.Conveyor conveyor_1111;
  4652. private From_Montior.Conveyor conveyor_1110;
  4653. private From_Montior.Conveyor3_B conveyor_1021;
  4654. private From_Montior.Conveyor3_B conveyor_1022;
  4655. private From_Montior.Conveyor3_B conveyor3_1027;
  4656. private From_Montior.Conveyor_R conveyor_1029;
  4657. private From_Montior.Conveyor_R conveyor_1030;
  4658. private From_Montior.Conveyor_R conveyor_1031;
  4659. private From_Montior.Conveyor_R conveyor_1033;
  4660. private From_Montior.Conveyor_L conveyor_1013;
  4661. private From_Montior.Conveyor_L conveyor_1012;
  4662. private From_Montior.Conveyor_L conveyor_1011;
  4663. private From_Montior.Conveyor_L conveyor_1046;
  4664. private From_Montior.Conveyor_L conveyor_1019;
  4665. private From_Montior.Conveyor4_L_R conveyor_1061;
  4666. private From_Montior.Conveyor4_right conveyor_1050;
  4667. private From_Montior.Conveyor4_right conveyor_1052;
  4668. private From_Montior.Conveyor4_right conveyor_1054;
  4669. private From_Montior.Conveyor4_right conveyor_1002;
  4670. private From_Montior.Conveyor4_right conveyor_1004;
  4671. private From_Montior.Conveyor4_right conveyor_1006;
  4672. private From_Montior.Conveyor4_L_R conveyor_1118;
  4673. private From_Montior.Conveyor4_L_R conveyor_1115;
  4674. private From_Montior.LocationPostion2 locationPostion21;
  4675. private From_Montior.LocationPostion2 locationPostion22;
  4676. private From_Montior.LocationPostion2 locationPostion23;
  4677. private From_Montior.LocationPostion2 locationPostion24;
  4678. private From_Montior.LocationPostion2 locationPostion25;
  4679. private From_Montior.LocationPostion2 locationPostion26;
  4680. private From_Montior.LocationPostion2 locationPostion27;
  4681. private From_Montior.LocationPostion2 locationPostion28;
  4682. private From_Montior.LocationPostion2 locationPostion29;
  4683. private From_Montior.LocationPostion2 locationPostion210;
  4684. private From_Montior.LocationPostion2 locationPostion211;
  4685. private From_Montior.LocationPostion2 locationPostion212;
  4686. private From_Montior.LocationPostion2 locationPostion213;
  4687. private From_Montior.LocationPostion2 locationPostion214;
  4688. private From_Montior.LocationPostion2 locationPostion215;
  4689. private From_Montior.LocationPostion2 locationPostion216;
  4690. private From_Montior.LocationPostion2 locationPostion217;
  4691. private From_Montior.TableCellLabel2 tableCellLabel210;
  4692. private From_Montior.Srm3 srm03;
  4693. private From_Montior.TableCellLabel2 tableCellLabel211;
  4694. private From_Montior.TableCellLabel2 tableCellLabel212;
  4695. private From_Montior.TableCellLabel2 tableCellLabel213;
  4696. private From_Montior.Srm3 srm02;
  4697. private From_Montior.TableCellLabel2 tableCellLabel214;
  4698. private From_Montior.TableCellLabel2 tableCellLabel215;
  4699. private From_Montior.Srm3 srm01;
  4700. private From_Montior.LocationPostion2 locationPostion218;
  4701. private From_Montior.LocationPostion2 locationPostion219;
  4702. private From_Montior.LocationPostion2 locationPostion220;
  4703. private From_Montior.LocationPostion2 locationPostion221;
  4704. private From_Montior.LocationPostion2 locationPostion222;
  4705. private From_Montior.LocationPostion2 locationPostion223;
  4706. private From_Montior.LocationPostion2 locationPostion224;
  4707. private From_Montior.LocationPostion2 locationPostion225;
  4708. private From_Montior.LocationPostion2 locationPostion226;
  4709. private From_Montior.LocationPostion2 locationPostion227;
  4710. private From_Montior.LocationPostion2 locationPostion228;
  4711. private From_Montior.LocationPostion2 locationPostion229;
  4712. private From_Montior.LocationPostion2 locationPostion230;
  4713. private From_Montior.LocationPostion2 locationPostion231;
  4714. private From_Montior.LocationPostion2 locationPostion232;
  4715. private From_Montior.LocationPostion2 locationPostion233;
  4716. private From_Montior.LocationPostion2 locationPostion234;
  4717. private From_Montior.LocationPostion2 locationPostion235;
  4718. private From_Montior.LocationPostion2 locationPostion236;
  4719. private From_Montior.LocationPostion2 locationPostion237;
  4720. private From_Montior.LocationPostion2 locationPostion238;
  4721. private From_Montior.LocationPostion2 locationPostion239;
  4722. private From_Montior.LocationPostion2 locationPostion240;
  4723. private From_Montior.LocationPostion2 locationPostion241;
  4724. private From_Montior.LocationPostion2 locationPostion242;
  4725. private From_Montior.LocationPostion2 locationPostion243;
  4726. private From_Montior.LocationPostion2 locationPostion244;
  4727. private From_Montior.LocationPostion2 locationPostion245;
  4728. private From_Montior.LocationPostion2 locationPostion246;
  4729. private From_Montior.LocationPostion2 locationPostion247;
  4730. private From_Montior.LocationPostion2 locationPostion248;
  4731. private From_Montior.LocationPostion2 locationPostion249;
  4732. private From_Montior.LocationPostion2 locationPostion250;
  4733. private From_Montior.LocationPostion2 locationPostion251;
  4734. private From_Montior.LocationPostion2 locationPostion252;
  4735. private From_Montior.LocationPostion2 locationPostion253;
  4736. private From_Montior.LocationPostion2 locationPostion254;
  4737. private From_Montior.LocationPostion2 locationPostion255;
  4738. private From_Montior.LocationPostion2 locationPostion256;
  4739. private From_Montior.LocationPostion2 locationPostion257;
  4740. private From_Montior.LocationPostion2 locationPostion258;
  4741. private From_Montior.LocationPostion2 locationPostion259;
  4742. private From_Montior.LocationPostion2 locationPostion260;
  4743. private From_Montior.LocationPostion2 locationPostion261;
  4744. private From_Montior.LocationPostion2 locationPostion262;
  4745. private From_Montior.LocationPostion2 locationPostion263;
  4746. private From_Montior.LocationPostion2 locationPostion264;
  4747. private From_Montior.LocationPostion2 locationPostion265;
  4748. private From_Montior.LocationPostion2 locationPostion266;
  4749. private From_Montior.LocationPostion2 locationPostion267;
  4750. private From_Montior.LocationPostion2 locationPostion268;
  4751. private From_Montior.LocationPostion2 locationPostion269;
  4752. private From_Montior.LocationPostion2 locationPostion270;
  4753. private From_Montior.LocationPostion2 locationPostion271;
  4754. private From_Montior.LocationPostion2 locationPostion272;
  4755. private From_Montior.LocationPostion2 locationPostion273;
  4756. private From_Montior.LocationPostion2 locationPostion274;
  4757. private From_Montior.LocationPostion2 locationPostion275;
  4758. private From_Montior.LocationPostion2 locationPostion276;
  4759. private From_Montior.LocationPostion2 locationPostion277;
  4760. private From_Montior.LocationPostion2 locationPostion278;
  4761. private From_Montior.LocationPostion2 locationPostion279;
  4762. private From_Montior.LocationPostion2 locationPostion280;
  4763. private From_Montior.LocationPostion2 locationPostion281;
  4764. private From_Montior.LocationPostion2 locationPostion282;
  4765. private From_Montior.LocationPostion2 locationPostion283;
  4766. private From_Montior.LocationPostion2 locationPostion284;
  4767. private From_Montior.LocationPostion2 locationPostion285;
  4768. private From_Montior.LocationPostion2 locationPostion286;
  4769. private From_Montior.LocationPostion2 locationPostion287;
  4770. private From_Montior.LocationPostion2 locationPostion288;
  4771. private From_Montior.LocationPostion2 locationPostion289;
  4772. private From_Montior.LocationPostion2 locationPostion290;
  4773. private From_Montior.LocationPostion2 locationPostion291;
  4774. private From_Montior.LocationPostion2 locationPostion292;
  4775. private From_Montior.LocationPostion2 locationPostion293;
  4776. private From_Montior.LocationPostion2 locationPostion294;
  4777. private From_Montior.LocationPostion2 locationPostion295;
  4778. private From_Montior.LocationPostion2 locationPostion296;
  4779. private From_Montior.LocationPostion2 locationPostion297;
  4780. private From_Montior.LocationPostion2 locationPostion298;
  4781. private From_Montior.LocationPostion2 locationPostion299;
  4782. private From_Montior.LocationPostion2 locationPostion2100;
  4783. private From_Montior.LocationPostion2 locationPostion2101;
  4784. private From_Montior.LocationPostion2 locationPostion2102;
  4785. private MyTableLayoutPanel tableLayoutPanel1;
  4786. private TableCellLabel tableCellLabel16;
  4787. private From_Montior.Conveyor conveyor_1090;
  4788. private From_Montior.Conveyor conveyor_1092;
  4789. private From_Montior.Conveyor conveyor_1093;
  4790. private From_Montior.Conveyor conveyor_1094;
  4791. private From_Montior.Conveyor conveyor_1095;
  4792. private From_Montior.Conveyor conveyor_1096;
  4793. private From_Montior.Conveyor conveyor_1097;
  4794. private From_Montior.Conveyor conveyor_1098;
  4795. private From_Montior.Conveyor conveyor_1099;
  4796. private From_Montior.Conveyor conveyor_1100;
  4797. private From_Montior.Conveyor conveyor_1101;
  4798. private From_Montior.Conveyor conveyor_1102;
  4799. private From_Montior.Rgv rgv04;
  4800. private TableCellLabel tableCellLabel41;
  4801. private From_Montior.Conveyor4_left conveyor_1081;
  4802. private From_Montior.Conveyor4_left conveyor_1083;
  4803. private From_Montior.Conveyor4_left conveyor_1085;
  4804. private From_Montior.Conveyor5 conveyor2_1116;
  4805. private From_Montior.Conveyor conveyor_1121;
  4806. private From_Montior.Conveyor3 conveyor_1123;
  4807. private From_Montior.Conveyor3 conveyor_1124;
  4808. private From_Montior.Conveyor conveyor_1130;
  4809. private From_Montior.Conveyor3 conveyor_1132;
  4810. private From_Montior.Conveyor3 conveyor_1133;
  4811. private From_Montior.Conveyor3 conveyor_1134;
  4812. private From_Montior.Conveyor3 conveyor_1136;
  4813. private From_Montior.Conveyor6 conveyor_1137;
  4814. private From_Montior.Conveyor5 conveyor2_1114;
  4815. private From_Montior.LocationPostion2 locationPostion2103;
  4816. private From_Montior.LocationPostion2 locationPostion2104;
  4817. private From_Montior.LocationPostion2 locationPostion2105;
  4818. private From_Montior.LocationPostion2 locationPostion2106;
  4819. private From_Montior.LocationPostion2 locationPostion2107;
  4820. private From_Montior.LocationPostion2 locationPostion2108;
  4821. private From_Montior.LocationPostion2 locationPostion2109;
  4822. private From_Montior.LocationPostion2 locationPostion2110;
  4823. private From_Montior.LocationPostion2 locationPostion2111;
  4824. private From_Montior.LocationPostion2 locationPostion2112;
  4825. private From_Montior.LocationPostion2 locationPostion2113;
  4826. private From_Montior.LocationPostion2 locationPostion2114;
  4827. private From_Montior.LocationPostion2 locationPostion2115;
  4828. private From_Montior.LocationPostion2 locationPostion2116;
  4829. private From_Montior.LocationPostion2 locationPostion2117;
  4830. private From_Montior.LocationPostion2 locationPostion2118;
  4831. private From_Montior.Srm3 srm033;
  4832. private From_Montior.TableCellLabel2 tableCellLabel216;
  4833. private From_Montior.TableCellLabel2 tableCellLabel217;
  4834. private From_Montior.LocationPostion2 locationPostion2119;
  4835. private From_Montior.LocationPostion2 locationPostion2120;
  4836. private From_Montior.LocationPostion2 locationPostion2121;
  4837. private From_Montior.LocationPostion2 locationPostion2122;
  4838. private From_Montior.LocationPostion2 locationPostion2123;
  4839. private From_Montior.LocationPostion2 locationPostion2124;
  4840. private From_Montior.LocationPostion2 locationPostion2125;
  4841. private From_Montior.LocationPostion2 locationPostion2126;
  4842. private From_Montior.LocationPostion2 locationPostion2127;
  4843. private From_Montior.LocationPostion2 locationPostion2128;
  4844. private From_Montior.LocationPostion2 locationPostion2129;
  4845. private From_Montior.LocationPostion2 locationPostion2130;
  4846. private From_Montior.LocationPostion2 locationPostion2131;
  4847. private From_Montior.LocationPostion2 locationPostion2132;
  4848. private From_Montior.LocationPostion2 locationPostion2133;
  4849. private From_Montior.LocationPostion2 locationPostion2134;
  4850. private From_Montior.LocationPostion2 locationPostion2135;
  4851. private From_Montior.LocationPostion2 locationPostion2136;
  4852. private From_Montior.LocationPostion2 locationPostion2137;
  4853. private From_Montior.LocationPostion2 locationPostion2138;
  4854. private From_Montior.LocationPostion2 locationPostion2139;
  4855. private From_Montior.LocationPostion2 locationPostion2140;
  4856. private From_Montior.LocationPostion2 locationPostion2141;
  4857. private From_Montior.LocationPostion2 locationPostion2142;
  4858. private From_Montior.LocationPostion2 locationPostion2143;
  4859. private From_Montior.LocationPostion2 locationPostion2144;
  4860. private From_Montior.LocationPostion2 locationPostion2145;
  4861. private From_Montior.LocationPostion2 locationPostion2146;
  4862. private From_Montior.LocationPostion2 locationPostion2147;
  4863. private From_Montior.LocationPostion2 locationPostion2148;
  4864. private From_Montior.LocationPostion2 locationPostion2149;
  4865. private From_Montior.LocationPostion2 locationPostion2150;
  4866. private From_Montior.LocationPostion2 locationPostion2151;
  4867. private From_Montior.LocationPostion2 locationPostion2152;
  4868. private From_Montior.LocationPostion2 locationPostion2153;
  4869. private From_Montior.LocationPostion2 locationPostion2154;
  4870. private From_Montior.LocationPostion2 locationPostion2155;
  4871. private From_Montior.LocationPostion2 locationPostion2156;
  4872. private From_Montior.LocationPostion2 locationPostion2157;
  4873. private From_Montior.LocationPostion2 locationPostion2158;
  4874. private From_Montior.LocationPostion2 locationPostion2159;
  4875. private From_Montior.LocationPostion2 locationPostion2160;
  4876. private From_Montior.LocationPostion2 locationPostion2161;
  4877. private From_Montior.LocationPostion2 locationPostion2162;
  4878. private From_Montior.LocationPostion2 locationPostion2163;
  4879. private From_Montior.LocationPostion2 locationPostion2164;
  4880. private From_Montior.LocationPostion2 locationPostion2165;
  4881. private From_Montior.LocationPostion2 locationPostion2166;
  4882. private From_Montior.TableCellLabel2 tableCellLabel218;
  4883. private From_Montior.TableCellLabel2 tableCellLabel219;
  4884. private From_Montior.Srm3 srm022;
  4885. private From_Montior.LocationPostion2 locationPostion2167;
  4886. private From_Montior.LocationPostion2 locationPostion2168;
  4887. private From_Montior.LocationPostion2 locationPostion2169;
  4888. private From_Montior.LocationPostion2 locationPostion2170;
  4889. private From_Montior.LocationPostion2 locationPostion2171;
  4890. private From_Montior.LocationPostion2 locationPostion2172;
  4891. private From_Montior.LocationPostion2 locationPostion2173;
  4892. private From_Montior.LocationPostion2 locationPostion2174;
  4893. private From_Montior.LocationPostion2 locationPostion2175;
  4894. private From_Montior.LocationPostion2 locationPostion2176;
  4895. private From_Montior.LocationPostion2 locationPostion2177;
  4896. private From_Montior.LocationPostion2 locationPostion2178;
  4897. private From_Montior.LocationPostion2 locationPostion2179;
  4898. private From_Montior.LocationPostion2 locationPostion2180;
  4899. private From_Montior.LocationPostion2 locationPostion2181;
  4900. private From_Montior.LocationPostion2 locationPostion2182;
  4901. private From_Montior.LocationPostion2 locationPostion2183;
  4902. private From_Montior.LocationPostion2 locationPostion2184;
  4903. private From_Montior.LocationPostion2 locationPostion2185;
  4904. private From_Montior.LocationPostion2 locationPostion2186;
  4905. private From_Montior.LocationPostion2 locationPostion2187;
  4906. private From_Montior.LocationPostion2 locationPostion2188;
  4907. private From_Montior.LocationPostion2 locationPostion2189;
  4908. private From_Montior.LocationPostion2 locationPostion2190;
  4909. private From_Montior.LocationPostion2 locationPostion2191;
  4910. private From_Montior.LocationPostion2 locationPostion2192;
  4911. private From_Montior.LocationPostion2 locationPostion2193;
  4912. private From_Montior.LocationPostion2 locationPostion2194;
  4913. private From_Montior.LocationPostion2 locationPostion2195;
  4914. private From_Montior.LocationPostion2 locationPostion2196;
  4915. private From_Montior.LocationPostion2 locationPostion2197;
  4916. private From_Montior.LocationPostion2 locationPostion2198;
  4917. private From_Montior.TableCellLabel2 tableCellLabel220;
  4918. private From_Montior.TableCellLabel2 tableCellLabel221;
  4919. private From_Montior.Srm3 srm011;
  4920. private From_Montior.Conveyor4_right conveyor_1080;
  4921. private From_Montior.Conveyor4_right conveyor_1082;
  4922. private From_Montior.Conveyor4_right conveyor_1084;
  4923. private From_Montior.Conveyor4_L_R conveyor_1103;
  4924. private From_Montior.Conveyor4_L_R conveyor_1091;
  4925. private From_Montior.Conveyor4_L_R conveyor_1120;
  4926. private From_Montior.Conveyor4_L_R conveyor_1126;
  4927. private From_Montior.Conveyor4_L_R conveyor_1127;
  4928. private From_Montior.Conveyor4_L_R conveyor_1128;
  4929. private From_Montior.Conveyor4_L_R conveyor_1129;
  4930. private From_Montior.Conveyor conveyor_1114;
  4931. private From_Montior.Conveyor4_L_R conveyor_1044;
  4932. private From_Montior.TableCellLabel2 tableCellLabel23;
  4933. private From_Montior.Rgv02 rgv01;
  4934. }
  4935. }