EnityButton.Data 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911
  1. [
  2. {
  3. "Name":"V0--Btn6",
  4. "MouseDownActionList":[
  5. {
  6. "ID":"01",
  7. "ChangeObje":null,
  8. "SourceID":"cb2687fd-931a-4b38-a76d-9c3ea171b8d8",
  9. "isConditionStart":false,
  10. "isConditionEnd":false,
  11. "IsCondition":false,
  12. "Condition":"Show",
  13. "CmdID":null,
  14. "Action":"显示",
  15. "Parameter":null,
  16. "Level":"",
  17. "Parent":null,
  18. "TempParent":null,
  19. "TempID":"",
  20. "ActionType":3,
  21. "SerialNumber":"01"
  22. }
  23. ],
  24. "MouserUpActionList":[
  25. ],
  26. "ButtonType":1,
  27. "Text":"",
  28. "BackIconObjID":"34",
  29. "BackIcon":"34.png",
  30. "ActionIconObjID":"29",
  31. "ActionIcon":"29.png",
  32. "BrackgroupStr":"#FF808080",
  33. "ForegroundStr":"#FF000000",
  34. "FontSize":12,
  35. "State":0,
  36. "IsPanel":false,
  37. "EnityName":"Button",
  38. "IsPressDown":false,
  39. "StateLocke":false,
  40. "ActionType":2,
  41. "Code":"e41b701d-4011-41b5-8207-c58f5fc72752",
  42. "ID":"e41b701d-4011-41b5-8207-c58f5fc72752",
  43. "Left":153,
  44. "Top":728,
  45. "Width":77,
  46. "Height":37,
  47. "ZIndex":400,
  48. "GroupNumber":"1",
  49. "IsRunVisiable":true,
  50. "IsVisibility":true,
  51. "isSyn":true,
  52. "WindowID":"64a2f252-370a-4bc6-a817-3397f8abb4dc",
  53. "PanelID":null,
  54. "IsLock":false,
  55. "IsWindow":false
  56. },
  57. {
  58. "Name":"V0--Btn12",
  59. "MouseDownActionList":[
  60. {
  61. "ID":"01",
  62. "ChangeObje":null,
  63. "SourceID":"d80a8b6e-9f88-41ff-b3a7-1ff8d6ee37a5",
  64. "isConditionStart":false,
  65. "isConditionEnd":false,
  66. "IsCondition":false,
  67. "Condition":"Show",
  68. "CmdID":null,
  69. "Action":"显示",
  70. "Parameter":null,
  71. "Level":"",
  72. "Parent":null,
  73. "TempParent":null,
  74. "TempID":"",
  75. "ActionType":3,
  76. "SerialNumber":"01"
  77. }
  78. ],
  79. "MouserUpActionList":[
  80. ],
  81. "ButtonType":1,
  82. "Text":"电源管理",
  83. "BackIconObjID":"113",
  84. "BackIcon":"113.png",
  85. "ActionIconObjID":"114",
  86. "ActionIcon":"114.png",
  87. "BrackgroupStr":"#FF03A9F4",
  88. "ForegroundStr":"#FF00FFFF",
  89. "FontSize":14,
  90. "State":0,
  91. "IsPanel":false,
  92. "EnityName":"Button",
  93. "IsPressDown":true,
  94. "StateLocke":false,
  95. "ActionType":2,
  96. "Code":"d4c8b851-ba74-455d-80f7-4bb1c0728533",
  97. "ID":"d4c8b851-ba74-455d-80f7-4bb1c0728533",
  98. "Left":323,
  99. "Top":726,
  100. "Width":90,
  101. "Height":38,
  102. "ZIndex":1900,
  103. "GroupNumber":"1",
  104. "IsRunVisiable":true,
  105. "IsVisibility":true,
  106. "isSyn":false,
  107. "WindowID":"64a2f252-370a-4bc6-a817-3397f8abb4dc",
  108. "PanelID":null,
  109. "IsLock":false,
  110. "IsWindow":false
  111. },
  112. {
  113. "Name":"V3--Btn17",
  114. "MouseDownActionList":[
  115. ],
  116. "MouserUpActionList":[
  117. ],
  118. "ButtonType":0,
  119. "Text":"",
  120. "BackIconObjID":"183",
  121. "BackIcon":"183.png",
  122. "ActionIconObjID":"184",
  123. "ActionIcon":"184.png",
  124. "BrackgroupStr":"#FF03A9F4",
  125. "ForegroundStr":"#FF000000",
  126. "FontSize":14,
  127. "State":0,
  128. "IsPanel":false,
  129. "EnityName":"Button",
  130. "IsPressDown":false,
  131. "StateLocke":false,
  132. "ActionType":2,
  133. "Code":"ec6fc250-1d86-4b27-a779-dd1a32dfbd91",
  134. "ID":"ec6fc250-1d86-4b27-a779-dd1a32dfbd91",
  135. "Left":630,
  136. "Top":548,
  137. "Width":76,
  138. "Height":76,
  139. "ZIndex":30600,
  140. "GroupNumber":"",
  141. "IsRunVisiable":true,
  142. "IsVisibility":false,
  143. "isSyn":false,
  144. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  145. "PanelID":null,
  146. "IsLock":false,
  147. "IsWindow":false
  148. },
  149. {
  150. "Name":"V3--Btn18",
  151. "MouseDownActionList":[
  152. {
  153. "ID":"01",
  154. "ChangeObje":null,
  155. "SourceID":"150ffce6-c541-4bf0-a0b5-256a4216e89e",
  156. "isConditionStart":false,
  157. "isConditionEnd":false,
  158. "IsCondition":false,
  159. "Condition":"Send",
  160. "CmdID":"5d1916d4-de80-4cb9-9a18-949f20a90911",
  161. "Action":"up",
  162. "Parameter":null,
  163. "Level":"",
  164. "Parent":null,
  165. "TempParent":null,
  166. "TempID":"",
  167. "ActionType":1,
  168. "SerialNumber":null
  169. }
  170. ],
  171. "MouserUpActionList":[
  172. {
  173. "ID":"01",
  174. "ChangeObje":null,
  175. "SourceID":"150ffce6-c541-4bf0-a0b5-256a4216e89e",
  176. "isConditionStart":false,
  177. "isConditionEnd":false,
  178. "IsCondition":false,
  179. "Condition":"Send",
  180. "CmdID":"5c50d6ea-7192-4bde-b961-28730b8507cb",
  181. "Action":"stop",
  182. "Parameter":null,
  183. "Level":"",
  184. "Parent":null,
  185. "TempParent":null,
  186. "TempID":"",
  187. "ActionType":1,
  188. "SerialNumber":null
  189. }
  190. ],
  191. "ButtonType":0,
  192. "Text":"",
  193. "BackIconObjID":"186",
  194. "BackIcon":"186.png",
  195. "ActionIconObjID":"185",
  196. "ActionIcon":"185.png",
  197. "BrackgroupStr":"#FF03A9F4",
  198. "ForegroundStr":"#FF000000",
  199. "FontSize":14,
  200. "State":0,
  201. "IsPanel":false,
  202. "EnityName":"Button",
  203. "IsPressDown":false,
  204. "StateLocke":false,
  205. "ActionType":2,
  206. "Code":"195b9735-b698-4eca-8af9-4875f358e5f2",
  207. "ID":"195b9735-b698-4eca-8af9-4875f358e5f2",
  208. "Left":624,
  209. "Top":486,
  210. "Width":90,
  211. "Height":61,
  212. "ZIndex":30700,
  213. "GroupNumber":"",
  214. "IsRunVisiable":true,
  215. "IsVisibility":false,
  216. "isSyn":true,
  217. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  218. "PanelID":null,
  219. "IsLock":false,
  220. "IsWindow":false
  221. },
  222. {
  223. "Name":"V3--Btn15",
  224. "MouseDownActionList":[
  225. {
  226. "ID":"01",
  227. "ChangeObje":null,
  228. "SourceID":"150ffce6-c541-4bf0-a0b5-256a4216e89e",
  229. "isConditionStart":false,
  230. "isConditionEnd":false,
  231. "IsCondition":false,
  232. "Condition":"Send",
  233. "CmdID":"1767133f-c88f-4776-ae84-4b53c483e3cc",
  234. "Action":"down",
  235. "Parameter":null,
  236. "Level":"",
  237. "Parent":null,
  238. "TempParent":null,
  239. "TempID":"",
  240. "ActionType":1,
  241. "SerialNumber":null
  242. }
  243. ],
  244. "MouserUpActionList":[
  245. {
  246. "ID":"01",
  247. "ChangeObje":null,
  248. "SourceID":"150ffce6-c541-4bf0-a0b5-256a4216e89e",
  249. "isConditionStart":false,
  250. "isConditionEnd":false,
  251. "IsCondition":false,
  252. "Condition":"Send",
  253. "CmdID":"5c50d6ea-7192-4bde-b961-28730b8507cb",
  254. "Action":"stop",
  255. "Parameter":null,
  256. "Level":"",
  257. "Parent":null,
  258. "TempParent":null,
  259. "TempID":"",
  260. "ActionType":1,
  261. "SerialNumber":null
  262. }
  263. ],
  264. "ButtonType":0,
  265. "Text":"",
  266. "BackIconObjID":"189",
  267. "BackIcon":"189.png",
  268. "ActionIconObjID":"188",
  269. "ActionIcon":"188.png",
  270. "BrackgroupStr":"#FF03A9F4",
  271. "ForegroundStr":"#FF000000",
  272. "FontSize":14,
  273. "State":0,
  274. "IsPanel":false,
  275. "EnityName":"Button",
  276. "IsPressDown":false,
  277. "StateLocke":false,
  278. "ActionType":2,
  279. "Code":"73843dac-5561-410d-b8df-5e0aff7eb4eb",
  280. "ID":"73843dac-5561-410d-b8df-5e0aff7eb4eb",
  281. "Left":622,
  282. "Top":623,
  283. "Width":92,
  284. "Height":60,
  285. "ZIndex":30800,
  286. "GroupNumber":"",
  287. "IsRunVisiable":true,
  288. "IsVisibility":false,
  289. "isSyn":true,
  290. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  291. "PanelID":null,
  292. "IsLock":false,
  293. "IsWindow":false
  294. },
  295. {
  296. "Name":"V3--Btn16",
  297. "MouseDownActionList":[
  298. {
  299. "ID":"01",
  300. "ChangeObje":null,
  301. "SourceID":"150ffce6-c541-4bf0-a0b5-256a4216e89e",
  302. "isConditionStart":false,
  303. "isConditionEnd":false,
  304. "IsCondition":false,
  305. "Condition":"Send",
  306. "CmdID":"e8bb2ea0-3535-49c0-b2c3-f97c7b09163f",
  307. "Action":"right",
  308. "Parameter":null,
  309. "Level":"",
  310. "Parent":null,
  311. "TempParent":null,
  312. "TempID":"",
  313. "ActionType":1,
  314. "SerialNumber":null
  315. }
  316. ],
  317. "MouserUpActionList":[
  318. {
  319. "ID":"01",
  320. "ChangeObje":null,
  321. "SourceID":"150ffce6-c541-4bf0-a0b5-256a4216e89e",
  322. "isConditionStart":false,
  323. "isConditionEnd":false,
  324. "IsCondition":false,
  325. "Condition":"Send",
  326. "CmdID":"5c50d6ea-7192-4bde-b961-28730b8507cb",
  327. "Action":"stop",
  328. "Parameter":null,
  329. "Level":"",
  330. "Parent":null,
  331. "TempParent":null,
  332. "TempID":"",
  333. "ActionType":1,
  334. "SerialNumber":null
  335. }
  336. ],
  337. "ButtonType":0,
  338. "Text":"",
  339. "BackIconObjID":"191",
  340. "BackIcon":"191.png",
  341. "ActionIconObjID":"190",
  342. "ActionIcon":"190.png",
  343. "BrackgroupStr":"#FF03A9F4",
  344. "ForegroundStr":"#FF000000",
  345. "FontSize":14,
  346. "State":0,
  347. "IsPanel":false,
  348. "EnityName":"Button",
  349. "IsPressDown":false,
  350. "StateLocke":false,
  351. "ActionType":2,
  352. "Code":"0918bc82-3d4b-4a02-92e6-95f9e2cf165c",
  353. "ID":"0918bc82-3d4b-4a02-92e6-95f9e2cf165c",
  354. "Left":703,
  355. "Top":541,
  356. "Width":77,
  357. "Height":84,
  358. "ZIndex":30900,
  359. "GroupNumber":"",
  360. "IsRunVisiable":true,
  361. "IsVisibility":false,
  362. "isSyn":true,
  363. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  364. "PanelID":null,
  365. "IsLock":false,
  366. "IsWindow":false
  367. },
  368. {
  369. "Name":"V3--Btn17",
  370. "MouseDownActionList":[
  371. {
  372. "ID":"01",
  373. "ChangeObje":null,
  374. "SourceID":"150ffce6-c541-4bf0-a0b5-256a4216e89e",
  375. "isConditionStart":false,
  376. "isConditionEnd":false,
  377. "IsCondition":false,
  378. "Condition":"Send",
  379. "CmdID":"8d67a9c1-151f-4a29-b5a6-3570c75dff4b",
  380. "Action":"left",
  381. "Parameter":null,
  382. "Level":"",
  383. "Parent":null,
  384. "TempParent":null,
  385. "TempID":"",
  386. "ActionType":1,
  387. "SerialNumber":null
  388. }
  389. ],
  390. "MouserUpActionList":[
  391. {
  392. "ID":"01",
  393. "ChangeObje":null,
  394. "SourceID":"150ffce6-c541-4bf0-a0b5-256a4216e89e",
  395. "isConditionStart":false,
  396. "isConditionEnd":false,
  397. "IsCondition":false,
  398. "Condition":"Send",
  399. "CmdID":"5c50d6ea-7192-4bde-b961-28730b8507cb",
  400. "Action":"stop",
  401. "Parameter":null,
  402. "Level":"",
  403. "Parent":null,
  404. "TempParent":null,
  405. "TempID":"",
  406. "ActionType":1,
  407. "SerialNumber":null
  408. }
  409. ],
  410. "ButtonType":0,
  411. "Text":"",
  412. "BackIconObjID":"193",
  413. "BackIcon":"193.png",
  414. "ActionIconObjID":"192",
  415. "ActionIcon":"192.png",
  416. "BrackgroupStr":"#FF03A9F4",
  417. "ForegroundStr":"#FF000000",
  418. "FontSize":14,
  419. "State":0,
  420. "IsPanel":false,
  421. "EnityName":"Button",
  422. "IsPressDown":false,
  423. "StateLocke":false,
  424. "ActionType":2,
  425. "Code":"05095272-83c6-4e3f-9adf-c985fd1843a4",
  426. "ID":"05095272-83c6-4e3f-9adf-c985fd1843a4",
  427. "Left":564,
  428. "Top":542,
  429. "Width":67,
  430. "Height":87,
  431. "ZIndex":31000,
  432. "GroupNumber":"",
  433. "IsRunVisiable":true,
  434. "IsVisibility":false,
  435. "isSyn":true,
  436. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  437. "PanelID":null,
  438. "IsLock":false,
  439. "IsWindow":false
  440. },
  441. {
  442. "Name":"V3--Btn18",
  443. "MouseDownActionList":[
  444. {
  445. "ID":"01",
  446. "ChangeObje":null,
  447. "SourceID":"150ffce6-c541-4bf0-a0b5-256a4216e89e",
  448. "isConditionStart":false,
  449. "isConditionEnd":false,
  450. "IsCondition":false,
  451. "Condition":"Send",
  452. "CmdID":"f8910e00-2183-44d7-8e34-94cd1bf4ebfc",
  453. "Action":"call1",
  454. "Parameter":null,
  455. "Level":"",
  456. "Parent":null,
  457. "TempParent":null,
  458. "TempID":"",
  459. "ActionType":1,
  460. "SerialNumber":null
  461. }
  462. ],
  463. "MouserUpActionList":[
  464. ],
  465. "ButtonType":0,
  466. "Text":"1#预置位",
  467. "BackIconObjID":"210",
  468. "BackIcon":"210.png",
  469. "ActionIconObjID":"209",
  470. "ActionIcon":"209.png",
  471. "BrackgroupStr":"#FF03A9F4",
  472. "ForegroundStr":"#FF00FA9A",
  473. "FontSize":14,
  474. "State":0,
  475. "IsPanel":false,
  476. "EnityName":"Button",
  477. "IsPressDown":false,
  478. "StateLocke":false,
  479. "ActionType":2,
  480. "Code":"9016e1dd-3872-40bf-849a-9bda9fad0230",
  481. "ID":"9016e1dd-3872-40bf-849a-9bda9fad0230",
  482. "Left":479,
  483. "Top":469,
  484. "Width":64,
  485. "Height":38,
  486. "ZIndex":31100,
  487. "GroupNumber":"",
  488. "IsRunVisiable":true,
  489. "IsVisibility":false,
  490. "isSyn":false,
  491. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  492. "PanelID":null,
  493. "IsLock":false,
  494. "IsWindow":false
  495. },
  496. {
  497. "Name":"V3--Btn19",
  498. "MouseDownActionList":[
  499. {
  500. "ID":"01",
  501. "ChangeObje":null,
  502. "SourceID":"150ffce6-c541-4bf0-a0b5-256a4216e89e",
  503. "isConditionStart":false,
  504. "isConditionEnd":false,
  505. "IsCondition":false,
  506. "Condition":"Send",
  507. "CmdID":"370f504f-2df3-4ace-9b6e-b684e8aaa093",
  508. "Action":"call2",
  509. "Parameter":null,
  510. "Level":"",
  511. "Parent":null,
  512. "TempParent":null,
  513. "TempID":"",
  514. "ActionType":1,
  515. "SerialNumber":null
  516. }
  517. ],
  518. "MouserUpActionList":[
  519. ],
  520. "ButtonType":0,
  521. "Text":"2#预置位",
  522. "BackIconObjID":"210",
  523. "BackIcon":"210.png",
  524. "ActionIconObjID":"209",
  525. "ActionIcon":"209.png",
  526. "BrackgroupStr":"#FF03A9F4",
  527. "ForegroundStr":"#FF32CD32",
  528. "FontSize":14,
  529. "State":0,
  530. "IsPanel":false,
  531. "EnityName":"Button",
  532. "IsPressDown":false,
  533. "StateLocke":false,
  534. "ActionType":2,
  535. "Code":"ea5448a2-0bae-4972-b3d2-a3f7f4b1adff",
  536. "ID":"ea5448a2-0bae-4972-b3d2-a3f7f4b1adff",
  537. "Left":479,
  538. "Top":532,
  539. "Width":64,
  540. "Height":38,
  541. "ZIndex":31200,
  542. "GroupNumber":"",
  543. "IsRunVisiable":true,
  544. "IsVisibility":false,
  545. "isSyn":false,
  546. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  547. "PanelID":null,
  548. "IsLock":false,
  549. "IsWindow":false
  550. },
  551. {
  552. "Name":"V3--Btn20",
  553. "MouseDownActionList":[
  554. {
  555. "ID":"01",
  556. "ChangeObje":null,
  557. "SourceID":"150ffce6-c541-4bf0-a0b5-256a4216e89e",
  558. "isConditionStart":false,
  559. "isConditionEnd":false,
  560. "IsCondition":false,
  561. "Condition":"Send",
  562. "CmdID":"508acbab-00b6-4f48-8e9d-fd8c79350022",
  563. "Action":"call3",
  564. "Parameter":null,
  565. "Level":"",
  566. "Parent":null,
  567. "TempParent":null,
  568. "TempID":"",
  569. "ActionType":1,
  570. "SerialNumber":null
  571. }
  572. ],
  573. "MouserUpActionList":[
  574. ],
  575. "ButtonType":0,
  576. "Text":"3#预置位",
  577. "BackIconObjID":"210",
  578. "BackIcon":"210.png",
  579. "ActionIconObjID":"209",
  580. "ActionIcon":"209.png",
  581. "BrackgroupStr":"#FF03A9F4",
  582. "ForegroundStr":"#FF32CD32",
  583. "FontSize":14,
  584. "State":0,
  585. "IsPanel":false,
  586. "EnityName":"Button",
  587. "IsPressDown":false,
  588. "StateLocke":false,
  589. "ActionType":2,
  590. "Code":"279387c4-787b-4b22-9e56-c8c2d0a63e5e",
  591. "ID":"279387c4-787b-4b22-9e56-c8c2d0a63e5e",
  592. "Left":479,
  593. "Top":594,
  594. "Width":64,
  595. "Height":38,
  596. "ZIndex":31300,
  597. "GroupNumber":"",
  598. "IsRunVisiable":true,
  599. "IsVisibility":false,
  600. "isSyn":false,
  601. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  602. "PanelID":null,
  603. "IsLock":false,
  604. "IsWindow":false
  605. },
  606. {
  607. "Name":"V3--Btn21",
  608. "MouseDownActionList":[
  609. {
  610. "ID":"01",
  611. "ChangeObje":null,
  612. "SourceID":"150ffce6-c541-4bf0-a0b5-256a4216e89e",
  613. "isConditionStart":false,
  614. "isConditionEnd":false,
  615. "IsCondition":false,
  616. "Condition":"Send",
  617. "CmdID":"f480232a-eaaf-4f2d-aa94-41dc934a4218",
  618. "Action":"call4",
  619. "Parameter":null,
  620. "Level":"",
  621. "Parent":null,
  622. "TempParent":null,
  623. "TempID":"",
  624. "ActionType":1,
  625. "SerialNumber":null
  626. }
  627. ],
  628. "MouserUpActionList":[
  629. ],
  630. "ButtonType":0,
  631. "Text":"4#预置位",
  632. "BackIconObjID":"210",
  633. "BackIcon":"210.png",
  634. "ActionIconObjID":"209",
  635. "ActionIcon":"209.png",
  636. "BrackgroupStr":"#FF03A9F4",
  637. "ForegroundStr":"#FF00FA9A",
  638. "FontSize":14,
  639. "State":0,
  640. "IsPanel":false,
  641. "EnityName":"Button",
  642. "IsPressDown":false,
  643. "StateLocke":false,
  644. "ActionType":2,
  645. "Code":"2c81da27-b110-4aa7-be74-b15a08f6d2fe",
  646. "ID":"2c81da27-b110-4aa7-be74-b15a08f6d2fe",
  647. "Left":479,
  648. "Top":659,
  649. "Width":64,
  650. "Height":38,
  651. "ZIndex":31400,
  652. "GroupNumber":"",
  653. "IsRunVisiable":true,
  654. "IsVisibility":false,
  655. "isSyn":false,
  656. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  657. "PanelID":null,
  658. "IsLock":false,
  659. "IsWindow":false
  660. },
  661. {
  662. "Name":"V3--Btn24",
  663. "MouseDownActionList":[
  664. {
  665. "ID":"01",
  666. "ChangeObje":null,
  667. "SourceID":"150ffce6-c541-4bf0-a0b5-256a4216e89e",
  668. "isConditionStart":false,
  669. "isConditionEnd":false,
  670. "IsCondition":false,
  671. "Condition":"Send",
  672. "CmdID":"e778f2b5-c2e1-4e97-ac97-aa5cb9c28a3e",
  673. "Action":"zoom-far",
  674. "Parameter":null,
  675. "Level":"",
  676. "Parent":null,
  677. "TempParent":null,
  678. "TempID":"",
  679. "ActionType":1,
  680. "SerialNumber":null
  681. }
  682. ],
  683. "MouserUpActionList":[
  684. {
  685. "ID":"01",
  686. "ChangeObje":null,
  687. "SourceID":"150ffce6-c541-4bf0-a0b5-256a4216e89e",
  688. "isConditionStart":false,
  689. "isConditionEnd":false,
  690. "IsCondition":false,
  691. "Condition":"Send",
  692. "CmdID":"4877cf45-5920-4908-8b39-c36f6a2352a8",
  693. "Action":"zoom-close",
  694. "Parameter":null,
  695. "Level":"",
  696. "Parent":null,
  697. "TempParent":null,
  698. "TempID":"",
  699. "ActionType":1,
  700. "SerialNumber":null
  701. }
  702. ],
  703. "ButtonType":0,
  704. "Text":"焦距+",
  705. "BackIconObjID":"210",
  706. "BackIcon":"210.png",
  707. "ActionIconObjID":"209",
  708. "ActionIcon":"209.png",
  709. "BrackgroupStr":"#FF03A9F4",
  710. "ForegroundStr":"#FF00FA9A",
  711. "FontSize":14,
  712. "State":0,
  713. "IsPanel":false,
  714. "EnityName":"Button",
  715. "IsPressDown":false,
  716. "StateLocke":false,
  717. "ActionType":2,
  718. "Code":"5faf88e8-31dc-4cdb-a689-746cc96bb1c1",
  719. "ID":"5faf88e8-31dc-4cdb-a689-746cc96bb1c1",
  720. "Left":719,
  721. "Top":491,
  722. "Width":77,
  723. "Height":38,
  724. "ZIndex":31500,
  725. "GroupNumber":"",
  726. "IsRunVisiable":true,
  727. "IsVisibility":false,
  728. "isSyn":false,
  729. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  730. "PanelID":null,
  731. "IsLock":false,
  732. "IsWindow":false
  733. },
  734. {
  735. "Name":"V3--Btn26",
  736. "MouseDownActionList":[
  737. {
  738. "ID":"01",
  739. "ChangeObje":null,
  740. "SourceID":"150ffce6-c541-4bf0-a0b5-256a4216e89e",
  741. "isConditionStart":false,
  742. "isConditionEnd":false,
  743. "IsCondition":false,
  744. "Condition":"Send",
  745. "CmdID":"4877cf45-5920-4908-8b39-c36f6a2352a8",
  746. "Action":"zoom-close",
  747. "Parameter":null,
  748. "Level":"",
  749. "Parent":null,
  750. "TempParent":null,
  751. "TempID":"",
  752. "ActionType":1,
  753. "SerialNumber":null
  754. }
  755. ],
  756. "MouserUpActionList":[
  757. {
  758. "ID":"01",
  759. "ChangeObje":null,
  760. "SourceID":"150ffce6-c541-4bf0-a0b5-256a4216e89e",
  761. "isConditionStart":false,
  762. "isConditionEnd":false,
  763. "IsCondition":false,
  764. "Condition":"Send",
  765. "CmdID":"972f2b93-5e99-40e5-95b3-0254a00c238a",
  766. "Action":"zoom-stop",
  767. "Parameter":null,
  768. "Level":"",
  769. "Parent":null,
  770. "TempParent":null,
  771. "TempID":"",
  772. "ActionType":1,
  773. "SerialNumber":null
  774. }
  775. ],
  776. "ButtonType":0,
  777. "Text":"焦距 —",
  778. "BackIconObjID":"210",
  779. "BackIcon":"210.png",
  780. "ActionIconObjID":"209",
  781. "ActionIcon":"209.png",
  782. "BrackgroupStr":"#FF03A9F4",
  783. "ForegroundStr":"#FF00FA9A",
  784. "FontSize":14,
  785. "State":0,
  786. "IsPanel":false,
  787. "EnityName":"Button",
  788. "IsPressDown":false,
  789. "StateLocke":false,
  790. "ActionType":2,
  791. "Code":"24f370f0-321e-45b3-bbc3-824f5e346e02",
  792. "ID":"24f370f0-321e-45b3-bbc3-824f5e346e02",
  793. "Left":718,
  794. "Top":631,
  795. "Width":76,
  796. "Height":38,
  797. "ZIndex":31600,
  798. "GroupNumber":"",
  799. "IsRunVisiable":true,
  800. "IsVisibility":false,
  801. "isSyn":false,
  802. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  803. "PanelID":null,
  804. "IsLock":false,
  805. "IsWindow":false
  806. },
  807. {
  808. "Name":"V3--Btn33",
  809. "MouseDownActionList":[
  810. {
  811. "ID":"01",
  812. "ChangeObje":null,
  813. "SourceID":"2e8692f6-2522-401b-82cc-0cf53baa5f50",
  814. "isConditionStart":false,
  815. "isConditionEnd":false,
  816. "IsCondition":false,
  817. "Condition":"Send",
  818. "CmdID":"e778f2b5-c2e1-4e97-ac97-aa5cb9c28a3e",
  819. "Action":"zoom-far",
  820. "Parameter":null,
  821. "Level":"",
  822. "Parent":null,
  823. "TempParent":null,
  824. "TempID":"",
  825. "ActionType":1,
  826. "SerialNumber":null
  827. }
  828. ],
  829. "MouserUpActionList":[
  830. {
  831. "ID":"01",
  832. "ChangeObje":null,
  833. "SourceID":"2e8692f6-2522-401b-82cc-0cf53baa5f50",
  834. "isConditionStart":false,
  835. "isConditionEnd":false,
  836. "IsCondition":false,
  837. "Condition":"Send",
  838. "CmdID":"972f2b93-5e99-40e5-95b3-0254a00c238a",
  839. "Action":"zoom-stop",
  840. "Parameter":null,
  841. "Level":"",
  842. "Parent":null,
  843. "TempParent":null,
  844. "TempID":"",
  845. "ActionType":1,
  846. "SerialNumber":null
  847. }
  848. ],
  849. "ButtonType":0,
  850. "Text":"焦距+",
  851. "BackIconObjID":"210",
  852. "BackIcon":"210.png",
  853. "ActionIconObjID":"209",
  854. "ActionIcon":"209.png",
  855. "BrackgroupStr":"#FF03A9F4",
  856. "ForegroundStr":"#FF00FA9A",
  857. "FontSize":14,
  858. "State":0,
  859. "IsPanel":false,
  860. "EnityName":"Button",
  861. "IsPressDown":false,
  862. "StateLocke":false,
  863. "ActionType":2,
  864. "Code":"9734de53-310c-4225-b881-14e6ef30f833",
  865. "ID":"9734de53-310c-4225-b881-14e6ef30f833",
  866. "Left":376,
  867. "Top":497,
  868. "Width":77,
  869. "Height":38,
  870. "ZIndex":32200,
  871. "GroupNumber":"",
  872. "IsRunVisiable":true,
  873. "IsVisibility":false,
  874. "isSyn":false,
  875. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  876. "PanelID":null,
  877. "IsLock":false,
  878. "IsWindow":false
  879. },
  880. {
  881. "Name":"V3--Btn28",
  882. "MouseDownActionList":[
  883. {
  884. "ID":"01",
  885. "ChangeObje":null,
  886. "SourceID":"150ffce6-c541-4bf0-a0b5-256a4216e89e",
  887. "isConditionStart":false,
  888. "isConditionEnd":false,
  889. "IsCondition":false,
  890. "Condition":"Send",
  891. "CmdID":"370f504f-2df3-4ace-9b6e-b684e8aaa093",
  892. "Action":"call2",
  893. "Parameter":null,
  894. "Level":"",
  895. "Parent":null,
  896. "TempParent":null,
  897. "TempID":"",
  898. "ActionType":1,
  899. "SerialNumber":null
  900. }
  901. ],
  902. "MouserUpActionList":[
  903. ],
  904. "ButtonType":0,
  905. "Text":"2#预置位",
  906. "BackIconObjID":"210",
  907. "BackIcon":"210.png",
  908. "ActionIconObjID":"209",
  909. "ActionIcon":"209.png",
  910. "BrackgroupStr":"#FF03A9F4",
  911. "ForegroundStr":"#FF00FA9A",
  912. "FontSize":14,
  913. "State":0,
  914. "IsPanel":false,
  915. "EnityName":"Button",
  916. "IsPressDown":false,
  917. "StateLocke":false,
  918. "ActionType":2,
  919. "Code":"bdb1724f-d8b1-4963-8f29-ca8d32c218fb",
  920. "ID":"bdb1724f-d8b1-4963-8f29-ca8d32c218fb",
  921. "Left":141,
  922. "Top":527,
  923. "Width":77,
  924. "Height":38,
  925. "ZIndex":31700,
  926. "GroupNumber":"",
  927. "IsRunVisiable":true,
  928. "IsVisibility":false,
  929. "isSyn":false,
  930. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  931. "PanelID":null,
  932. "IsLock":false,
  933. "IsWindow":false
  934. },
  935. {
  936. "Name":"V3--Btn34",
  937. "MouseDownActionList":[
  938. {
  939. "ID":"01",
  940. "ChangeObje":null,
  941. "SourceID":"2e8692f6-2522-401b-82cc-0cf53baa5f50",
  942. "isConditionStart":false,
  943. "isConditionEnd":false,
  944. "IsCondition":false,
  945. "Condition":"Send",
  946. "CmdID":"4877cf45-5920-4908-8b39-c36f6a2352a8",
  947. "Action":"zoom-close",
  948. "Parameter":null,
  949. "Level":"",
  950. "Parent":null,
  951. "TempParent":null,
  952. "TempID":"",
  953. "ActionType":1,
  954. "SerialNumber":null
  955. }
  956. ],
  957. "MouserUpActionList":[
  958. {
  959. "ID":"01",
  960. "ChangeObje":null,
  961. "SourceID":"2e8692f6-2522-401b-82cc-0cf53baa5f50",
  962. "isConditionStart":false,
  963. "isConditionEnd":false,
  964. "IsCondition":false,
  965. "Condition":"Send",
  966. "CmdID":"972f2b93-5e99-40e5-95b3-0254a00c238a",
  967. "Action":"zoom-stop",
  968. "Parameter":null,
  969. "Level":"",
  970. "Parent":null,
  971. "TempParent":null,
  972. "TempID":"",
  973. "ActionType":1,
  974. "SerialNumber":null
  975. }
  976. ],
  977. "ButtonType":0,
  978. "Text":"焦距-",
  979. "BackIconObjID":"210",
  980. "BackIcon":"210.png",
  981. "ActionIconObjID":"209",
  982. "ActionIcon":"209.png",
  983. "BrackgroupStr":"#FF03A9F4",
  984. "ForegroundStr":"#FF00FA9A",
  985. "FontSize":14,
  986. "State":0,
  987. "IsPanel":false,
  988. "EnityName":"Button",
  989. "IsPressDown":false,
  990. "StateLocke":false,
  991. "ActionType":2,
  992. "Code":"8ff27669-1a6f-4e69-8385-eed93d0977d3",
  993. "ID":"8ff27669-1a6f-4e69-8385-eed93d0977d3",
  994. "Left":376,
  995. "Top":642,
  996. "Width":77,
  997. "Height":38,
  998. "ZIndex":32300,
  999. "GroupNumber":"",
  1000. "IsRunVisiable":true,
  1001. "IsVisibility":false,
  1002. "isSyn":false,
  1003. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  1004. "PanelID":null,
  1005. "IsLock":false,
  1006. "IsWindow":false
  1007. },
  1008. {
  1009. "Name":"V3--Btn35",
  1010. "MouseDownActionList":[
  1011. {
  1012. "ID":"01",
  1013. "ChangeObje":null,
  1014. "SourceID":"2e8692f6-2522-401b-82cc-0cf53baa5f50",
  1015. "isConditionStart":false,
  1016. "isConditionEnd":false,
  1017. "IsCondition":false,
  1018. "Condition":"Send",
  1019. "CmdID":"e8bb2ea0-3535-49c0-b2c3-f97c7b09163f",
  1020. "Action":"right",
  1021. "Parameter":null,
  1022. "Level":"",
  1023. "Parent":null,
  1024. "TempParent":null,
  1025. "TempID":"",
  1026. "ActionType":1,
  1027. "SerialNumber":null
  1028. }
  1029. ],
  1030. "MouserUpActionList":[
  1031. {
  1032. "ID":"01",
  1033. "ChangeObje":null,
  1034. "SourceID":"2e8692f6-2522-401b-82cc-0cf53baa5f50",
  1035. "isConditionStart":false,
  1036. "isConditionEnd":false,
  1037. "IsCondition":false,
  1038. "Condition":"Send",
  1039. "CmdID":"5c50d6ea-7192-4bde-b961-28730b8507cb",
  1040. "Action":"stop",
  1041. "Parameter":null,
  1042. "Level":"",
  1043. "Parent":null,
  1044. "TempParent":null,
  1045. "TempID":"",
  1046. "ActionType":1,
  1047. "SerialNumber":null
  1048. }
  1049. ],
  1050. "ButtonType":0,
  1051. "Text":"",
  1052. "BackIconObjID":"191",
  1053. "BackIcon":"191.png",
  1054. "ActionIconObjID":"190",
  1055. "ActionIcon":"190.png",
  1056. "BrackgroupStr":"#FF03A9F4",
  1057. "ForegroundStr":"#FF000000",
  1058. "FontSize":14,
  1059. "State":0,
  1060. "IsPanel":false,
  1061. "EnityName":"Button",
  1062. "IsPressDown":false,
  1063. "StateLocke":false,
  1064. "ActionType":2,
  1065. "Code":"0421112b-4619-4a3b-81bf-6fc2462f8c76",
  1066. "ID":"0421112b-4619-4a3b-81bf-6fc2462f8c76",
  1067. "Left":367,
  1068. "Top":552,
  1069. "Width":77,
  1070. "Height":84,
  1071. "ZIndex":32400,
  1072. "GroupNumber":"",
  1073. "IsRunVisiable":true,
  1074. "IsVisibility":false,
  1075. "isSyn":true,
  1076. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  1077. "PanelID":null,
  1078. "IsLock":false,
  1079. "IsWindow":false
  1080. },
  1081. {
  1082. "Name":"V3--Btn36",
  1083. "MouseDownActionList":[
  1084. {
  1085. "ID":"01",
  1086. "ChangeObje":null,
  1087. "SourceID":"2e8692f6-2522-401b-82cc-0cf53baa5f50",
  1088. "isConditionStart":false,
  1089. "isConditionEnd":false,
  1090. "IsCondition":false,
  1091. "Condition":"Send",
  1092. "CmdID":"5d1916d4-de80-4cb9-9a18-949f20a90911",
  1093. "Action":"up",
  1094. "Parameter":null,
  1095. "Level":"",
  1096. "Parent":null,
  1097. "TempParent":null,
  1098. "TempID":"",
  1099. "ActionType":1,
  1100. "SerialNumber":null
  1101. }
  1102. ],
  1103. "MouserUpActionList":[
  1104. {
  1105. "ID":"01",
  1106. "ChangeObje":null,
  1107. "SourceID":"2e8692f6-2522-401b-82cc-0cf53baa5f50",
  1108. "isConditionStart":false,
  1109. "isConditionEnd":false,
  1110. "IsCondition":false,
  1111. "Condition":"Send",
  1112. "CmdID":"5c50d6ea-7192-4bde-b961-28730b8507cb",
  1113. "Action":"stop",
  1114. "Parameter":null,
  1115. "Level":"",
  1116. "Parent":null,
  1117. "TempParent":null,
  1118. "TempID":"",
  1119. "ActionType":1,
  1120. "SerialNumber":null
  1121. }
  1122. ],
  1123. "ButtonType":0,
  1124. "Text":"",
  1125. "BackIconObjID":"186",
  1126. "BackIcon":"186.png",
  1127. "ActionIconObjID":"185",
  1128. "ActionIcon":"185.png",
  1129. "BrackgroupStr":"#FF03A9F4",
  1130. "ForegroundStr":"#FF000000",
  1131. "FontSize":14,
  1132. "State":0,
  1133. "IsPanel":false,
  1134. "EnityName":"Button",
  1135. "IsPressDown":false,
  1136. "StateLocke":false,
  1137. "ActionType":2,
  1138. "Code":"f4e38a66-f0ec-469b-a3f8-8e7439e79759",
  1139. "ID":"f4e38a66-f0ec-469b-a3f8-8e7439e79759",
  1140. "Left":289,
  1141. "Top":493,
  1142. "Width":90,
  1143. "Height":61,
  1144. "ZIndex":31900,
  1145. "GroupNumber":"",
  1146. "IsRunVisiable":true,
  1147. "IsVisibility":false,
  1148. "isSyn":true,
  1149. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  1150. "PanelID":null,
  1151. "IsLock":false,
  1152. "IsWindow":false
  1153. },
  1154. {
  1155. "Name":"V3--Btn37",
  1156. "MouseDownActionList":[
  1157. {
  1158. "ID":"01",
  1159. "ChangeObje":null,
  1160. "SourceID":"2e8692f6-2522-401b-82cc-0cf53baa5f50",
  1161. "isConditionStart":false,
  1162. "isConditionEnd":false,
  1163. "IsCondition":false,
  1164. "Condition":"Send",
  1165. "CmdID":"8d67a9c1-151f-4a29-b5a6-3570c75dff4b",
  1166. "Action":"left",
  1167. "Parameter":null,
  1168. "Level":"",
  1169. "Parent":null,
  1170. "TempParent":null,
  1171. "TempID":"",
  1172. "ActionType":1,
  1173. "SerialNumber":"01"
  1174. }
  1175. ],
  1176. "MouserUpActionList":[
  1177. {
  1178. "ID":"01",
  1179. "ChangeObje":null,
  1180. "SourceID":"2e8692f6-2522-401b-82cc-0cf53baa5f50",
  1181. "isConditionStart":false,
  1182. "isConditionEnd":false,
  1183. "IsCondition":false,
  1184. "Condition":"Send",
  1185. "CmdID":"5c50d6ea-7192-4bde-b961-28730b8507cb",
  1186. "Action":"stop",
  1187. "Parameter":null,
  1188. "Level":"",
  1189. "Parent":null,
  1190. "TempParent":null,
  1191. "TempID":"",
  1192. "ActionType":1,
  1193. "SerialNumber":null
  1194. }
  1195. ],
  1196. "ButtonType":0,
  1197. "Text":"",
  1198. "BackIconObjID":"193",
  1199. "BackIcon":"193.png",
  1200. "ActionIconObjID":"192",
  1201. "ActionIcon":"192.png",
  1202. "BrackgroupStr":"#FF03A9F4",
  1203. "ForegroundStr":"#FF000000",
  1204. "FontSize":14,
  1205. "State":0,
  1206. "IsPanel":false,
  1207. "EnityName":"Button",
  1208. "IsPressDown":false,
  1209. "StateLocke":false,
  1210. "ActionType":2,
  1211. "Code":"ee6f1f88-a5f5-43a9-aba4-1ff62c3fd145",
  1212. "ID":"ee6f1f88-a5f5-43a9-aba4-1ff62c3fd145",
  1213. "Left":226,
  1214. "Top":548,
  1215. "Width":67,
  1216. "Height":87,
  1217. "ZIndex":31800,
  1218. "GroupNumber":"",
  1219. "IsRunVisiable":true,
  1220. "IsVisibility":false,
  1221. "isSyn":true,
  1222. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  1223. "PanelID":null,
  1224. "IsLock":false,
  1225. "IsWindow":false
  1226. },
  1227. {
  1228. "Name":"V3--Btn38",
  1229. "MouseDownActionList":[
  1230. {
  1231. "ID":"01",
  1232. "ChangeObje":null,
  1233. "SourceID":"2e8692f6-2522-401b-82cc-0cf53baa5f50",
  1234. "isConditionStart":false,
  1235. "isConditionEnd":false,
  1236. "IsCondition":false,
  1237. "Condition":"Send",
  1238. "CmdID":"1767133f-c88f-4776-ae84-4b53c483e3cc",
  1239. "Action":"down",
  1240. "Parameter":null,
  1241. "Level":"",
  1242. "Parent":null,
  1243. "TempParent":null,
  1244. "TempID":"",
  1245. "ActionType":1,
  1246. "SerialNumber":null
  1247. }
  1248. ],
  1249. "MouserUpActionList":[
  1250. {
  1251. "ID":"01",
  1252. "ChangeObje":null,
  1253. "SourceID":"2e8692f6-2522-401b-82cc-0cf53baa5f50",
  1254. "isConditionStart":false,
  1255. "isConditionEnd":false,
  1256. "IsCondition":false,
  1257. "Condition":"Send",
  1258. "CmdID":"5c50d6ea-7192-4bde-b961-28730b8507cb",
  1259. "Action":"stop",
  1260. "Parameter":null,
  1261. "Level":"",
  1262. "Parent":null,
  1263. "TempParent":null,
  1264. "TempID":"",
  1265. "ActionType":1,
  1266. "SerialNumber":null
  1267. }
  1268. ],
  1269. "ButtonType":0,
  1270. "Text":"",
  1271. "BackIconObjID":"189",
  1272. "BackIcon":"189.png",
  1273. "ActionIconObjID":"188",
  1274. "ActionIcon":"188.png",
  1275. "BrackgroupStr":"#FF03A9F4",
  1276. "ForegroundStr":"#FF000000",
  1277. "FontSize":14,
  1278. "State":0,
  1279. "IsPanel":false,
  1280. "EnityName":"Button",
  1281. "IsPressDown":false,
  1282. "StateLocke":false,
  1283. "ActionType":2,
  1284. "Code":"f6d43316-50b3-4e5e-aeaa-54cec4800712",
  1285. "ID":"f6d43316-50b3-4e5e-aeaa-54cec4800712",
  1286. "Left":285,
  1287. "Top":628,
  1288. "Width":92,
  1289. "Height":60,
  1290. "ZIndex":32100,
  1291. "GroupNumber":"",
  1292. "IsRunVisiable":true,
  1293. "IsVisibility":false,
  1294. "isSyn":true,
  1295. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  1296. "PanelID":null,
  1297. "IsLock":false,
  1298. "IsWindow":false
  1299. },
  1300. {
  1301. "Name":"V3--Btn39",
  1302. "MouseDownActionList":[
  1303. ],
  1304. "MouserUpActionList":[
  1305. ],
  1306. "ButtonType":0,
  1307. "Text":"",
  1308. "BackIconObjID":"183",
  1309. "BackIcon":"183.png",
  1310. "ActionIconObjID":"184",
  1311. "ActionIcon":"184.png",
  1312. "BrackgroupStr":"#FF03A9F4",
  1313. "ForegroundStr":"#FF000000",
  1314. "FontSize":14,
  1315. "State":0,
  1316. "IsPanel":false,
  1317. "EnityName":"Button",
  1318. "IsPressDown":false,
  1319. "StateLocke":false,
  1320. "ActionType":2,
  1321. "Code":"62c372d1-e8b8-4e54-937b-2b0e1070d7b6",
  1322. "ID":"62c372d1-e8b8-4e54-937b-2b0e1070d7b6",
  1323. "Left":292,
  1324. "Top":550,
  1325. "Width":76,
  1326. "Height":76,
  1327. "ZIndex":32000,
  1328. "GroupNumber":"",
  1329. "IsRunVisiable":true,
  1330. "IsVisibility":false,
  1331. "isSyn":false,
  1332. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  1333. "PanelID":null,
  1334. "IsLock":false,
  1335. "IsWindow":false
  1336. },
  1337. {
  1338. "Name":"V7--Btn38",
  1339. "MouseDownActionList":[
  1340. {
  1341. "ID":"01",
  1342. "ChangeObje":null,
  1343. "SourceID":"facd33c7-c3a3-48fb-890d-313840816213",
  1344. "isConditionStart":false,
  1345. "isConditionEnd":false,
  1346. "IsCondition":false,
  1347. "Condition":"Send",
  1348. "CmdID":"d6755d6f-370a-4797-8d6d-8479d56421e8",
  1349. "Action":"LIANJI",
  1350. "Parameter":null,
  1351. "Level":"",
  1352. "Parent":null,
  1353. "TempParent":null,
  1354. "TempID":"",
  1355. "ActionType":1,
  1356. "SerialNumber":"01"
  1357. },
  1358. {
  1359. "ID":"02",
  1360. "ChangeObje":null,
  1361. "SourceID":"08be426e-f9ae-469c-8ea3-ab41403c9f47",
  1362. "isConditionStart":false,
  1363. "isConditionEnd":false,
  1364. "IsCondition":false,
  1365. "Condition":"Wait",
  1366. "CmdID":null,
  1367. "Action":"0:0:1:0",
  1368. "Parameter":null,
  1369. "Level":"",
  1370. "Parent":null,
  1371. "TempParent":null,
  1372. "TempID":"",
  1373. "ActionType":0,
  1374. "SerialNumber":"02"
  1375. },
  1376. {
  1377. "ID":"04",
  1378. "ChangeObje":null,
  1379. "SourceID":"08be426e-f9ae-469c-8ea3-ab41403c9f47",
  1380. "isConditionStart":false,
  1381. "isConditionEnd":false,
  1382. "IsCondition":false,
  1383. "Condition":"Wait",
  1384. "CmdID":null,
  1385. "Action":"0:0:1:0",
  1386. "Parameter":null,
  1387. "Level":"",
  1388. "Parent":null,
  1389. "TempParent":null,
  1390. "TempID":"",
  1391. "ActionType":0,
  1392. "SerialNumber":"04"
  1393. },
  1394. {
  1395. "ID":"06",
  1396. "ChangeObje":null,
  1397. "SourceID":"08be426e-f9ae-469c-8ea3-ab41403c9f47",
  1398. "isConditionStart":false,
  1399. "isConditionEnd":false,
  1400. "IsCondition":false,
  1401. "Condition":"Wait",
  1402. "CmdID":null,
  1403. "Action":"0:0:1:0",
  1404. "Parameter":null,
  1405. "Level":"",
  1406. "Parent":null,
  1407. "TempParent":null,
  1408. "TempID":"",
  1409. "ActionType":0,
  1410. "SerialNumber":"06"
  1411. },
  1412. {
  1413. "ID":"10",
  1414. "ChangeObje":null,
  1415. "SourceID":"08be426e-f9ae-469c-8ea3-ab41403c9f47",
  1416. "isConditionStart":false,
  1417. "isConditionEnd":false,
  1418. "IsCondition":false,
  1419. "Condition":"Wait",
  1420. "CmdID":null,
  1421. "Action":"0:0:1:0",
  1422. "Parameter":null,
  1423. "Level":"",
  1424. "Parent":null,
  1425. "TempParent":null,
  1426. "TempID":"",
  1427. "ActionType":0,
  1428. "SerialNumber":"10"
  1429. },
  1430. {
  1431. "ID":"12",
  1432. "ChangeObje":null,
  1433. "SourceID":"08be426e-f9ae-469c-8ea3-ab41403c9f47",
  1434. "isConditionStart":false,
  1435. "isConditionEnd":false,
  1436. "IsCondition":false,
  1437. "Condition":"Wait",
  1438. "CmdID":null,
  1439. "Action":"0:0:1:0",
  1440. "Parameter":null,
  1441. "Level":"",
  1442. "Parent":null,
  1443. "TempParent":null,
  1444. "TempID":"",
  1445. "ActionType":0,
  1446. "SerialNumber":"12"
  1447. },
  1448. {
  1449. "ID":"03",
  1450. "ChangeObje":null,
  1451. "SourceID":"facd33c7-c3a3-48fb-890d-313840816213",
  1452. "isConditionStart":false,
  1453. "isConditionEnd":false,
  1454. "IsCondition":false,
  1455. "Condition":"Send",
  1456. "CmdID":"83c3bb3c-8403-444e-be25-74cdc940cb62",
  1457. "Action":"POWEROFF",
  1458. "Parameter":null,
  1459. "Level":"",
  1460. "Parent":null,
  1461. "TempParent":null,
  1462. "TempID":"",
  1463. "ActionType":1,
  1464. "SerialNumber":"03"
  1465. },
  1466. {
  1467. "ID":"05",
  1468. "ChangeObje":null,
  1469. "SourceID":"79bf24a8-f729-4e7a-9a8e-a907e70135a9",
  1470. "isConditionStart":false,
  1471. "isConditionEnd":false,
  1472. "IsCondition":false,
  1473. "Condition":"Send",
  1474. "CmdID":"d1095eff-90a5-40e4-8335-9cdd14e8d030",
  1475. "Action":"18断开",
  1476. "Parameter":"A:0",
  1477. "Level":"",
  1478. "Parent":null,
  1479. "TempParent":null,
  1480. "TempID":"",
  1481. "ActionType":1,
  1482. "SerialNumber":"05"
  1483. },
  1484. {
  1485. "ID":"07",
  1486. "ChangeObje":null,
  1487. "SourceID":"79bf24a8-f729-4e7a-9a8e-a907e70135a9",
  1488. "isConditionStart":false,
  1489. "isConditionEnd":false,
  1490. "IsCondition":false,
  1491. "Condition":"Send",
  1492. "CmdID":"d1095eff-90a5-40e4-8335-9cdd14e8d030",
  1493. "Action":"18断开",
  1494. "Parameter":"A:1",
  1495. "Level":"",
  1496. "Parent":null,
  1497. "TempParent":null,
  1498. "TempID":"",
  1499. "ActionType":1,
  1500. "SerialNumber":"07"
  1501. },
  1502. {
  1503. "ID":"08",
  1504. "ChangeObje":null,
  1505. "SourceID":"08be426e-f9ae-469c-8ea3-ab41403c9f47",
  1506. "isConditionStart":false,
  1507. "isConditionEnd":false,
  1508. "IsCondition":false,
  1509. "Condition":"Wait",
  1510. "CmdID":null,
  1511. "Action":"0:0:1:0",
  1512. "Parameter":null,
  1513. "Level":"",
  1514. "Parent":null,
  1515. "TempParent":null,
  1516. "TempID":"",
  1517. "ActionType":0,
  1518. "SerialNumber":"08"
  1519. },
  1520. {
  1521. "ID":"09",
  1522. "ChangeObje":null,
  1523. "SourceID":"79bf24a8-f729-4e7a-9a8e-a907e70135a9",
  1524. "isConditionStart":false,
  1525. "isConditionEnd":false,
  1526. "IsCondition":false,
  1527. "Condition":"Send",
  1528. "CmdID":"d1095eff-90a5-40e4-8335-9cdd14e8d030",
  1529. "Action":"18断开",
  1530. "Parameter":"A:2",
  1531. "Level":"",
  1532. "Parent":null,
  1533. "TempParent":null,
  1534. "TempID":"",
  1535. "ActionType":1,
  1536. "SerialNumber":"09"
  1537. },
  1538. {
  1539. "ID":"11",
  1540. "ChangeObje":null,
  1541. "SourceID":"79bf24a8-f729-4e7a-9a8e-a907e70135a9",
  1542. "isConditionStart":false,
  1543. "isConditionEnd":false,
  1544. "IsCondition":false,
  1545. "Condition":"Send",
  1546. "CmdID":"d1095eff-90a5-40e4-8335-9cdd14e8d030",
  1547. "Action":"18断开",
  1548. "Parameter":"A:3",
  1549. "Level":"",
  1550. "Parent":null,
  1551. "TempParent":null,
  1552. "TempID":"",
  1553. "ActionType":1,
  1554. "SerialNumber":"11"
  1555. },
  1556. {
  1557. "ID":"13",
  1558. "ChangeObje":null,
  1559. "SourceID":"79bf24a8-f729-4e7a-9a8e-a907e70135a9",
  1560. "isConditionStart":false,
  1561. "isConditionEnd":false,
  1562. "IsCondition":false,
  1563. "Condition":"Send",
  1564. "CmdID":"d1095eff-90a5-40e4-8335-9cdd14e8d030",
  1565. "Action":"18断开",
  1566. "Parameter":"A:4",
  1567. "Level":"",
  1568. "Parent":null,
  1569. "TempParent":null,
  1570. "TempID":"",
  1571. "ActionType":1,
  1572. "SerialNumber":"13"
  1573. },
  1574. {
  1575. "ID":"14",
  1576. "ChangeObje":null,
  1577. "SourceID":"f5f1217e-f606-4372-8650-4363931fa8e1",
  1578. "isConditionStart":false,
  1579. "isConditionEnd":false,
  1580. "IsCondition":false,
  1581. "Condition":"Wait",
  1582. "CmdID":null,
  1583. "Action":"0:0:0:500",
  1584. "Parameter":null,
  1585. "Level":"",
  1586. "Parent":null,
  1587. "TempParent":null,
  1588. "TempID":"",
  1589. "ActionType":0,
  1590. "SerialNumber":"14"
  1591. },
  1592. {
  1593. "ID":"16",
  1594. "ChangeObje":null,
  1595. "SourceID":"f5f1217e-f606-4372-8650-4363931fa8e1",
  1596. "isConditionStart":false,
  1597. "isConditionEnd":false,
  1598. "IsCondition":false,
  1599. "Condition":"Wait",
  1600. "CmdID":null,
  1601. "Action":"0:0:0:500",
  1602. "Parameter":null,
  1603. "Level":"",
  1604. "Parent":null,
  1605. "TempParent":null,
  1606. "TempID":"",
  1607. "ActionType":0,
  1608. "SerialNumber":"16"
  1609. },
  1610. {
  1611. "ID":"15",
  1612. "ChangeObje":null,
  1613. "SourceID":"f5361d60-6868-4c59-806b-22b85e7c9e3e",
  1614. "isConditionStart":false,
  1615. "isConditionEnd":false,
  1616. "IsCondition":false,
  1617. "Condition":"Goto",
  1618. "CmdID":null,
  1619. "Action":"放起",
  1620. "Parameter":null,
  1621. "Level":"",
  1622. "Parent":null,
  1623. "TempParent":null,
  1624. "TempID":"",
  1625. "ActionType":2,
  1626. "SerialNumber":"15"
  1627. },
  1628. {
  1629. "ID":"17",
  1630. "ChangeObje":null,
  1631. "SourceID":"4d3266e8-64b5-4765-a36d-7e271eb3c8e8",
  1632. "isConditionStart":false,
  1633. "isConditionEnd":false,
  1634. "IsCondition":false,
  1635. "Condition":"Goto",
  1636. "CmdID":null,
  1637. "Action":"放起",
  1638. "Parameter":null,
  1639. "Level":"",
  1640. "Parent":null,
  1641. "TempParent":null,
  1642. "TempID":"",
  1643. "ActionType":2,
  1644. "SerialNumber":"17"
  1645. }
  1646. ],
  1647. "MouserUpActionList":[
  1648. {
  1649. "ID":"01",
  1650. "ChangeObje":null,
  1651. "SourceID":"6bee9008-ccd6-49e1-864d-3b9b73d3a61b",
  1652. "isConditionStart":false,
  1653. "isConditionEnd":false,
  1654. "IsCondition":false,
  1655. "Condition":"Hide",
  1656. "CmdID":null,
  1657. "Action":"隐藏",
  1658. "Parameter":null,
  1659. "Level":"",
  1660. "Parent":null,
  1661. "TempParent":null,
  1662. "TempID":"",
  1663. "ActionType":3,
  1664. "SerialNumber":"01"
  1665. }
  1666. ],
  1667. "ButtonType":0,
  1668. "Text":"是",
  1669. "BackIconObjID":"82",
  1670. "BackIcon":"82.png",
  1671. "ActionIconObjID":"81",
  1672. "ActionIcon":"81.png",
  1673. "BrackgroupStr":"#FF03A9F4",
  1674. "ForegroundStr":"#FF00FA9A",
  1675. "FontSize":22,
  1676. "State":0,
  1677. "IsPanel":false,
  1678. "EnityName":"Button",
  1679. "IsPressDown":false,
  1680. "StateLocke":false,
  1681. "ActionType":2,
  1682. "Code":"f1f5b0ea-bc03-4abd-a718-0e809fce7819",
  1683. "ID":"f1f5b0ea-bc03-4abd-a718-0e809fce7819",
  1684. "Left":295,
  1685. "Top":256,
  1686. "Width":126,
  1687. "Height":59,
  1688. "ZIndex":100200,
  1689. "GroupNumber":"",
  1690. "IsRunVisiable":true,
  1691. "IsVisibility":false,
  1692. "isSyn":false,
  1693. "WindowID":"6bee9008-ccd6-49e1-864d-3b9b73d3a61b",
  1694. "PanelID":null,
  1695. "IsLock":false,
  1696. "IsWindow":false
  1697. },
  1698. {
  1699. "Name":"V7--取消",
  1700. "MouseDownActionList":[
  1701. {
  1702. "ID":"01",
  1703. "ChangeObje":null,
  1704. "SourceID":"6bee9008-ccd6-49e1-864d-3b9b73d3a61b",
  1705. "isConditionStart":false,
  1706. "isConditionEnd":false,
  1707. "IsCondition":false,
  1708. "Condition":"Hide",
  1709. "CmdID":null,
  1710. "Action":"隐藏",
  1711. "Parameter":null,
  1712. "Level":"",
  1713. "Parent":null,
  1714. "TempParent":null,
  1715. "TempID":"",
  1716. "ActionType":3,
  1717. "SerialNumber":"01"
  1718. },
  1719. {
  1720. "ID":"02",
  1721. "ChangeObje":null,
  1722. "SourceID":"aea34c76-4216-469b-9610-9889a2d42d06",
  1723. "isConditionStart":false,
  1724. "isConditionEnd":false,
  1725. "IsCondition":false,
  1726. "Condition":"Goto",
  1727. "CmdID":null,
  1728. "Action":"按下",
  1729. "Parameter":null,
  1730. "Level":"",
  1731. "Parent":null,
  1732. "TempParent":null,
  1733. "TempID":"",
  1734. "ActionType":2,
  1735. "SerialNumber":"02"
  1736. }
  1737. ],
  1738. "MouserUpActionList":[
  1739. ],
  1740. "ButtonType":0,
  1741. "Text":"取消",
  1742. "BackIconObjID":"82",
  1743. "BackIcon":"82.png",
  1744. "ActionIconObjID":"82",
  1745. "ActionIcon":"82.png",
  1746. "BrackgroupStr":"#FF03A9F4",
  1747. "ForegroundStr":"#FF40E0D0",
  1748. "FontSize":22,
  1749. "State":0,
  1750. "IsPanel":false,
  1751. "EnityName":"Button",
  1752. "IsPressDown":false,
  1753. "StateLocke":false,
  1754. "ActionType":2,
  1755. "Code":"d48139e2-7556-4fc8-b332-960298d369dc",
  1756. "ID":"d48139e2-7556-4fc8-b332-960298d369dc",
  1757. "Left":503,
  1758. "Top":256,
  1759. "Width":126,
  1760. "Height":59,
  1761. "ZIndex":100300,
  1762. "GroupNumber":"",
  1763. "IsRunVisiable":true,
  1764. "IsVisibility":false,
  1765. "isSyn":false,
  1766. "WindowID":"6bee9008-ccd6-49e1-864d-3b9b73d3a61b",
  1767. "PanelID":null,
  1768. "IsLock":false,
  1769. "IsWindow":false
  1770. },
  1771. {
  1772. "Name":"V5--Btn40",
  1773. "MouseDownActionList":[
  1774. {
  1775. "ID":"01",
  1776. "ChangeObje":null,
  1777. "SourceID":"703f60d4-0932-4dbf-99c9-a53059f7d0ae",
  1778. "isConditionStart":false,
  1779. "isConditionEnd":false,
  1780. "IsCondition":false,
  1781. "Condition":"LoadModel",
  1782. "CmdID":null,
  1783. "Action":"加载模式:__1_1_1",
  1784. "Parameter":"__1_1_1",
  1785. "Level":"",
  1786. "Parent":null,
  1787. "TempParent":null,
  1788. "TempID":"",
  1789. "ActionType":9,
  1790. "SerialNumber":"01"
  1791. }
  1792. ],
  1793. "MouserUpActionList":[
  1794. ],
  1795. "ButtonType":0,
  1796. "Text":"",
  1797. "BackIconObjID":"167",
  1798. "BackIcon":"167.png",
  1799. "ActionIconObjID":"166",
  1800. "ActionIcon":"166.png",
  1801. "BrackgroupStr":"#FF03A9F4",
  1802. "ForegroundStr":"#FF000000",
  1803. "FontSize":14,
  1804. "State":0,
  1805. "IsPanel":false,
  1806. "EnityName":"Button",
  1807. "IsPressDown":false,
  1808. "StateLocke":false,
  1809. "ActionType":2,
  1810. "Code":"49653a62-99cb-40e1-a513-60e42893adb7",
  1811. "ID":"49653a62-99cb-40e1-a513-60e42893adb7",
  1812. "Left":164,
  1813. "Top":390,
  1814. "Width":75,
  1815. "Height":42,
  1816. "ZIndex":40300,
  1817. "GroupNumber":"",
  1818. "IsRunVisiable":true,
  1819. "IsVisibility":true,
  1820. "isSyn":false,
  1821. "WindowID":"9a0dff23-8633-4e7f-89bf-cc4f68ec88e1",
  1822. "PanelID":null,
  1823. "IsLock":false,
  1824. "IsWindow":false
  1825. },
  1826. {
  1827. "Name":"V5--Btn41",
  1828. "MouseDownActionList":[
  1829. {
  1830. "ID":"01",
  1831. "ChangeObje":null,
  1832. "SourceID":"703f60d4-0932-4dbf-99c9-a53059f7d0ae",
  1833. "isConditionStart":false,
  1834. "isConditionEnd":false,
  1835. "IsCondition":false,
  1836. "Condition":"LoadModel",
  1837. "CmdID":null,
  1838. "Action":"加载模式:__2_2_0",
  1839. "Parameter":"__2_2_0",
  1840. "Level":"",
  1841. "Parent":null,
  1842. "TempParent":null,
  1843. "TempID":"",
  1844. "ActionType":9,
  1845. "SerialNumber":"01"
  1846. }
  1847. ],
  1848. "MouserUpActionList":[
  1849. ],
  1850. "ButtonType":0,
  1851. "Text":"",
  1852. "BackIconObjID":"163",
  1853. "BackIcon":"163.png",
  1854. "ActionIconObjID":"162",
  1855. "ActionIcon":"162.png",
  1856. "BrackgroupStr":"#FF03A9F4",
  1857. "ForegroundStr":"#FF000000",
  1858. "FontSize":14,
  1859. "State":0,
  1860. "IsPanel":false,
  1861. "EnityName":"Button",
  1862. "IsPressDown":false,
  1863. "StateLocke":false,
  1864. "ActionType":2,
  1865. "Code":"52de9a2e-d171-423d-860f-3fe2750ec757",
  1866. "ID":"52de9a2e-d171-423d-860f-3fe2750ec757",
  1867. "Left":281,
  1868. "Top":390,
  1869. "Width":75,
  1870. "Height":40,
  1871. "ZIndex":40400,
  1872. "GroupNumber":"",
  1873. "IsRunVisiable":true,
  1874. "IsVisibility":true,
  1875. "isSyn":false,
  1876. "WindowID":"9a0dff23-8633-4e7f-89bf-cc4f68ec88e1",
  1877. "PanelID":null,
  1878. "IsLock":false,
  1879. "IsWindow":false
  1880. },
  1881. {
  1882. "Name":"V5--Btn42",
  1883. "MouseDownActionList":[
  1884. {
  1885. "ID":"01",
  1886. "ChangeObje":null,
  1887. "SourceID":"703f60d4-0932-4dbf-99c9-a53059f7d0ae",
  1888. "isConditionStart":false,
  1889. "isConditionEnd":false,
  1890. "IsCondition":false,
  1891. "Condition":"LoadModel",
  1892. "CmdID":null,
  1893. "Action":"加载模式:__3_3_0",
  1894. "Parameter":"__3_3_0",
  1895. "Level":"",
  1896. "Parent":null,
  1897. "TempParent":null,
  1898. "TempID":"",
  1899. "ActionType":9,
  1900. "SerialNumber":"01"
  1901. }
  1902. ],
  1903. "MouserUpActionList":[
  1904. ],
  1905. "ButtonType":0,
  1906. "Text":"",
  1907. "BackIconObjID":"165",
  1908. "BackIcon":"165.png",
  1909. "ActionIconObjID":"164",
  1910. "ActionIcon":"164.png",
  1911. "BrackgroupStr":"#FF03A9F4",
  1912. "ForegroundStr":"#FF000000",
  1913. "FontSize":14,
  1914. "State":0,
  1915. "IsPanel":false,
  1916. "EnityName":"Button",
  1917. "IsPressDown":false,
  1918. "StateLocke":false,
  1919. "ActionType":2,
  1920. "Code":"ac0cc31c-a9b8-4bdf-88cf-928964b93ac5",
  1921. "ID":"ac0cc31c-a9b8-4bdf-88cf-928964b93ac5",
  1922. "Left":395,
  1923. "Top":390,
  1924. "Width":77,
  1925. "Height":40,
  1926. "ZIndex":40500,
  1927. "GroupNumber":"",
  1928. "IsRunVisiable":true,
  1929. "IsVisibility":true,
  1930. "isSyn":false,
  1931. "WindowID":"9a0dff23-8633-4e7f-89bf-cc4f68ec88e1",
  1932. "PanelID":null,
  1933. "IsLock":false,
  1934. "IsWindow":false
  1935. },
  1936. {
  1937. "Name":"V5--Btn43",
  1938. "MouseDownActionList":[
  1939. {
  1940. "ID":"01",
  1941. "ChangeObje":null,
  1942. "SourceID":"703f60d4-0932-4dbf-99c9-a53059f7d0ae",
  1943. "isConditionStart":false,
  1944. "isConditionEnd":false,
  1945. "IsCondition":false,
  1946. "Condition":"Command",
  1947. "CmdID":null,
  1948. "Action":"加载模式:woirejdjkl",
  1949. "Parameter":"woirejdjkl",
  1950. "Level":"",
  1951. "Parent":null,
  1952. "TempParent":null,
  1953. "TempID":"",
  1954. "ActionType":9,
  1955. "SerialNumber":null
  1956. }
  1957. ],
  1958. "MouserUpActionList":[
  1959. ],
  1960. "ButtonType":0,
  1961. "Text":"清屏",
  1962. "BackIconObjID":"113",
  1963. "BackIcon":"113.png",
  1964. "ActionIconObjID":"114",
  1965. "ActionIcon":"114.png",
  1966. "BrackgroupStr":"#FF03A9F4",
  1967. "ForegroundStr":"#FF00FA9A",
  1968. "FontSize":14,
  1969. "State":0,
  1970. "IsPanel":false,
  1971. "EnityName":"Button",
  1972. "IsPressDown":false,
  1973. "StateLocke":false,
  1974. "ActionType":2,
  1975. "Code":"7775e508-c6a5-4044-8264-24772a24fa97",
  1976. "ID":"7775e508-c6a5-4044-8264-24772a24fa97",
  1977. "Left":517,
  1978. "Top":390,
  1979. "Width":75,
  1980. "Height":40,
  1981. "ZIndex":40600,
  1982. "GroupNumber":"",
  1983. "IsRunVisiable":true,
  1984. "IsVisibility":true,
  1985. "isSyn":false,
  1986. "WindowID":"9a0dff23-8633-4e7f-89bf-cc4f68ec88e1",
  1987. "PanelID":null,
  1988. "IsLock":false,
  1989. "IsWindow":false
  1990. },
  1991. {
  1992. "Name":"V6-- LCD屏电源",
  1993. "MouseDownActionList":[
  1994. {
  1995. "ID":"02",
  1996. "ChangeObje":null,
  1997. "SourceID":"08be426e-f9ae-469c-8ea3-ab41403c9f47",
  1998. "isConditionStart":false,
  1999. "isConditionEnd":false,
  2000. "IsCondition":false,
  2001. "Condition":"Wait",
  2002. "CmdID":null,
  2003. "Action":"0:0:1:0",
  2004. "Parameter":null,
  2005. "Level":"",
  2006. "Parent":null,
  2007. "TempParent":null,
  2008. "TempID":"",
  2009. "ActionType":0,
  2010. "SerialNumber":"02"
  2011. },
  2012. {
  2013. "ID":"01",
  2014. "ChangeObje":null,
  2015. "SourceID":"79bf24a8-f729-4e7a-9a8e-a907e70135a9",
  2016. "isConditionStart":false,
  2017. "isConditionEnd":false,
  2018. "IsCondition":false,
  2019. "Condition":"Send",
  2020. "CmdID":"7ff5173f-a8a8-46fb-9b53-6f8d91771ede",
  2021. "Action":"18闭合",
  2022. "Parameter":"A:0",
  2023. "Level":"",
  2024. "Parent":null,
  2025. "TempParent":null,
  2026. "TempID":"",
  2027. "ActionType":1,
  2028. "SerialNumber":"01"
  2029. },
  2030. {
  2031. "ID":"03",
  2032. "ChangeObje":null,
  2033. "SourceID":"79bf24a8-f729-4e7a-9a8e-a907e70135a9",
  2034. "isConditionStart":false,
  2035. "isConditionEnd":false,
  2036. "IsCondition":false,
  2037. "Condition":"Send",
  2038. "CmdID":"7ff5173f-a8a8-46fb-9b53-6f8d91771ede",
  2039. "Action":"18闭合",
  2040. "Parameter":"A:1",
  2041. "Level":"",
  2042. "Parent":null,
  2043. "TempParent":null,
  2044. "TempID":"",
  2045. "ActionType":1,
  2046. "SerialNumber":null
  2047. }
  2048. ],
  2049. "MouserUpActionList":[
  2050. {
  2051. "ID":"02",
  2052. "ChangeObje":null,
  2053. "SourceID":"08be426e-f9ae-469c-8ea3-ab41403c9f47",
  2054. "isConditionStart":false,
  2055. "isConditionEnd":false,
  2056. "IsCondition":false,
  2057. "Condition":"Wait",
  2058. "CmdID":null,
  2059. "Action":"0:0:1:0",
  2060. "Parameter":null,
  2061. "Level":"",
  2062. "Parent":null,
  2063. "TempParent":null,
  2064. "TempID":"",
  2065. "ActionType":0,
  2066. "SerialNumber":"02"
  2067. },
  2068. {
  2069. "ID":"01",
  2070. "ChangeObje":null,
  2071. "SourceID":"79bf24a8-f729-4e7a-9a8e-a907e70135a9",
  2072. "isConditionStart":false,
  2073. "isConditionEnd":false,
  2074. "IsCondition":false,
  2075. "Condition":"Send",
  2076. "CmdID":"d1095eff-90a5-40e4-8335-9cdd14e8d030",
  2077. "Action":"18断开",
  2078. "Parameter":"A:0",
  2079. "Level":"",
  2080. "Parent":null,
  2081. "TempParent":null,
  2082. "TempID":"",
  2083. "ActionType":1,
  2084. "SerialNumber":"01"
  2085. },
  2086. {
  2087. "ID":"03",
  2088. "ChangeObje":null,
  2089. "SourceID":"79bf24a8-f729-4e7a-9a8e-a907e70135a9",
  2090. "isConditionStart":false,
  2091. "isConditionEnd":false,
  2092. "IsCondition":false,
  2093. "Condition":"Send",
  2094. "CmdID":"d1095eff-90a5-40e4-8335-9cdd14e8d030",
  2095. "Action":"18断开",
  2096. "Parameter":"A:1",
  2097. "Level":"",
  2098. "Parent":null,
  2099. "TempParent":null,
  2100. "TempID":"",
  2101. "ActionType":1,
  2102. "SerialNumber":null
  2103. }
  2104. ],
  2105. "ButtonType":2,
  2106. "Text":" LCD屏",
  2107. "BackIconObjID":"75",
  2108. "BackIcon":"75.png",
  2109. "ActionIconObjID":"73",
  2110. "ActionIcon":"73.png",
  2111. "BrackgroupStr":"#FF03A9F4",
  2112. "ForegroundStr":"#FF00FA9A",
  2113. "FontSize":14,
  2114. "State":0,
  2115. "IsPanel":false,
  2116. "EnityName":"Button",
  2117. "IsPressDown":false,
  2118. "StateLocke":false,
  2119. "ActionType":2,
  2120. "Code":"f5361d60-6868-4c59-806b-22b85e7c9e3e",
  2121. "ID":"f5361d60-6868-4c59-806b-22b85e7c9e3e",
  2122. "Left":218,
  2123. "Top":473,
  2124. "Width":115,
  2125. "Height":38,
  2126. "ZIndex":50100,
  2127. "GroupNumber":"",
  2128. "IsRunVisiable":true,
  2129. "IsVisibility":true,
  2130. "isSyn":true,
  2131. "WindowID":"d80a8b6e-9f88-41ff-b3a7-1ff8d6ee37a5",
  2132. "PanelID":null,
  2133. "IsLock":false,
  2134. "IsWindow":false
  2135. },
  2136. {
  2137. "Name":"V6--纳米黑板",
  2138. "MouseDownActionList":[
  2139. ],
  2140. "MouserUpActionList":[
  2141. ],
  2142. "ButtonType":2,
  2143. "Text":" 纳米黑板",
  2144. "BackIconObjID":"75",
  2145. "BackIcon":"75.png",
  2146. "ActionIconObjID":"73",
  2147. "ActionIcon":"73.png",
  2148. "BrackgroupStr":"#FF03A9F4",
  2149. "ForegroundStr":"#FF00FA9A",
  2150. "FontSize":14,
  2151. "State":0,
  2152. "IsPanel":false,
  2153. "EnityName":"Button",
  2154. "IsPressDown":false,
  2155. "StateLocke":false,
  2156. "ActionType":2,
  2157. "Code":"57f0f159-c516-4548-a25a-8ca76b46f665",
  2158. "ID":"57f0f159-c516-4548-a25a-8ca76b46f665",
  2159. "Left":421,
  2160. "Top":474,
  2161. "Width":119,
  2162. "Height":40,
  2163. "ZIndex":50200,
  2164. "GroupNumber":"",
  2165. "IsRunVisiable":true,
  2166. "IsVisibility":true,
  2167. "isSyn":true,
  2168. "WindowID":"d80a8b6e-9f88-41ff-b3a7-1ff8d6ee37a5",
  2169. "PanelID":null,
  2170. "IsLock":false,
  2171. "IsWindow":false
  2172. },
  2173. {
  2174. "Name":"V6--LED屏",
  2175. "MouseDownActionList":[
  2176. ],
  2177. "MouserUpActionList":[
  2178. ],
  2179. "ButtonType":2,
  2180. "Text":" LED屏",
  2181. "BackIconObjID":"75",
  2182. "BackIcon":"75.png",
  2183. "ActionIconObjID":"73",
  2184. "ActionIcon":"73.png",
  2185. "BrackgroupStr":"#FF03A9F4",
  2186. "ForegroundStr":"#FF00FA9A",
  2187. "FontSize":14,
  2188. "State":0,
  2189. "IsPanel":false,
  2190. "EnityName":"Button",
  2191. "IsPressDown":false,
  2192. "StateLocke":false,
  2193. "ActionType":2,
  2194. "Code":"282b285a-6195-4fce-b34e-2b2f94cbb4d4",
  2195. "ID":"282b285a-6195-4fce-b34e-2b2f94cbb4d4",
  2196. "Left":621,
  2197. "Top":474,
  2198. "Width":115,
  2199. "Height":40,
  2200. "ZIndex":50300,
  2201. "GroupNumber":"",
  2202. "IsRunVisiable":true,
  2203. "IsVisibility":true,
  2204. "isSyn":true,
  2205. "WindowID":"d80a8b6e-9f88-41ff-b3a7-1ff8d6ee37a5",
  2206. "PanelID":null,
  2207. "IsLock":false,
  2208. "IsWindow":false
  2209. },
  2210. {
  2211. "Name":"V6--投影机",
  2212. "MouseDownActionList":[
  2213. {
  2214. "ID":"01",
  2215. "ChangeObje":null,
  2216. "SourceID":"bbdc8ea4-ffc1-4bd2-8464-9fdab1b86398",
  2217. "isConditionStart":false,
  2218. "isConditionEnd":false,
  2219. "IsCondition":false,
  2220. "Condition":"Send",
  2221. "CmdID":"8f8a2ac2-1c05-46b8-a7e7-591ec4a4c431",
  2222. "Action":"POWERON",
  2223. "Parameter":null,
  2224. "Level":"",
  2225. "Parent":null,
  2226. "TempParent":null,
  2227. "TempID":"",
  2228. "ActionType":1,
  2229. "SerialNumber":"01"
  2230. }
  2231. ],
  2232. "MouserUpActionList":[
  2233. {
  2234. "ID":"01",
  2235. "ChangeObje":null,
  2236. "SourceID":"bbdc8ea4-ffc1-4bd2-8464-9fdab1b86398",
  2237. "isConditionStart":false,
  2238. "isConditionEnd":false,
  2239. "IsCondition":false,
  2240. "Condition":"Send",
  2241. "CmdID":"7cbc999d-8948-4738-be50-73e30e08eb1c",
  2242. "Action":"POWEROFF",
  2243. "Parameter":null,
  2244. "Level":"",
  2245. "Parent":null,
  2246. "TempParent":null,
  2247. "TempID":"",
  2248. "ActionType":1,
  2249. "SerialNumber":"01"
  2250. }
  2251. ],
  2252. "ButtonType":2,
  2253. "Text":" 投影机",
  2254. "BackIconObjID":"75",
  2255. "BackIcon":"75.png",
  2256. "ActionIconObjID":"73",
  2257. "ActionIcon":"73.png",
  2258. "BrackgroupStr":"#FF03A9F4",
  2259. "ForegroundStr":"#FF00FA9A",
  2260. "FontSize":14,
  2261. "State":0,
  2262. "IsPanel":false,
  2263. "EnityName":"Button",
  2264. "IsPressDown":false,
  2265. "StateLocke":false,
  2266. "ActionType":2,
  2267. "Code":"af1be7e3-33d6-4876-91c2-08265ea9729c",
  2268. "ID":"af1be7e3-33d6-4876-91c2-08265ea9729c",
  2269. "Left":219,
  2270. "Top":559,
  2271. "Width":119,
  2272. "Height":40,
  2273. "ZIndex":50400,
  2274. "GroupNumber":"",
  2275. "IsRunVisiable":true,
  2276. "IsVisibility":true,
  2277. "isSyn":true,
  2278. "WindowID":"d80a8b6e-9f88-41ff-b3a7-1ff8d6ee37a5",
  2279. "PanelID":null,
  2280. "IsLock":false,
  2281. "IsWindow":false
  2282. },
  2283. {
  2284. "Name":"V6-- 坐席电源",
  2285. "MouseDownActionList":[
  2286. {
  2287. "ID":"01",
  2288. "ChangeObje":null,
  2289. "SourceID":"79bf24a8-f729-4e7a-9a8e-a907e70135a9",
  2290. "isConditionStart":false,
  2291. "isConditionEnd":false,
  2292. "IsCondition":false,
  2293. "Condition":"Send",
  2294. "CmdID":"7ff5173f-a8a8-46fb-9b53-6f8d91771ede",
  2295. "Action":"18闭合",
  2296. "Parameter":"A:2",
  2297. "Level":"",
  2298. "Parent":null,
  2299. "TempParent":null,
  2300. "TempID":"",
  2301. "ActionType":1,
  2302. "SerialNumber":null
  2303. }
  2304. ],
  2305. "MouserUpActionList":[
  2306. {
  2307. "ID":"01",
  2308. "ChangeObje":null,
  2309. "SourceID":"79bf24a8-f729-4e7a-9a8e-a907e70135a9",
  2310. "isConditionStart":false,
  2311. "isConditionEnd":false,
  2312. "IsCondition":false,
  2313. "Condition":"Send",
  2314. "CmdID":"d1095eff-90a5-40e4-8335-9cdd14e8d030",
  2315. "Action":"18断开",
  2316. "Parameter":"A:2",
  2317. "Level":"",
  2318. "Parent":null,
  2319. "TempParent":null,
  2320. "TempID":"",
  2321. "ActionType":1,
  2322. "SerialNumber":null
  2323. }
  2324. ],
  2325. "ButtonType":2,
  2326. "Text":" 坐席电源",
  2327. "BackIconObjID":"75",
  2328. "BackIcon":"75.png",
  2329. "ActionIconObjID":"73",
  2330. "ActionIcon":"73.png",
  2331. "BrackgroupStr":"#FF03A9F4",
  2332. "ForegroundStr":"#FF00FA9A",
  2333. "FontSize":14,
  2334. "State":0,
  2335. "IsPanel":false,
  2336. "EnityName":"Button",
  2337. "IsPressDown":false,
  2338. "StateLocke":false,
  2339. "ActionType":2,
  2340. "Code":"4d3266e8-64b5-4765-a36d-7e271eb3c8e8",
  2341. "ID":"4d3266e8-64b5-4765-a36d-7e271eb3c8e8",
  2342. "Left":420,
  2343. "Top":559,
  2344. "Width":120,
  2345. "Height":42,
  2346. "ZIndex":50500,
  2347. "GroupNumber":"",
  2348. "IsRunVisiable":true,
  2349. "IsVisibility":true,
  2350. "isSyn":true,
  2351. "WindowID":"d80a8b6e-9f88-41ff-b3a7-1ff8d6ee37a5",
  2352. "PanelID":null,
  2353. "IsLock":false,
  2354. "IsWindow":false
  2355. },
  2356. {
  2357. "Name":"V6--NET系统",
  2358. "MouseDownActionList":[
  2359. ],
  2360. "MouserUpActionList":[
  2361. ],
  2362. "ButtonType":2,
  2363. "Text":" NET系统",
  2364. "BackIconObjID":"75",
  2365. "BackIcon":"75.png",
  2366. "ActionIconObjID":"73",
  2367. "ActionIcon":"73.png",
  2368. "BrackgroupStr":"#FF03A9F4",
  2369. "ForegroundStr":"#FF00FA9A",
  2370. "FontSize":14,
  2371. "State":0,
  2372. "IsPanel":false,
  2373. "EnityName":"Button",
  2374. "IsPressDown":false,
  2375. "StateLocke":false,
  2376. "ActionType":2,
  2377. "Code":"d8e01b72-15a4-4e4e-be3e-1ada2416a977",
  2378. "ID":"d8e01b72-15a4-4e4e-be3e-1ada2416a977",
  2379. "Left":621,
  2380. "Top":560,
  2381. "Width":114,
  2382. "Height":39,
  2383. "ZIndex":50600,
  2384. "GroupNumber":"",
  2385. "IsRunVisiable":true,
  2386. "IsVisibility":true,
  2387. "isSyn":true,
  2388. "WindowID":"d80a8b6e-9f88-41ff-b3a7-1ff8d6ee37a5",
  2389. "PanelID":null,
  2390. "IsLock":false,
  2391. "IsWindow":false
  2392. },
  2393. {
  2394. "Name":"V6--系统开关",
  2395. "MouseDownActionList":[
  2396. {
  2397. "ID":"02",
  2398. "ChangeObje":null,
  2399. "SourceID":"08be426e-f9ae-469c-8ea3-ab41403c9f47",
  2400. "isConditionStart":false,
  2401. "isConditionEnd":false,
  2402. "IsCondition":false,
  2403. "Condition":"Wait",
  2404. "CmdID":null,
  2405. "Action":"0:0:1:0",
  2406. "Parameter":null,
  2407. "Level":"",
  2408. "Parent":null,
  2409. "TempParent":null,
  2410. "TempID":"",
  2411. "ActionType":0,
  2412. "SerialNumber":"02"
  2413. },
  2414. {
  2415. "ID":"04",
  2416. "ChangeObje":null,
  2417. "SourceID":"08be426e-f9ae-469c-8ea3-ab41403c9f47",
  2418. "isConditionStart":false,
  2419. "isConditionEnd":false,
  2420. "IsCondition":false,
  2421. "Condition":"Wait",
  2422. "CmdID":null,
  2423. "Action":"0:0:1:0",
  2424. "Parameter":null,
  2425. "Level":"",
  2426. "Parent":null,
  2427. "TempParent":null,
  2428. "TempID":"",
  2429. "ActionType":0,
  2430. "SerialNumber":"04"
  2431. },
  2432. {
  2433. "ID":"06",
  2434. "ChangeObje":null,
  2435. "SourceID":"08be426e-f9ae-469c-8ea3-ab41403c9f47",
  2436. "isConditionStart":false,
  2437. "isConditionEnd":false,
  2438. "IsCondition":false,
  2439. "Condition":"Wait",
  2440. "CmdID":null,
  2441. "Action":"0:0:1:0",
  2442. "Parameter":null,
  2443. "Level":"",
  2444. "Parent":null,
  2445. "TempParent":null,
  2446. "TempID":"",
  2447. "ActionType":0,
  2448. "SerialNumber":"05"
  2449. },
  2450. {
  2451. "ID":"10",
  2452. "ChangeObje":null,
  2453. "SourceID":"08be426e-f9ae-469c-8ea3-ab41403c9f47",
  2454. "isConditionStart":false,
  2455. "isConditionEnd":false,
  2456. "IsCondition":false,
  2457. "Condition":"Wait",
  2458. "CmdID":null,
  2459. "Action":"0:0:1:0",
  2460. "Parameter":null,
  2461. "Level":"",
  2462. "Parent":null,
  2463. "TempParent":null,
  2464. "TempID":"",
  2465. "ActionType":0,
  2466. "SerialNumber":"09"
  2467. },
  2468. {
  2469. "ID":"12",
  2470. "ChangeObje":null,
  2471. "SourceID":"08be426e-f9ae-469c-8ea3-ab41403c9f47",
  2472. "isConditionStart":false,
  2473. "isConditionEnd":false,
  2474. "IsCondition":false,
  2475. "Condition":"Wait",
  2476. "CmdID":null,
  2477. "Action":"0:0:1:0",
  2478. "Parameter":null,
  2479. "Level":"",
  2480. "Parent":null,
  2481. "TempParent":null,
  2482. "TempID":"",
  2483. "ActionType":0,
  2484. "SerialNumber":"11"
  2485. },
  2486. {
  2487. "ID":"03",
  2488. "ChangeObje":null,
  2489. "SourceID":"facd33c7-c3a3-48fb-890d-313840816213",
  2490. "isConditionStart":false,
  2491. "isConditionEnd":false,
  2492. "IsCondition":false,
  2493. "Condition":"Send",
  2494. "CmdID":"d3ef66b3-13ad-49c9-828d-5dadd978198f",
  2495. "Action":"POWERON",
  2496. "Parameter":null,
  2497. "Level":"",
  2498. "Parent":null,
  2499. "TempParent":null,
  2500. "TempID":"",
  2501. "ActionType":1,
  2502. "SerialNumber":"03"
  2503. },
  2504. {
  2505. "ID":"17",
  2506. "ChangeObje":null,
  2507. "SourceID":"79bf24a8-f729-4e7a-9a8e-a907e70135a9",
  2508. "isConditionStart":false,
  2509. "isConditionEnd":false,
  2510. "IsCondition":false,
  2511. "Condition":"Send",
  2512. "CmdID":"7ff5173f-a8a8-46fb-9b53-6f8d91771ede",
  2513. "Action":"18闭合",
  2514. "Parameter":"A:0",
  2515. "Level":"",
  2516. "Parent":null,
  2517. "TempParent":null,
  2518. "TempID":"",
  2519. "ActionType":1,
  2520. "SerialNumber":"16"
  2521. },
  2522. {
  2523. "ID":"08",
  2524. "ChangeObje":null,
  2525. "SourceID":"08be426e-f9ae-469c-8ea3-ab41403c9f47",
  2526. "isConditionStart":false,
  2527. "isConditionEnd":false,
  2528. "IsCondition":false,
  2529. "Condition":"Wait",
  2530. "CmdID":null,
  2531. "Action":"0:0:1:0",
  2532. "Parameter":null,
  2533. "Level":"",
  2534. "Parent":null,
  2535. "TempParent":null,
  2536. "TempID":"",
  2537. "ActionType":0,
  2538. "SerialNumber":"07"
  2539. },
  2540. {
  2541. "ID":"09",
  2542. "ChangeObje":null,
  2543. "SourceID":"79bf24a8-f729-4e7a-9a8e-a907e70135a9",
  2544. "isConditionStart":false,
  2545. "isConditionEnd":false,
  2546. "IsCondition":false,
  2547. "Condition":"Send",
  2548. "CmdID":"7ff5173f-a8a8-46fb-9b53-6f8d91771ede",
  2549. "Action":"18闭合",
  2550. "Parameter":"A:2",
  2551. "Level":"",
  2552. "Parent":null,
  2553. "TempParent":null,
  2554. "TempID":"",
  2555. "ActionType":1,
  2556. "SerialNumber":"08"
  2557. },
  2558. {
  2559. "ID":"11",
  2560. "ChangeObje":null,
  2561. "SourceID":"79bf24a8-f729-4e7a-9a8e-a907e70135a9",
  2562. "isConditionStart":false,
  2563. "isConditionEnd":false,
  2564. "IsCondition":false,
  2565. "Condition":"Send",
  2566. "CmdID":"7ff5173f-a8a8-46fb-9b53-6f8d91771ede",
  2567. "Action":"18闭合",
  2568. "Parameter":"A:3",
  2569. "Level":"",
  2570. "Parent":null,
  2571. "TempParent":null,
  2572. "TempID":"",
  2573. "ActionType":1,
  2574. "SerialNumber":"10"
  2575. },
  2576. {
  2577. "ID":"13",
  2578. "ChangeObje":null,
  2579. "SourceID":"79bf24a8-f729-4e7a-9a8e-a907e70135a9",
  2580. "isConditionStart":false,
  2581. "isConditionEnd":false,
  2582. "IsCondition":false,
  2583. "Condition":"Send",
  2584. "CmdID":"7ff5173f-a8a8-46fb-9b53-6f8d91771ede",
  2585. "Action":"18闭合",
  2586. "Parameter":"A:4",
  2587. "Level":"",
  2588. "Parent":null,
  2589. "TempParent":null,
  2590. "TempID":"",
  2591. "ActionType":1,
  2592. "SerialNumber":"12"
  2593. },
  2594. {
  2595. "ID":"14",
  2596. "ChangeObje":null,
  2597. "SourceID":"f5f1217e-f606-4372-8650-4363931fa8e1",
  2598. "isConditionStart":false,
  2599. "isConditionEnd":false,
  2600. "IsCondition":false,
  2601. "Condition":"Wait",
  2602. "CmdID":null,
  2603. "Action":"0:0:0:500",
  2604. "Parameter":null,
  2605. "Level":"",
  2606. "Parent":null,
  2607. "TempParent":null,
  2608. "TempID":"",
  2609. "ActionType":0,
  2610. "SerialNumber":"13"
  2611. },
  2612. {
  2613. "ID":"16",
  2614. "ChangeObje":null,
  2615. "SourceID":"f5f1217e-f606-4372-8650-4363931fa8e1",
  2616. "isConditionStart":false,
  2617. "isConditionEnd":false,
  2618. "IsCondition":false,
  2619. "Condition":"Wait",
  2620. "CmdID":null,
  2621. "Action":"0:0:0:500",
  2622. "Parameter":null,
  2623. "Level":"",
  2624. "Parent":null,
  2625. "TempParent":null,
  2626. "TempID":"",
  2627. "ActionType":0,
  2628. "SerialNumber":"15"
  2629. },
  2630. {
  2631. "ID":"15",
  2632. "ChangeObje":null,
  2633. "SourceID":"f5361d60-6868-4c59-806b-22b85e7c9e3e",
  2634. "isConditionStart":false,
  2635. "isConditionEnd":false,
  2636. "IsCondition":false,
  2637. "Condition":"Goto",
  2638. "CmdID":null,
  2639. "Action":"按下",
  2640. "Parameter":null,
  2641. "Level":"",
  2642. "Parent":null,
  2643. "TempParent":null,
  2644. "TempID":"",
  2645. "ActionType":2,
  2646. "SerialNumber":"14"
  2647. },
  2648. {
  2649. "ID":"17",
  2650. "ChangeObje":null,
  2651. "SourceID":"4d3266e8-64b5-4765-a36d-7e271eb3c8e8",
  2652. "isConditionStart":false,
  2653. "isConditionEnd":false,
  2654. "IsCondition":false,
  2655. "Condition":"Goto",
  2656. "CmdID":null,
  2657. "Action":"按下",
  2658. "Parameter":null,
  2659. "Level":"",
  2660. "Parent":null,
  2661. "TempParent":null,
  2662. "TempID":"",
  2663. "ActionType":2,
  2664. "SerialNumber":"17"
  2665. },
  2666. {
  2667. "ID":"01",
  2668. "ChangeObje":null,
  2669. "SourceID":"facd33c7-c3a3-48fb-890d-313840816213",
  2670. "isConditionStart":false,
  2671. "isConditionEnd":false,
  2672. "IsCondition":false,
  2673. "Condition":"Send",
  2674. "CmdID":null,
  2675. "Action":"LIANJI",
  2676. "Parameter":null,
  2677. "Level":"",
  2678. "Parent":null,
  2679. "TempParent":null,
  2680. "TempID":"",
  2681. "ActionType":1,
  2682. "SerialNumber":"01"
  2683. },
  2684. {
  2685. "ID":"07",
  2686. "ChangeObje":null,
  2687. "SourceID":"79bf24a8-f729-4e7a-9a8e-a907e70135a9",
  2688. "isConditionStart":false,
  2689. "isConditionEnd":false,
  2690. "IsCondition":false,
  2691. "Condition":"Send",
  2692. "CmdID":null,
  2693. "Action":"18闭合",
  2694. "Parameter":"A:1",
  2695. "Level":"",
  2696. "Parent":null,
  2697. "TempParent":null,
  2698. "TempID":"",
  2699. "ActionType":1,
  2700. "SerialNumber":null
  2701. }
  2702. ],
  2703. "MouserUpActionList":[
  2704. {
  2705. "ID":"01",
  2706. "ChangeObje":null,
  2707. "SourceID":"6bee9008-ccd6-49e1-864d-3b9b73d3a61b",
  2708. "isConditionStart":false,
  2709. "isConditionEnd":false,
  2710. "IsCondition":false,
  2711. "Condition":"Show",
  2712. "CmdID":null,
  2713. "Action":"显示",
  2714. "Parameter":null,
  2715. "Level":"",
  2716. "Parent":null,
  2717. "TempParent":null,
  2718. "TempID":"",
  2719. "ActionType":3,
  2720. "SerialNumber":"01"
  2721. }
  2722. ],
  2723. "ButtonType":2,
  2724. "Text":"",
  2725. "BackIconObjID":"319",
  2726. "BackIcon":"319.jpg",
  2727. "ActionIconObjID":"318",
  2728. "ActionIcon":"318.jpg",
  2729. "BrackgroupStr":"#FF03A9F4",
  2730. "ForegroundStr":"#FF000000",
  2731. "FontSize":14,
  2732. "State":0,
  2733. "IsPanel":false,
  2734. "EnityName":"Button",
  2735. "IsPressDown":false,
  2736. "StateLocke":false,
  2737. "ActionType":2,
  2738. "Code":"aea34c76-4216-469b-9610-9889a2d42d06",
  2739. "ID":"aea34c76-4216-469b-9610-9889a2d42d06",
  2740. "Left":425,
  2741. "Top":634,
  2742. "Width":109,
  2743. "Height":47,
  2744. "ZIndex":50700,
  2745. "GroupNumber":"",
  2746. "IsRunVisiable":true,
  2747. "IsVisibility":true,
  2748. "isSyn":true,
  2749. "WindowID":"d80a8b6e-9f88-41ff-b3a7-1ff8d6ee37a5",
  2750. "PanelID":null,
  2751. "IsLock":false,
  2752. "IsWindow":false
  2753. },
  2754. {
  2755. "Name":"V8--Btn51",
  2756. "MouseDownActionList":[
  2757. ],
  2758. "MouserUpActionList":[
  2759. ],
  2760. "ButtonType":0,
  2761. "Text":"",
  2762. "BackIconObjID":"719",
  2763. "BackIcon":"719.png",
  2764. "ActionIconObjID":"718",
  2765. "ActionIcon":"718.png",
  2766. "BrackgroupStr":"#FF03A9F4",
  2767. "ForegroundStr":"#FF000000",
  2768. "FontSize":14,
  2769. "State":0,
  2770. "IsPanel":false,
  2771. "EnityName":"Button",
  2772. "IsPressDown":false,
  2773. "StateLocke":false,
  2774. "ActionType":2,
  2775. "Code":"8ecb7cde-f6dc-45ca-bc77-c19e287518b5",
  2776. "ID":"8ecb7cde-f6dc-45ca-bc77-c19e287518b5",
  2777. "Left":620,
  2778. "Top":518,
  2779. "Width":59,
  2780. "Height":57,
  2781. "ZIndex":60100,
  2782. "GroupNumber":"",
  2783. "IsRunVisiable":true,
  2784. "IsVisibility":false,
  2785. "isSyn":false,
  2786. "WindowID":"a12b287f-f68c-4efa-b652-d6e5b0a09d0d",
  2787. "PanelID":null,
  2788. "IsLock":false,
  2789. "IsWindow":false
  2790. },
  2791. {
  2792. "Name":"V8--Btn52",
  2793. "MouseDownActionList":[
  2794. ],
  2795. "MouserUpActionList":[
  2796. ],
  2797. "ButtonType":0,
  2798. "Text":"",
  2799. "BackIconObjID":"721",
  2800. "BackIcon":"721.png",
  2801. "ActionIconObjID":"720",
  2802. "ActionIcon":"720.png",
  2803. "BrackgroupStr":"#FF03A9F4",
  2804. "ForegroundStr":"#FF000000",
  2805. "FontSize":14,
  2806. "State":0,
  2807. "IsPanel":false,
  2808. "EnityName":"Button",
  2809. "IsPressDown":false,
  2810. "StateLocke":false,
  2811. "ActionType":2,
  2812. "Code":"bc85fb20-4dbd-4213-9177-55f991cbee95",
  2813. "ID":"bc85fb20-4dbd-4213-9177-55f991cbee95",
  2814. "Left":622,
  2815. "Top":608,
  2816. "Width":62,
  2817. "Height":61,
  2818. "ZIndex":60200,
  2819. "GroupNumber":"",
  2820. "IsRunVisiable":true,
  2821. "IsVisibility":false,
  2822. "isSyn":false,
  2823. "WindowID":"a12b287f-f68c-4efa-b652-d6e5b0a09d0d",
  2824. "PanelID":null,
  2825. "IsLock":false,
  2826. "IsWindow":false
  2827. },
  2828. {
  2829. "Name":"V8--Btn53",
  2830. "MouseDownActionList":[
  2831. ],
  2832. "MouserUpActionList":[
  2833. ],
  2834. "ButtonType":0,
  2835. "Text":"",
  2836. "BackIconObjID":"625",
  2837. "BackIcon":"625.png",
  2838. "ActionIconObjID":"624",
  2839. "ActionIcon":"624.png",
  2840. "BrackgroupStr":"#FF03A9F4",
  2841. "ForegroundStr":"#FF000000",
  2842. "FontSize":14,
  2843. "State":0,
  2844. "IsPanel":false,
  2845. "EnityName":"Button",
  2846. "IsPressDown":false,
  2847. "StateLocke":false,
  2848. "ActionType":2,
  2849. "Code":"ea13e2c3-1504-4ff5-aa5b-d53a10deef3a",
  2850. "ID":"ea13e2c3-1504-4ff5-aa5b-d53a10deef3a",
  2851. "Left":258,
  2852. "Top":588,
  2853. "Width":86,
  2854. "Height":36,
  2855. "ZIndex":60400,
  2856. "GroupNumber":"",
  2857. "IsRunVisiable":true,
  2858. "IsVisibility":false,
  2859. "isSyn":false,
  2860. "WindowID":"a12b287f-f68c-4efa-b652-d6e5b0a09d0d",
  2861. "PanelID":null,
  2862. "IsLock":false,
  2863. "IsWindow":false
  2864. },
  2865. {
  2866. "Name":"V8--Btn54",
  2867. "MouseDownActionList":[
  2868. ],
  2869. "MouserUpActionList":[
  2870. ],
  2871. "ButtonType":0,
  2872. "Text":"灯光回路1",
  2873. "BackIconObjID":"82",
  2874. "BackIcon":"82.png",
  2875. "ActionIconObjID":"81",
  2876. "ActionIcon":"81.png",
  2877. "BrackgroupStr":"#FF03A9F4",
  2878. "ForegroundStr":"#FF00FA9A",
  2879. "FontSize":14,
  2880. "State":0,
  2881. "IsPanel":false,
  2882. "EnityName":"Button",
  2883. "IsPressDown":false,
  2884. "StateLocke":false,
  2885. "ActionType":2,
  2886. "Code":"0d7949e8-0e16-4d0d-b757-8d56a1d11c3e",
  2887. "ID":"0d7949e8-0e16-4d0d-b757-8d56a1d11c3e",
  2888. "Left":402,
  2889. "Top":514,
  2890. "Width":118,
  2891. "Height":49,
  2892. "ZIndex":60600,
  2893. "GroupNumber":"",
  2894. "IsRunVisiable":true,
  2895. "IsVisibility":false,
  2896. "isSyn":false,
  2897. "WindowID":"a12b287f-f68c-4efa-b652-d6e5b0a09d0d",
  2898. "PanelID":null,
  2899. "IsLock":false,
  2900. "IsWindow":false
  2901. },
  2902. {
  2903. "Name":"V8--Btn55",
  2904. "MouseDownActionList":[
  2905. ],
  2906. "MouserUpActionList":[
  2907. ],
  2908. "ButtonType":0,
  2909. "Text":"灯光回路2",
  2910. "BackIconObjID":"82",
  2911. "BackIcon":"82.png",
  2912. "ActionIconObjID":"81",
  2913. "ActionIcon":"81.png",
  2914. "BrackgroupStr":"#FF03A9F4",
  2915. "ForegroundStr":"#FF00FA9A",
  2916. "FontSize":14,
  2917. "State":0,
  2918. "IsPanel":false,
  2919. "EnityName":"Button",
  2920. "IsPressDown":true,
  2921. "StateLocke":false,
  2922. "ActionType":2,
  2923. "Code":"c4b61613-6a4a-408c-a96f-353022724631",
  2924. "ID":"c4b61613-6a4a-408c-a96f-353022724631",
  2925. "Left":402,
  2926. "Top":573,
  2927. "Width":120,
  2928. "Height":48,
  2929. "ZIndex":60700,
  2930. "GroupNumber":"",
  2931. "IsRunVisiable":true,
  2932. "IsVisibility":false,
  2933. "isSyn":true,
  2934. "WindowID":"a12b287f-f68c-4efa-b652-d6e5b0a09d0d",
  2935. "PanelID":null,
  2936. "IsLock":false,
  2937. "IsWindow":false
  2938. },
  2939. {
  2940. "Name":"V8--Btn56",
  2941. "MouseDownActionList":[
  2942. ],
  2943. "MouserUpActionList":[
  2944. ],
  2945. "ButtonType":0,
  2946. "Text":"灯光回路3",
  2947. "BackIconObjID":"82",
  2948. "BackIcon":"82.png",
  2949. "ActionIconObjID":"81",
  2950. "ActionIcon":"81.png",
  2951. "BrackgroupStr":"#FF03A9F4",
  2952. "ForegroundStr":"#FF00FA9A",
  2953. "FontSize":14,
  2954. "State":0,
  2955. "IsPanel":false,
  2956. "EnityName":"Button",
  2957. "IsPressDown":true,
  2958. "StateLocke":false,
  2959. "ActionType":2,
  2960. "Code":"b5ffc29d-52d1-405f-8178-5bcb9bda9730",
  2961. "ID":"b5ffc29d-52d1-405f-8178-5bcb9bda9730",
  2962. "Left":401,
  2963. "Top":629,
  2964. "Width":124,
  2965. "Height":45,
  2966. "ZIndex":60800,
  2967. "GroupNumber":"",
  2968. "IsRunVisiable":true,
  2969. "IsVisibility":false,
  2970. "isSyn":true,
  2971. "WindowID":"a12b287f-f68c-4efa-b652-d6e5b0a09d0d",
  2972. "PanelID":null,
  2973. "IsLock":false,
  2974. "IsWindow":false
  2975. },
  2976. {
  2977. "Name":"V9--Btn53",
  2978. "MouseDownActionList":[
  2979. ],
  2980. "MouserUpActionList":[
  2981. ],
  2982. "ButtonType":0,
  2983. "Text":"",
  2984. "BackIconObjID":"181",
  2985. "BackIcon":"181.png",
  2986. "ActionIconObjID":"180",
  2987. "ActionIcon":"180.png",
  2988. "BrackgroupStr":"#FF03A9F4",
  2989. "ForegroundStr":"#FF000000",
  2990. "FontSize":14,
  2991. "State":0,
  2992. "IsPanel":false,
  2993. "EnityName":"Button",
  2994. "IsPressDown":false,
  2995. "StateLocke":false,
  2996. "ActionType":2,
  2997. "Code":"dff6a62f-77bc-4b45-a778-081aad4a9124",
  2998. "ID":"dff6a62f-77bc-4b45-a778-081aad4a9124",
  2999. "Left":245,
  3000. "Top":444,
  3001. "Width":55,
  3002. "Height":28,
  3003. "ZIndex":10100,
  3004. "GroupNumber":"",
  3005. "IsRunVisiable":true,
  3006. "IsVisibility":false,
  3007. "isSyn":true,
  3008. "WindowID":"cb2687fd-931a-4b38-a76d-9c3ea171b8d8",
  3009. "PanelID":null,
  3010. "IsLock":false,
  3011. "IsWindow":false
  3012. },
  3013. {
  3014. "Name":"V9--Btn55",
  3015. "MouseDownActionList":[
  3016. ],
  3017. "MouserUpActionList":[
  3018. ],
  3019. "ButtonType":0,
  3020. "Text":"",
  3021. "BackIconObjID":"181",
  3022. "BackIcon":"181.png",
  3023. "ActionIconObjID":"180",
  3024. "ActionIcon":"180.png",
  3025. "BrackgroupStr":"#FF03A9F4",
  3026. "ForegroundStr":"#FF000000",
  3027. "FontSize":14,
  3028. "State":0,
  3029. "IsPanel":false,
  3030. "EnityName":"Button",
  3031. "IsPressDown":false,
  3032. "StateLocke":false,
  3033. "ActionType":2,
  3034. "Code":"88506bfd-67e2-45df-938d-41d55eaec351",
  3035. "ID":"88506bfd-67e2-45df-938d-41d55eaec351",
  3036. "Left":376,
  3037. "Top":444,
  3038. "Width":55,
  3039. "Height":28,
  3040. "ZIndex":10200,
  3041. "GroupNumber":"",
  3042. "IsRunVisiable":true,
  3043. "IsVisibility":false,
  3044. "isSyn":true,
  3045. "WindowID":"cb2687fd-931a-4b38-a76d-9c3ea171b8d8",
  3046. "PanelID":null,
  3047. "IsLock":false,
  3048. "IsWindow":false
  3049. },
  3050. {
  3051. "Name":"V9--Btn56",
  3052. "MouseDownActionList":[
  3053. ],
  3054. "MouserUpActionList":[
  3055. ],
  3056. "ButtonType":0,
  3057. "Text":"",
  3058. "BackIconObjID":"181",
  3059. "BackIcon":"181.png",
  3060. "ActionIconObjID":"180",
  3061. "ActionIcon":"180.png",
  3062. "BrackgroupStr":"#FF03A9F4",
  3063. "ForegroundStr":"#FF000000",
  3064. "FontSize":14,
  3065. "State":0,
  3066. "IsPanel":false,
  3067. "EnityName":"Button",
  3068. "IsPressDown":false,
  3069. "StateLocke":false,
  3070. "ActionType":2,
  3071. "Code":"c0fa5f5a-8cb9-492f-a961-5a9b3f40bbf9",
  3072. "ID":"c0fa5f5a-8cb9-492f-a961-5a9b3f40bbf9",
  3073. "Left":449,
  3074. "Top":444,
  3075. "Width":55,
  3076. "Height":28,
  3077. "ZIndex":10300,
  3078. "GroupNumber":"",
  3079. "IsRunVisiable":true,
  3080. "IsVisibility":false,
  3081. "isSyn":true,
  3082. "WindowID":"cb2687fd-931a-4b38-a76d-9c3ea171b8d8",
  3083. "PanelID":null,
  3084. "IsLock":false,
  3085. "IsWindow":false
  3086. },
  3087. {
  3088. "Name":"V9--Btn57",
  3089. "MouseDownActionList":[
  3090. ],
  3091. "MouserUpActionList":[
  3092. ],
  3093. "ButtonType":0,
  3094. "Text":"",
  3095. "BackIconObjID":"181",
  3096. "BackIcon":"181.png",
  3097. "ActionIconObjID":"180",
  3098. "ActionIcon":"180.png",
  3099. "BrackgroupStr":"#FF03A9F4",
  3100. "ForegroundStr":"#FF000000",
  3101. "FontSize":14,
  3102. "State":0,
  3103. "IsPanel":false,
  3104. "EnityName":"Button",
  3105. "IsPressDown":false,
  3106. "StateLocke":false,
  3107. "ActionType":2,
  3108. "Code":"239b9f9a-41c4-4758-8826-8197d1410663",
  3109. "ID":"239b9f9a-41c4-4758-8826-8197d1410663",
  3110. "Left":526,
  3111. "Top":444,
  3112. "Width":55,
  3113. "Height":28,
  3114. "ZIndex":10400,
  3115. "GroupNumber":"",
  3116. "IsRunVisiable":true,
  3117. "IsVisibility":false,
  3118. "isSyn":true,
  3119. "WindowID":"cb2687fd-931a-4b38-a76d-9c3ea171b8d8",
  3120. "PanelID":null,
  3121. "IsLock":false,
  3122. "IsWindow":false
  3123. },
  3124. {
  3125. "Name":"V9--Btn58",
  3126. "MouseDownActionList":[
  3127. ],
  3128. "MouserUpActionList":[
  3129. ],
  3130. "ButtonType":0,
  3131. "Text":"",
  3132. "BackIconObjID":"181",
  3133. "BackIcon":"181.png",
  3134. "ActionIconObjID":"180",
  3135. "ActionIcon":"180.png",
  3136. "BrackgroupStr":"#FF03A9F4",
  3137. "ForegroundStr":"#FF000000",
  3138. "FontSize":14,
  3139. "State":0,
  3140. "IsPanel":false,
  3141. "EnityName":"Button",
  3142. "IsPressDown":false,
  3143. "StateLocke":false,
  3144. "ActionType":2,
  3145. "Code":"a2c39871-f9c1-465e-8916-d331a11ed7ea",
  3146. "ID":"a2c39871-f9c1-465e-8916-d331a11ed7ea",
  3147. "Left":592,
  3148. "Top":444,
  3149. "Width":55,
  3150. "Height":28,
  3151. "ZIndex":10500,
  3152. "GroupNumber":"",
  3153. "IsRunVisiable":true,
  3154. "IsVisibility":false,
  3155. "isSyn":true,
  3156. "WindowID":"cb2687fd-931a-4b38-a76d-9c3ea171b8d8",
  3157. "PanelID":null,
  3158. "IsLock":false,
  3159. "IsWindow":false
  3160. },
  3161. {
  3162. "Name":"V0--Btn58",
  3163. "MouseDownActionList":[
  3164. {
  3165. "ID":"01",
  3166. "ChangeObje":null,
  3167. "SourceID":"a12b287f-f68c-4efa-b652-d6e5b0a09d0d",
  3168. "isConditionStart":false,
  3169. "isConditionEnd":false,
  3170. "IsCondition":false,
  3171. "Condition":"Show",
  3172. "CmdID":null,
  3173. "Action":"显示",
  3174. "Parameter":null,
  3175. "Level":"",
  3176. "Parent":null,
  3177. "TempParent":null,
  3178. "TempID":"",
  3179. "ActionType":3,
  3180. "SerialNumber":"01"
  3181. }
  3182. ],
  3183. "MouserUpActionList":[
  3184. ],
  3185. "ButtonType":1,
  3186. "Text":" 环境控制",
  3187. "BackIconObjID":"113",
  3188. "BackIcon":"113.png",
  3189. "ActionIconObjID":"114",
  3190. "ActionIcon":"114.png",
  3191. "BrackgroupStr":"#FF03A9F4",
  3192. "ForegroundStr":"#FF00FFFF",
  3193. "FontSize":14,
  3194. "State":0,
  3195. "IsPanel":false,
  3196. "EnityName":"Button",
  3197. "IsPressDown":false,
  3198. "StateLocke":false,
  3199. "ActionType":2,
  3200. "Code":"04d45c86-2121-402c-833d-762e11090c25",
  3201. "ID":"04d45c86-2121-402c-833d-762e11090c25",
  3202. "Left":419,
  3203. "Top":726,
  3204. "Width":90,
  3205. "Height":38,
  3206. "ZIndex":500,
  3207. "GroupNumber":"1",
  3208. "IsRunVisiable":true,
  3209. "IsVisibility":true,
  3210. "isSyn":true,
  3211. "WindowID":"64a2f252-370a-4bc6-a817-3397f8abb4dc",
  3212. "PanelID":null,
  3213. "IsLock":false,
  3214. "IsWindow":false
  3215. },
  3216. {
  3217. "Name":"V0--Btn59",
  3218. "MouseDownActionList":[
  3219. {
  3220. "ID":"01",
  3221. "ChangeObje":null,
  3222. "SourceID":"ab842585-0c91-4e65-bfed-a219bcaaeb43",
  3223. "isConditionStart":false,
  3224. "isConditionEnd":false,
  3225. "IsCondition":false,
  3226. "Condition":"Show",
  3227. "CmdID":null,
  3228. "Action":"显示",
  3229. "Parameter":null,
  3230. "Level":"",
  3231. "Parent":null,
  3232. "TempParent":null,
  3233. "TempID":"",
  3234. "ActionType":3,
  3235. "SerialNumber":"01"
  3236. }
  3237. ],
  3238. "MouserUpActionList":[
  3239. ],
  3240. "ButtonType":1,
  3241. "Text":"投影机",
  3242. "BackIconObjID":"113",
  3243. "BackIcon":"113.png",
  3244. "ActionIconObjID":"114",
  3245. "ActionIcon":"114.png",
  3246. "BrackgroupStr":"#FF03A9F4",
  3247. "ForegroundStr":"#FF00FFFF",
  3248. "FontSize":14,
  3249. "State":0,
  3250. "IsPanel":false,
  3251. "EnityName":"Button",
  3252. "IsPressDown":false,
  3253. "StateLocke":false,
  3254. "ActionType":2,
  3255. "Code":"85df17cb-422c-4ebb-a174-a6f6b89aa534",
  3256. "ID":"85df17cb-422c-4ebb-a174-a6f6b89aa534",
  3257. "Left":514,
  3258. "Top":726,
  3259. "Width":90,
  3260. "Height":40,
  3261. "ZIndex":600,
  3262. "GroupNumber":"2",
  3263. "IsRunVisiable":true,
  3264. "IsVisibility":true,
  3265. "isSyn":true,
  3266. "WindowID":"64a2f252-370a-4bc6-a817-3397f8abb4dc",
  3267. "PanelID":null,
  3268. "IsLock":false,
  3269. "IsWindow":false
  3270. },
  3271. {
  3272. "Name":"V0--Btn60",
  3273. "MouseDownActionList":[
  3274. {
  3275. "ID":"01",
  3276. "ChangeObje":null,
  3277. "SourceID":"08208721-41cc-4f1e-937b-3a1627389049",
  3278. "isConditionStart":false,
  3279. "isConditionEnd":false,
  3280. "IsCondition":false,
  3281. "Condition":"Show",
  3282. "CmdID":null,
  3283. "Action":"显示",
  3284. "Parameter":null,
  3285. "Level":"",
  3286. "Parent":null,
  3287. "TempParent":null,
  3288. "TempID":"",
  3289. "ActionType":3,
  3290. "SerialNumber":"01"
  3291. }
  3292. ],
  3293. "MouserUpActionList":[
  3294. ],
  3295. "ButtonType":1,
  3296. "Text":"LCD屏",
  3297. "BackIconObjID":"113",
  3298. "BackIcon":"113.png",
  3299. "ActionIconObjID":"114",
  3300. "ActionIcon":"114.png",
  3301. "BrackgroupStr":"#FF03A9F4",
  3302. "ForegroundStr":"#FF00FFFF",
  3303. "FontSize":14,
  3304. "State":0,
  3305. "IsPanel":false,
  3306. "EnityName":"Button",
  3307. "IsPressDown":true,
  3308. "StateLocke":false,
  3309. "ActionType":2,
  3310. "Code":"085b17a0-133d-48db-9557-dd4ad732a8d6",
  3311. "ID":"085b17a0-133d-48db-9557-dd4ad732a8d6",
  3312. "Left":616,
  3313. "Top":724,
  3314. "Width":90,
  3315. "Height":42,
  3316. "ZIndex":700,
  3317. "GroupNumber":"2",
  3318. "IsRunVisiable":true,
  3319. "IsVisibility":true,
  3320. "isSyn":false,
  3321. "WindowID":"64a2f252-370a-4bc6-a817-3397f8abb4dc",
  3322. "PanelID":null,
  3323. "IsLock":false,
  3324. "IsWindow":false
  3325. },
  3326. {
  3327. "Name":"V0--Btn61",
  3328. "MouseDownActionList":[
  3329. {
  3330. "ID":"01",
  3331. "ChangeObje":null,
  3332. "SourceID":"9a0dff23-8633-4e7f-89bf-cc4f68ec88e1",
  3333. "isConditionStart":false,
  3334. "isConditionEnd":false,
  3335. "IsCondition":false,
  3336. "Condition":"Show",
  3337. "CmdID":null,
  3338. "Action":"显示",
  3339. "Parameter":null,
  3340. "Level":"",
  3341. "Parent":null,
  3342. "TempParent":null,
  3343. "TempID":"",
  3344. "ActionType":3,
  3345. "SerialNumber":"01"
  3346. }
  3347. ],
  3348. "MouserUpActionList":[
  3349. ],
  3350. "ButtonType":1,
  3351. "Text":"LED屏",
  3352. "BackIconObjID":"113",
  3353. "BackIcon":"113.png",
  3354. "ActionIconObjID":"114",
  3355. "ActionIcon":"114.png",
  3356. "BrackgroupStr":"#FF03A9F4",
  3357. "ForegroundStr":"#FF00FFFF",
  3358. "FontSize":14,
  3359. "State":0,
  3360. "IsPanel":false,
  3361. "EnityName":"Button",
  3362. "IsPressDown":false,
  3363. "StateLocke":false,
  3364. "ActionType":2,
  3365. "Code":"9a4f5cc7-f394-47a7-8d1f-4d7fa02a73cd",
  3366. "ID":"9a4f5cc7-f394-47a7-8d1f-4d7fa02a73cd",
  3367. "Left":718,
  3368. "Top":726,
  3369. "Width":90,
  3370. "Height":40,
  3371. "ZIndex":800,
  3372. "GroupNumber":"2",
  3373. "IsRunVisiable":true,
  3374. "IsVisibility":true,
  3375. "isSyn":true,
  3376. "WindowID":"64a2f252-370a-4bc6-a817-3397f8abb4dc",
  3377. "PanelID":null,
  3378. "IsLock":false,
  3379. "IsWindow":false
  3380. },
  3381. {
  3382. "Name":"V0--Btn61",
  3383. "MouseDownActionList":[
  3384. {
  3385. "ID":"01",
  3386. "ChangeObje":null,
  3387. "SourceID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  3388. "isConditionStart":false,
  3389. "isConditionEnd":false,
  3390. "IsCondition":false,
  3391. "Condition":"Show",
  3392. "CmdID":null,
  3393. "Action":"显示",
  3394. "Parameter":null,
  3395. "Level":"",
  3396. "Parent":null,
  3397. "TempParent":null,
  3398. "TempID":"",
  3399. "ActionType":3,
  3400. "SerialNumber":"01"
  3401. }
  3402. ],
  3403. "MouserUpActionList":[
  3404. ],
  3405. "ButtonType":1,
  3406. "Text":"",
  3407. "BackIconObjID":"22",
  3408. "BackIcon":"22.png",
  3409. "ActionIconObjID":"16",
  3410. "ActionIcon":"16.png",
  3411. "BrackgroupStr":"#FF03A9F4",
  3412. "ForegroundStr":"#FF000000",
  3413. "FontSize":14,
  3414. "State":0,
  3415. "IsPanel":false,
  3416. "EnityName":"Button",
  3417. "IsPressDown":false,
  3418. "StateLocke":false,
  3419. "ActionType":2,
  3420. "Code":"146b3bd6-4c5f-49a4-885d-6dfc3180b98d",
  3421. "ID":"146b3bd6-4c5f-49a4-885d-6dfc3180b98d",
  3422. "Left":244,
  3423. "Top":730,
  3424. "Width":74,
  3425. "Height":34,
  3426. "ZIndex":900,
  3427. "GroupNumber":"1",
  3428. "IsRunVisiable":true,
  3429. "IsVisibility":true,
  3430. "isSyn":false,
  3431. "WindowID":"64a2f252-370a-4bc6-a817-3397f8abb4dc",
  3432. "PanelID":null,
  3433. "IsLock":false,
  3434. "IsWindow":false
  3435. },
  3436. {
  3437. "Name":"V0--Btn62",
  3438. "MouseDownActionList":[
  3439. ],
  3440. "MouserUpActionList":[
  3441. ],
  3442. "ButtonType":2,
  3443. "Text":"",
  3444. "BackIconObjID":"97",
  3445. "BackIcon":"97.png",
  3446. "ActionIconObjID":"98",
  3447. "ActionIcon":"98.png",
  3448. "BrackgroupStr":"#FF03A9F4",
  3449. "ForegroundStr":"#FF000000",
  3450. "FontSize":14,
  3451. "State":0,
  3452. "IsPanel":false,
  3453. "EnityName":"Button",
  3454. "IsPressDown":false,
  3455. "StateLocke":false,
  3456. "ActionType":2,
  3457. "Code":"355d3c32-1502-40b4-9ddd-663d5b8469e7",
  3458. "ID":"355d3c32-1502-40b4-9ddd-663d5b8469e7",
  3459. "Left":23,
  3460. "Top":634,
  3461. "Width":74,
  3462. "Height":46,
  3463. "ZIndex":1000,
  3464. "GroupNumber":"",
  3465. "IsRunVisiable":true,
  3466. "IsVisibility":true,
  3467. "isSyn":true,
  3468. "WindowID":"64a2f252-370a-4bc6-a817-3397f8abb4dc",
  3469. "PanelID":null,
  3470. "IsLock":false,
  3471. "IsWindow":false
  3472. },
  3473. {
  3474. "Name":"V0--Btn63",
  3475. "MouseDownActionList":[
  3476. ],
  3477. "MouserUpActionList":[
  3478. ],
  3479. "ButtonType":1,
  3480. "Text":"",
  3481. "BackIconObjID":"482",
  3482. "BackIcon":"482.png",
  3483. "ActionIconObjID":"498",
  3484. "ActionIcon":"498.png",
  3485. "BrackgroupStr":"#FF03A9F4",
  3486. "ForegroundStr":"#FF000000",
  3487. "FontSize":14,
  3488. "State":0,
  3489. "IsPanel":false,
  3490. "EnityName":"Button",
  3491. "IsPressDown":false,
  3492. "StateLocke":false,
  3493. "ActionType":2,
  3494. "Code":"69e53621-c945-450d-933f-abe7615f95fd",
  3495. "ID":"69e53621-c945-450d-933f-abe7615f95fd",
  3496. "Left":32,
  3497. "Top":578,
  3498. "Width":60,
  3499. "Height":41,
  3500. "ZIndex":1100,
  3501. "GroupNumber":"10",
  3502. "IsRunVisiable":true,
  3503. "IsVisibility":true,
  3504. "isSyn":true,
  3505. "WindowID":"64a2f252-370a-4bc6-a817-3397f8abb4dc",
  3506. "PanelID":null,
  3507. "IsLock":false,
  3508. "IsWindow":false
  3509. },
  3510. {
  3511. "Name":"V0--Btn64",
  3512. "MouseDownActionList":[
  3513. ],
  3514. "MouserUpActionList":[
  3515. ],
  3516. "ButtonType":1,
  3517. "Text":"",
  3518. "BackIconObjID":"483",
  3519. "BackIcon":"483.png",
  3520. "ActionIconObjID":"500",
  3521. "ActionIcon":"500.png",
  3522. "BrackgroupStr":"#FF03A9F4",
  3523. "ForegroundStr":"#FF000000",
  3524. "FontSize":14,
  3525. "State":0,
  3526. "IsPanel":false,
  3527. "EnityName":"Button",
  3528. "IsPressDown":false,
  3529. "StateLocke":false,
  3530. "ActionType":2,
  3531. "Code":"619ed8b8-7e59-4ab7-9aef-404aca90d799",
  3532. "ID":"619ed8b8-7e59-4ab7-9aef-404aca90d799",
  3533. "Left":29,
  3534. "Top":514,
  3535. "Width":59,
  3536. "Height":49,
  3537. "ZIndex":1200,
  3538. "GroupNumber":"10",
  3539. "IsRunVisiable":true,
  3540. "IsVisibility":true,
  3541. "isSyn":true,
  3542. "WindowID":"64a2f252-370a-4bc6-a817-3397f8abb4dc",
  3543. "PanelID":null,
  3544. "IsLock":false,
  3545. "IsWindow":false
  3546. },
  3547. {
  3548. "Name":"V0--Btn65",
  3549. "MouseDownActionList":[
  3550. ],
  3551. "MouserUpActionList":[
  3552. ],
  3553. "ButtonType":1,
  3554. "Text":"",
  3555. "BackIconObjID":"544",
  3556. "BackIcon":"544.png",
  3557. "ActionIconObjID":"529",
  3558. "ActionIcon":"529.png",
  3559. "BrackgroupStr":"#FF03A9F4",
  3560. "ForegroundStr":"#FF000000",
  3561. "FontSize":14,
  3562. "State":0,
  3563. "IsPanel":false,
  3564. "EnityName":"Button",
  3565. "IsPressDown":false,
  3566. "StateLocke":false,
  3567. "ActionType":2,
  3568. "Code":"01593695-92ec-4046-93c7-30b2d0d45978",
  3569. "ID":"01593695-92ec-4046-93c7-30b2d0d45978",
  3570. "Left":29,
  3571. "Top":449,
  3572. "Width":59,
  3573. "Height":50,
  3574. "ZIndex":1300,
  3575. "GroupNumber":"10",
  3576. "IsRunVisiable":true,
  3577. "IsVisibility":true,
  3578. "isSyn":true,
  3579. "WindowID":"64a2f252-370a-4bc6-a817-3397f8abb4dc",
  3580. "PanelID":null,
  3581. "IsLock":false,
  3582. "IsWindow":false
  3583. },
  3584. {
  3585. "Name":"V0--Btn66",
  3586. "MouseDownActionList":[
  3587. ],
  3588. "MouserUpActionList":[
  3589. ],
  3590. "ButtonType":1,
  3591. "Text":"",
  3592. "BackIconObjID":"87",
  3593. "BackIcon":"87.png",
  3594. "ActionIconObjID":"526",
  3595. "ActionIcon":"526.png",
  3596. "BrackgroupStr":"#FF03A9F4",
  3597. "ForegroundStr":"#FF000000",
  3598. "FontSize":14,
  3599. "State":0,
  3600. "IsPanel":false,
  3601. "EnityName":"Button",
  3602. "IsPressDown":false,
  3603. "StateLocke":false,
  3604. "ActionType":2,
  3605. "Code":"05f5b819-1852-4be6-b167-736dd826857f",
  3606. "ID":"05f5b819-1852-4be6-b167-736dd826857f",
  3607. "Left":25,
  3608. "Top":390,
  3609. "Width":68,
  3610. "Height":46,
  3611. "ZIndex":1400,
  3612. "GroupNumber":"10",
  3613. "IsRunVisiable":true,
  3614. "IsVisibility":true,
  3615. "isSyn":true,
  3616. "WindowID":"64a2f252-370a-4bc6-a817-3397f8abb4dc",
  3617. "PanelID":null,
  3618. "IsLock":false,
  3619. "IsWindow":false
  3620. },
  3621. {
  3622. "Name":"V0--Btn67",
  3623. "MouseDownActionList":[
  3624. ],
  3625. "MouserUpActionList":[
  3626. ],
  3627. "ButtonType":1,
  3628. "Text":"",
  3629. "BackIconObjID":"80",
  3630. "BackIcon":"80.png",
  3631. "ActionIconObjID":"69",
  3632. "ActionIcon":"69.png",
  3633. "BrackgroupStr":"#FF03A9F4",
  3634. "ForegroundStr":"#FF000000",
  3635. "FontSize":14,
  3636. "State":0,
  3637. "IsPanel":false,
  3638. "EnityName":"Button",
  3639. "IsPressDown":false,
  3640. "StateLocke":false,
  3641. "ActionType":2,
  3642. "Code":"7f355b7c-feb3-463c-af22-71dcb659d9d1",
  3643. "ID":"7f355b7c-feb3-463c-af22-71dcb659d9d1",
  3644. "Left":30,
  3645. "Top":328,
  3646. "Width":65,
  3647. "Height":51,
  3648. "ZIndex":1500,
  3649. "GroupNumber":"10",
  3650. "IsRunVisiable":true,
  3651. "IsVisibility":true,
  3652. "isSyn":true,
  3653. "WindowID":"64a2f252-370a-4bc6-a817-3397f8abb4dc",
  3654. "PanelID":null,
  3655. "IsLock":false,
  3656. "IsWindow":false
  3657. },
  3658. {
  3659. "Name":"V0--Btn68",
  3660. "MouseDownActionList":[
  3661. ],
  3662. "MouserUpActionList":[
  3663. ],
  3664. "ButtonType":1,
  3665. "Text":"培训模式",
  3666. "BackIconObjID":"113",
  3667. "BackIcon":"113.png",
  3668. "ActionIconObjID":"114",
  3669. "ActionIcon":"114.png",
  3670. "BrackgroupStr":"#FF03A9F4",
  3671. "ForegroundStr":"#FF00FFFF",
  3672. "FontSize":12,
  3673. "State":0,
  3674. "IsPanel":false,
  3675. "EnityName":"Button",
  3676. "IsPressDown":false,
  3677. "StateLocke":false,
  3678. "ActionType":2,
  3679. "Code":"98da716e-4099-4366-9402-0fbc42fed04b",
  3680. "ID":"98da716e-4099-4366-9402-0fbc42fed04b",
  3681. "Left":18,
  3682. "Top":268,
  3683. "Width":81,
  3684. "Height":44,
  3685. "ZIndex":1600,
  3686. "GroupNumber":"10",
  3687. "IsRunVisiable":true,
  3688. "IsVisibility":true,
  3689. "isSyn":true,
  3690. "WindowID":"64a2f252-370a-4bc6-a817-3397f8abb4dc",
  3691. "PanelID":null,
  3692. "IsLock":false,
  3693. "IsWindow":false
  3694. },
  3695. {
  3696. "Name":"V0--Btn69",
  3697. "MouseDownActionList":[
  3698. ],
  3699. "MouserUpActionList":[
  3700. ],
  3701. "ButtonType":1,
  3702. "Text":"指挥模式",
  3703. "BackIconObjID":"113",
  3704. "BackIcon":"113.png",
  3705. "ActionIconObjID":"114",
  3706. "ActionIcon":"114.png",
  3707. "BrackgroupStr":"#FF03A9F4",
  3708. "ForegroundStr":"#FF00FFFF",
  3709. "FontSize":14,
  3710. "State":0,
  3711. "IsPanel":false,
  3712. "EnityName":"Button",
  3713. "IsPressDown":false,
  3714. "StateLocke":false,
  3715. "ActionType":2,
  3716. "Code":"5235b1e7-ab63-4958-9802-b1890bbc4bef",
  3717. "ID":"5235b1e7-ab63-4958-9802-b1890bbc4bef",
  3718. "Left":18,
  3719. "Top":212,
  3720. "Width":81,
  3721. "Height":44,
  3722. "ZIndex":1700,
  3723. "GroupNumber":"10",
  3724. "IsRunVisiable":true,
  3725. "IsVisibility":true,
  3726. "isSyn":true,
  3727. "WindowID":"64a2f252-370a-4bc6-a817-3397f8abb4dc",
  3728. "PanelID":null,
  3729. "IsLock":false,
  3730. "IsWindow":false
  3731. },
  3732. {
  3733. "Name":"V0--Btn70",
  3734. "MouseDownActionList":[
  3735. ],
  3736. "MouserUpActionList":[
  3737. ],
  3738. "ButtonType":1,
  3739. "Text":"会议模式",
  3740. "BackIconObjID":"113",
  3741. "BackIcon":"113.png",
  3742. "ActionIconObjID":"114",
  3743. "ActionIcon":"114.png",
  3744. "BrackgroupStr":"#FF03A9F4",
  3745. "ForegroundStr":"#FF00FFFF",
  3746. "FontSize":14,
  3747. "State":0,
  3748. "IsPanel":false,
  3749. "EnityName":"Button",
  3750. "IsPressDown":false,
  3751. "StateLocke":false,
  3752. "ActionType":2,
  3753. "Code":"6816fd97-dfe6-4e03-8645-10957bd3f3ab",
  3754. "ID":"6816fd97-dfe6-4e03-8645-10957bd3f3ab",
  3755. "Left":20,
  3756. "Top":156,
  3757. "Width":81,
  3758. "Height":44,
  3759. "ZIndex":2000,
  3760. "GroupNumber":"10",
  3761. "IsRunVisiable":true,
  3762. "IsVisibility":true,
  3763. "isSyn":true,
  3764. "WindowID":"64a2f252-370a-4bc6-a817-3397f8abb4dc",
  3765. "PanelID":null,
  3766. "IsLock":false,
  3767. "IsWindow":false
  3768. },
  3769. {
  3770. "Name":"V0--Btn71",
  3771. "MouseDownActionList":[
  3772. ],
  3773. "MouserUpActionList":[
  3774. ],
  3775. "ButtonType":1,
  3776. "Text":"演出模式",
  3777. "BackIconObjID":"113",
  3778. "BackIcon":"113.png",
  3779. "ActionIconObjID":"114",
  3780. "ActionIcon":"114.png",
  3781. "BrackgroupStr":"#FF03A9F4",
  3782. "ForegroundStr":"#FF00FFFF",
  3783. "FontSize":14,
  3784. "State":0,
  3785. "IsPanel":false,
  3786. "EnityName":"Button",
  3787. "IsPressDown":false,
  3788. "StateLocke":false,
  3789. "ActionType":2,
  3790. "Code":"8299d634-fcb5-4354-a8ea-2cfcae00424b",
  3791. "ID":"8299d634-fcb5-4354-a8ea-2cfcae00424b",
  3792. "Left":20,
  3793. "Top":98,
  3794. "Width":81,
  3795. "Height":44,
  3796. "ZIndex":2100,
  3797. "GroupNumber":"10",
  3798. "IsRunVisiable":true,
  3799. "IsVisibility":true,
  3800. "isSyn":true,
  3801. "WindowID":"64a2f252-370a-4bc6-a817-3397f8abb4dc",
  3802. "PanelID":null,
  3803. "IsLock":false,
  3804. "IsWindow":false
  3805. },
  3806. {
  3807. "Name":"V9--Btn72",
  3808. "MouseDownActionList":[
  3809. ],
  3810. "MouserUpActionList":[
  3811. ],
  3812. "ButtonType":0,
  3813. "Text":"",
  3814. "BackIconObjID":"293",
  3815. "BackIcon":"293.png",
  3816. "ActionIconObjID":"292",
  3817. "ActionIcon":"292.png",
  3818. "BrackgroupStr":"#FF03A9F4",
  3819. "ForegroundStr":"#FF000000",
  3820. "FontSize":14,
  3821. "State":0,
  3822. "IsPanel":false,
  3823. "EnityName":"Button",
  3824. "IsPressDown":false,
  3825. "StateLocke":false,
  3826. "ActionType":2,
  3827. "Code":"e550352e-8c99-46a3-9cf2-1381a34b791f",
  3828. "ID":"e550352e-8c99-46a3-9cf2-1381a34b791f",
  3829. "Left":311,
  3830. "Top":444,
  3831. "Width":55,
  3832. "Height":28,
  3833. "ZIndex":11800,
  3834. "GroupNumber":"",
  3835. "IsRunVisiable":true,
  3836. "IsVisibility":false,
  3837. "isSyn":true,
  3838. "WindowID":"cb2687fd-931a-4b38-a76d-9c3ea171b8d8",
  3839. "PanelID":null,
  3840. "IsLock":false,
  3841. "IsWindow":false
  3842. },
  3843. {
  3844. "Name":"V10--Btn67",
  3845. "MouseDownActionList":[
  3846. {
  3847. "ID":"02",
  3848. "ChangeObje":null,
  3849. "SourceID":"801f69af-533e-4172-be73-697742b09da8",
  3850. "isConditionStart":false,
  3851. "isConditionEnd":false,
  3852. "IsCondition":false,
  3853. "Condition":"Command",
  3854. "CmdID":null,
  3855. "Action":"执行命令: 自由屏",
  3856. "Parameter":"自由屏",
  3857. "Level":"",
  3858. "Parent":null,
  3859. "TempParent":null,
  3860. "TempID":"",
  3861. "ActionType":9,
  3862. "SerialNumber":"02"
  3863. },
  3864. {
  3865. "ID":"01",
  3866. "ChangeObje":null,
  3867. "SourceID":"801f69af-533e-4172-be73-697742b09da8",
  3868. "isConditionStart":false,
  3869. "isConditionEnd":false,
  3870. "IsCondition":false,
  3871. "Condition":"SetSplit",
  3872. "CmdID":null,
  3873. "Action":"设置分割线: 1行1列",
  3874. "Parameter":"1_1",
  3875. "Level":"",
  3876. "Parent":null,
  3877. "TempParent":null,
  3878. "TempID":"",
  3879. "ActionType":9,
  3880. "SerialNumber":"01"
  3881. }
  3882. ],
  3883. "MouserUpActionList":[
  3884. ],
  3885. "ButtonType":0,
  3886. "Text":"自由屏",
  3887. "BackIconObjID":"167",
  3888. "BackIcon":"167.png",
  3889. "ActionIconObjID":"166",
  3890. "ActionIcon":"166.png",
  3891. "BrackgroupStr":"#FF03A9F4",
  3892. "ForegroundStr":"#FF00FFFF",
  3893. "FontSize":14,
  3894. "State":0,
  3895. "IsPanel":false,
  3896. "EnityName":"Button",
  3897. "IsPressDown":false,
  3898. "StateLocke":false,
  3899. "ActionType":2,
  3900. "Code":"d55c81a8-54d7-4d90-aad7-4f34c3ba3950",
  3901. "ID":"d55c81a8-54d7-4d90-aad7-4f34c3ba3950",
  3902. "Left":205,
  3903. "Top":384,
  3904. "Width":65,
  3905. "Height":39,
  3906. "ZIndex":80300,
  3907. "GroupNumber":"3",
  3908. "IsRunVisiable":true,
  3909. "IsVisibility":false,
  3910. "isSyn":false,
  3911. "WindowID":"08208721-41cc-4f1e-937b-3a1627389049",
  3912. "PanelID":null,
  3913. "IsLock":false,
  3914. "IsWindow":false
  3915. },
  3916. {
  3917. "Name":"V10--Btn68",
  3918. "MouseDownActionList":[
  3919. {
  3920. "ID":"01",
  3921. "ChangeObje":null,
  3922. "SourceID":"801f69af-533e-4172-be73-697742b09da8",
  3923. "isConditionStart":false,
  3924. "isConditionEnd":false,
  3925. "IsCondition":false,
  3926. "Condition":"SetSplit",
  3927. "CmdID":null,
  3928. "Action":"设置分割线: 2行2列",
  3929. "Parameter":"2_2",
  3930. "Level":"",
  3931. "Parent":null,
  3932. "TempParent":null,
  3933. "TempID":"",
  3934. "ActionType":9,
  3935. "SerialNumber":null
  3936. }
  3937. ],
  3938. "MouserUpActionList":[
  3939. ],
  3940. "ButtonType":0,
  3941. "Text":"四分屏",
  3942. "BackIconObjID":"163",
  3943. "BackIcon":"163.png",
  3944. "ActionIconObjID":"162",
  3945. "ActionIcon":"162.png",
  3946. "BrackgroupStr":"#FF03A9F4",
  3947. "ForegroundStr":"#FF00FFFF",
  3948. "FontSize":14,
  3949. "State":0,
  3950. "IsPanel":false,
  3951. "EnityName":"Button",
  3952. "IsPressDown":false,
  3953. "StateLocke":false,
  3954. "ActionType":2,
  3955. "Code":"0cabb1ba-bcae-45d9-b019-2b45486f98e3",
  3956. "ID":"0cabb1ba-bcae-45d9-b019-2b45486f98e3",
  3957. "Left":329,
  3958. "Top":384,
  3959. "Width":65,
  3960. "Height":39,
  3961. "ZIndex":80400,
  3962. "GroupNumber":"3",
  3963. "IsRunVisiable":true,
  3964. "IsVisibility":false,
  3965. "isSyn":false,
  3966. "WindowID":"08208721-41cc-4f1e-937b-3a1627389049",
  3967. "PanelID":null,
  3968. "IsLock":false,
  3969. "IsWindow":false
  3970. },
  3971. {
  3972. "Name":"V10--Btn69",
  3973. "MouseDownActionList":[
  3974. {
  3975. "ID":"01",
  3976. "ChangeObje":null,
  3977. "SourceID":"801f69af-533e-4172-be73-697742b09da8",
  3978. "isConditionStart":false,
  3979. "isConditionEnd":false,
  3980. "IsCondition":false,
  3981. "Condition":"SetSplit",
  3982. "CmdID":null,
  3983. "Action":"设置分割线: 3行3列",
  3984. "Parameter":"3_3",
  3985. "Level":"",
  3986. "Parent":null,
  3987. "TempParent":null,
  3988. "TempID":"",
  3989. "ActionType":9,
  3990. "SerialNumber":null
  3991. }
  3992. ],
  3993. "MouserUpActionList":[
  3994. ],
  3995. "ButtonType":0,
  3996. "Text":"九分屏",
  3997. "BackIconObjID":"165",
  3998. "BackIcon":"165.png",
  3999. "ActionIconObjID":"164",
  4000. "ActionIcon":"164.png",
  4001. "BrackgroupStr":"#FF03A9F4",
  4002. "ForegroundStr":"#FF00FFFF",
  4003. "FontSize":14,
  4004. "State":0,
  4005. "IsPanel":false,
  4006. "EnityName":"Button",
  4007. "IsPressDown":false,
  4008. "StateLocke":false,
  4009. "ActionType":2,
  4010. "Code":"201e4bb0-c039-46c7-a55a-049d00de4769",
  4011. "ID":"201e4bb0-c039-46c7-a55a-049d00de4769",
  4012. "Left":438,
  4013. "Top":387,
  4014. "Width":65,
  4015. "Height":39,
  4016. "ZIndex":80500,
  4017. "GroupNumber":"3",
  4018. "IsRunVisiable":true,
  4019. "IsVisibility":false,
  4020. "isSyn":false,
  4021. "WindowID":"08208721-41cc-4f1e-937b-3a1627389049",
  4022. "PanelID":null,
  4023. "IsLock":false,
  4024. "IsWindow":false
  4025. },
  4026. {
  4027. "Name":"V10--Btn70",
  4028. "MouseDownActionList":[
  4029. {
  4030. "ID":"01",
  4031. "ChangeObje":null,
  4032. "SourceID":"801f69af-533e-4172-be73-697742b09da8",
  4033. "isConditionStart":false,
  4034. "isConditionEnd":false,
  4035. "IsCondition":false,
  4036. "Condition":"SetSplit",
  4037. "CmdID":null,
  4038. "Action":"设置分割线: 4行4列",
  4039. "Parameter":"4_4",
  4040. "Level":"",
  4041. "Parent":null,
  4042. "TempParent":null,
  4043. "TempID":"",
  4044. "ActionType":9,
  4045. "SerialNumber":null
  4046. }
  4047. ],
  4048. "MouserUpActionList":[
  4049. ],
  4050. "ButtonType":0,
  4051. "Text":"十六分屏",
  4052. "BackIconObjID":"169",
  4053. "BackIcon":"169.png",
  4054. "ActionIconObjID":"168",
  4055. "ActionIcon":"168.png",
  4056. "BrackgroupStr":"#FF03A9F4",
  4057. "ForegroundStr":"#FF00FFFF",
  4058. "FontSize":14,
  4059. "State":0,
  4060. "IsPanel":false,
  4061. "EnityName":"Button",
  4062. "IsPressDown":false,
  4063. "StateLocke":false,
  4064. "ActionType":2,
  4065. "Code":"2d4c49bc-905b-4f96-a65c-9b0a3e057b3f",
  4066. "ID":"2d4c49bc-905b-4f96-a65c-9b0a3e057b3f",
  4067. "Left":548,
  4068. "Top":388,
  4069. "Width":65,
  4070. "Height":39,
  4071. "ZIndex":80600,
  4072. "GroupNumber":"3",
  4073. "IsRunVisiable":true,
  4074. "IsVisibility":false,
  4075. "isSyn":false,
  4076. "WindowID":"08208721-41cc-4f1e-937b-3a1627389049",
  4077. "PanelID":null,
  4078. "IsLock":false,
  4079. "IsWindow":false
  4080. },
  4081. {
  4082. "Name":"V10--Btn71",
  4083. "MouseDownActionList":[
  4084. {
  4085. "ID":"01",
  4086. "ChangeObje":null,
  4087. "SourceID":"801f69af-533e-4172-be73-697742b09da8",
  4088. "isConditionStart":false,
  4089. "isConditionEnd":false,
  4090. "IsCondition":false,
  4091. "Condition":"Command",
  4092. "CmdID":null,
  4093. "Action":"执行命令: 清屏",
  4094. "Parameter":"清屏",
  4095. "Level":"",
  4096. "Parent":null,
  4097. "TempParent":null,
  4098. "TempID":"",
  4099. "ActionType":9,
  4100. "SerialNumber":null
  4101. }
  4102. ],
  4103. "MouserUpActionList":[
  4104. ],
  4105. "ButtonType":0,
  4106. "Text":"清屏",
  4107. "BackIconObjID":"113",
  4108. "BackIcon":"113.png",
  4109. "ActionIconObjID":"114",
  4110. "ActionIcon":"114.png",
  4111. "BrackgroupStr":"#FF03A9F4",
  4112. "ForegroundStr":"#FF00FFFF",
  4113. "FontSize":14,
  4114. "State":0,
  4115. "IsPanel":false,
  4116. "EnityName":"Button",
  4117. "IsPressDown":false,
  4118. "StateLocke":false,
  4119. "ActionType":2,
  4120. "Code":"95c5d676-46a5-4c46-b550-9bc013a59937",
  4121. "ID":"95c5d676-46a5-4c46-b550-9bc013a59937",
  4122. "Left":660,
  4123. "Top":386,
  4124. "Width":74,
  4125. "Height":41,
  4126. "ZIndex":80700,
  4127. "GroupNumber":"",
  4128. "IsRunVisiable":true,
  4129. "IsVisibility":false,
  4130. "isSyn":false,
  4131. "WindowID":"08208721-41cc-4f1e-937b-3a1627389049",
  4132. "PanelID":null,
  4133. "IsLock":false,
  4134. "IsWindow":false
  4135. },
  4136. {
  4137. "Name":"V9--Btn69",
  4138. "MouseDownActionList":[
  4139. {
  4140. "ID":"01",
  4141. "ChangeObje":null,
  4142. "SourceID":"dac9e82d-9707-4f99-9278-c9df95a08f83",
  4143. "isConditionStart":false,
  4144. "isConditionEnd":false,
  4145. "IsCondition":false,
  4146. "Condition":"LoadModel",
  4147. "CmdID":null,
  4148. "Action":"加载模式:__1_1_1",
  4149. "Parameter":"__1_1_1",
  4150. "Level":"",
  4151. "Parent":null,
  4152. "TempParent":null,
  4153. "TempID":"",
  4154. "ActionType":9,
  4155. "SerialNumber":null
  4156. }
  4157. ],
  4158. "MouserUpActionList":[
  4159. ],
  4160. "ButtonType":0,
  4161. "Text":"自由屏",
  4162. "BackIconObjID":"167",
  4163. "BackIcon":"167.png",
  4164. "ActionIconObjID":"166",
  4165. "ActionIcon":"166.png",
  4166. "BrackgroupStr":"#FF03A9F4",
  4167. "ForegroundStr":"#FF00FFFF",
  4168. "FontSize":14,
  4169. "State":0,
  4170. "IsPanel":false,
  4171. "EnityName":"Button",
  4172. "IsPressDown":false,
  4173. "StateLocke":false,
  4174. "ActionType":2,
  4175. "Code":"4142ab5b-ce52-4655-a28d-724bfabb24f0",
  4176. "ID":"4142ab5b-ce52-4655-a28d-724bfabb24f0",
  4177. "Left":282,
  4178. "Top":382,
  4179. "Width":79,
  4180. "Height":44,
  4181. "ZIndex":90300,
  4182. "GroupNumber":"",
  4183. "IsRunVisiable":true,
  4184. "IsVisibility":false,
  4185. "isSyn":false,
  4186. "WindowID":"ab842585-0c91-4e65-bfed-a219bcaaeb43",
  4187. "PanelID":null,
  4188. "IsLock":false,
  4189. "IsWindow":false
  4190. },
  4191. {
  4192. "Name":"V9--Btn70",
  4193. "MouseDownActionList":[
  4194. {
  4195. "ID":"01",
  4196. "ChangeObje":null,
  4197. "SourceID":"dac9e82d-9707-4f99-9278-c9df95a08f83",
  4198. "isConditionStart":false,
  4199. "isConditionEnd":false,
  4200. "IsCondition":false,
  4201. "Condition":"LoadModel",
  4202. "CmdID":null,
  4203. "Action":"加载模式:__2_2_0",
  4204. "Parameter":"__2_2_0",
  4205. "Level":"",
  4206. "Parent":null,
  4207. "TempParent":null,
  4208. "TempID":"",
  4209. "ActionType":9,
  4210. "SerialNumber":"01"
  4211. }
  4212. ],
  4213. "MouserUpActionList":[
  4214. ],
  4215. "ButtonType":0,
  4216. "Text":"四分屏",
  4217. "BackIconObjID":"163",
  4218. "BackIcon":"163.png",
  4219. "ActionIconObjID":"162",
  4220. "ActionIcon":"162.png",
  4221. "BrackgroupStr":"#FF03A9F4",
  4222. "ForegroundStr":"#FF00FFFF",
  4223. "FontSize":14,
  4224. "State":0,
  4225. "IsPanel":false,
  4226. "EnityName":"Button",
  4227. "IsPressDown":false,
  4228. "StateLocke":false,
  4229. "ActionType":2,
  4230. "Code":"9bb5b3e3-9e21-4716-8059-f5b35b24e3fa",
  4231. "ID":"9bb5b3e3-9e21-4716-8059-f5b35b24e3fa",
  4232. "Left":430,
  4233. "Top":382,
  4234. "Width":79,
  4235. "Height":44,
  4236. "ZIndex":90400,
  4237. "GroupNumber":"",
  4238. "IsRunVisiable":true,
  4239. "IsVisibility":false,
  4240. "isSyn":false,
  4241. "WindowID":"ab842585-0c91-4e65-bfed-a219bcaaeb43",
  4242. "PanelID":null,
  4243. "IsLock":false,
  4244. "IsWindow":false
  4245. },
  4246. {
  4247. "Name":"V9--Btn71",
  4248. "MouseDownActionList":[
  4249. {
  4250. "ID":"01",
  4251. "ChangeObje":null,
  4252. "SourceID":"dac9e82d-9707-4f99-9278-c9df95a08f83",
  4253. "isConditionStart":false,
  4254. "isConditionEnd":false,
  4255. "IsCondition":false,
  4256. "Condition":"LoadModel",
  4257. "CmdID":null,
  4258. "Action":"加载模式:dfgeghjy",
  4259. "Parameter":"dfgeghjy",
  4260. "Level":"",
  4261. "Parent":null,
  4262. "TempParent":null,
  4263. "TempID":"",
  4264. "ActionType":9,
  4265. "SerialNumber":"01"
  4266. }
  4267. ],
  4268. "MouserUpActionList":[
  4269. ],
  4270. "ButtonType":0,
  4271. "Text":"清屏",
  4272. "BackIconObjID":"419",
  4273. "BackIcon":"419.png",
  4274. "ActionIconObjID":"420",
  4275. "ActionIcon":"420.png",
  4276. "BrackgroupStr":"#FF03A9F4",
  4277. "ForegroundStr":"#FF7FFFD4",
  4278. "FontSize":14,
  4279. "State":0,
  4280. "IsPanel":false,
  4281. "EnityName":"Button",
  4282. "IsPressDown":false,
  4283. "StateLocke":false,
  4284. "ActionType":2,
  4285. "Code":"f47e84bb-c878-4b22-a9d6-eb2e307283bc",
  4286. "ID":"f47e84bb-c878-4b22-a9d6-eb2e307283bc",
  4287. "Left":572,
  4288. "Top":382,
  4289. "Width":79,
  4290. "Height":44,
  4291. "ZIndex":90500,
  4292. "GroupNumber":"",
  4293. "IsRunVisiable":true,
  4294. "IsVisibility":false,
  4295. "isSyn":false,
  4296. "WindowID":"ab842585-0c91-4e65-bfed-a219bcaaeb43",
  4297. "PanelID":null,
  4298. "IsLock":false,
  4299. "IsWindow":false
  4300. },
  4301. {
  4302. "Name":"V10--Btn72",
  4303. "MouseDownActionList":[
  4304. ],
  4305. "MouserUpActionList":[
  4306. ],
  4307. "ButtonType":2,
  4308. "Text":" PC1",
  4309. "BackIconObjID":"835",
  4310. "BackIcon":"835.png",
  4311. "ActionIconObjID":"836",
  4312. "ActionIcon":"836.png",
  4313. "BrackgroupStr":"#FF03A9F4",
  4314. "ForegroundStr":"#FF00FFFF",
  4315. "FontSize":14,
  4316. "State":0,
  4317. "IsPanel":false,
  4318. "EnityName":"Button",
  4319. "IsPressDown":false,
  4320. "StateLocke":false,
  4321. "ActionType":2,
  4322. "Code":"7ac4bb98-89ac-404a-b0db-d28bba476d33",
  4323. "ID":"7ac4bb98-89ac-404a-b0db-d28bba476d33",
  4324. "Left":254,
  4325. "Top":528,
  4326. "Width":120,
  4327. "Height":53,
  4328. "ZIndex":70100,
  4329. "GroupNumber":"",
  4330. "IsRunVisiable":true,
  4331. "IsVisibility":false,
  4332. "isSyn":true,
  4333. "WindowID":"d9868551-b579-4258-9bc7-7c1f733773f5",
  4334. "PanelID":null,
  4335. "IsLock":false,
  4336. "IsWindow":false
  4337. },
  4338. {
  4339. "Name":"V10--Btn73",
  4340. "MouseDownActionList":[
  4341. ],
  4342. "MouserUpActionList":[
  4343. ],
  4344. "ButtonType":2,
  4345. "Text":" PC2",
  4346. "BackIconObjID":"835",
  4347. "BackIcon":"835.png",
  4348. "ActionIconObjID":"836",
  4349. "ActionIcon":"836.png",
  4350. "BrackgroupStr":"#FF03A9F4",
  4351. "ForegroundStr":"#FF00FFFF",
  4352. "FontSize":14,
  4353. "State":0,
  4354. "IsPanel":false,
  4355. "EnityName":"Button",
  4356. "IsPressDown":false,
  4357. "StateLocke":false,
  4358. "ActionType":2,
  4359. "Code":"a87a094d-3217-40a7-b171-a6366085e862",
  4360. "ID":"a87a094d-3217-40a7-b171-a6366085e862",
  4361. "Left":413,
  4362. "Top":528,
  4363. "Width":120,
  4364. "Height":53,
  4365. "ZIndex":70200,
  4366. "GroupNumber":"",
  4367. "IsRunVisiable":true,
  4368. "IsVisibility":false,
  4369. "isSyn":true,
  4370. "WindowID":"d9868551-b579-4258-9bc7-7c1f733773f5",
  4371. "PanelID":null,
  4372. "IsLock":false,
  4373. "IsWindow":false
  4374. },
  4375. {
  4376. "Name":"V10--Btn74",
  4377. "MouseDownActionList":[
  4378. ],
  4379. "MouserUpActionList":[
  4380. ],
  4381. "ButtonType":2,
  4382. "Text":" PC3",
  4383. "BackIconObjID":"835",
  4384. "BackIcon":"835.png",
  4385. "ActionIconObjID":"836",
  4386. "ActionIcon":"836.png",
  4387. "BrackgroupStr":"#FF03A9F4",
  4388. "ForegroundStr":"#FF00FFFF",
  4389. "FontSize":14,
  4390. "State":0,
  4391. "IsPanel":false,
  4392. "EnityName":"Button",
  4393. "IsPressDown":false,
  4394. "StateLocke":false,
  4395. "ActionType":2,
  4396. "Code":"e7080036-095f-44f7-92c2-68d56d10d216",
  4397. "ID":"e7080036-095f-44f7-92c2-68d56d10d216",
  4398. "Left":580,
  4399. "Top":528,
  4400. "Width":120,
  4401. "Height":53,
  4402. "ZIndex":70300,
  4403. "GroupNumber":"",
  4404. "IsRunVisiable":true,
  4405. "IsVisibility":false,
  4406. "isSyn":true,
  4407. "WindowID":"d9868551-b579-4258-9bc7-7c1f733773f5",
  4408. "PanelID":null,
  4409. "IsLock":false,
  4410. "IsWindow":false
  4411. },
  4412. {
  4413. "Name":"V10--Btn75",
  4414. "MouseDownActionList":[
  4415. ],
  4416. "MouserUpActionList":[
  4417. ],
  4418. "ButtonType":2,
  4419. "Text":" PC4",
  4420. "BackIconObjID":"835",
  4421. "BackIcon":"835.png",
  4422. "ActionIconObjID":"836",
  4423. "ActionIcon":"836.png",
  4424. "BrackgroupStr":"#FF03A9F4",
  4425. "ForegroundStr":"#FF00FFFF",
  4426. "FontSize":14,
  4427. "State":0,
  4428. "IsPanel":false,
  4429. "EnityName":"Button",
  4430. "IsPressDown":false,
  4431. "StateLocke":false,
  4432. "ActionType":2,
  4433. "Code":"951d7b65-9cb7-4afc-a89c-c8e5e51f1e13",
  4434. "ID":"951d7b65-9cb7-4afc-a89c-c8e5e51f1e13",
  4435. "Left":500,
  4436. "Top":614,
  4437. "Width":120,
  4438. "Height":53,
  4439. "ZIndex":70400,
  4440. "GroupNumber":"",
  4441. "IsRunVisiable":true,
  4442. "IsVisibility":false,
  4443. "isSyn":true,
  4444. "WindowID":"d9868551-b579-4258-9bc7-7c1f733773f5",
  4445. "PanelID":null,
  4446. "IsLock":false,
  4447. "IsWindow":false
  4448. },
  4449. {
  4450. "Name":"V10--Btn76",
  4451. "MouseDownActionList":[
  4452. ],
  4453. "MouserUpActionList":[
  4454. ],
  4455. "ButtonType":0,
  4456. "Text":" ALL",
  4457. "BackIconObjID":"835",
  4458. "BackIcon":"835.png",
  4459. "ActionIconObjID":"836",
  4460. "ActionIcon":"836.png",
  4461. "BrackgroupStr":"#FF03A9F4",
  4462. "ForegroundStr":"#FF00FFFF",
  4463. "FontSize":14,
  4464. "State":0,
  4465. "IsPanel":false,
  4466. "EnityName":"Button",
  4467. "IsPressDown":false,
  4468. "StateLocke":false,
  4469. "ActionType":2,
  4470. "Code":"19554440-98bc-4644-83a0-d9cefd69153e",
  4471. "ID":"19554440-98bc-4644-83a0-d9cefd69153e",
  4472. "Left":328,
  4473. "Top":614,
  4474. "Width":120,
  4475. "Height":53,
  4476. "ZIndex":70600,
  4477. "GroupNumber":"",
  4478. "IsRunVisiable":true,
  4479. "IsVisibility":false,
  4480. "isSyn":true,
  4481. "WindowID":"d9868551-b579-4258-9bc7-7c1f733773f5",
  4482. "PanelID":null,
  4483. "IsLock":false,
  4484. "IsWindow":false
  4485. },
  4486. {
  4487. "Name":"V0--Btn77",
  4488. "MouseDownActionList":[
  4489. {
  4490. "ID":"01",
  4491. "ChangeObje":null,
  4492. "SourceID":"d9868551-b579-4258-9bc7-7c1f733773f5",
  4493. "isConditionStart":false,
  4494. "isConditionEnd":false,
  4495. "IsCondition":false,
  4496. "Condition":"Show",
  4497. "CmdID":null,
  4498. "Action":"显示",
  4499. "Parameter":null,
  4500. "Level":"",
  4501. "Parent":null,
  4502. "TempParent":null,
  4503. "TempID":"",
  4504. "ActionType":3,
  4505. "SerialNumber":"01"
  4506. }
  4507. ],
  4508. "MouserUpActionList":[
  4509. ],
  4510. "ButtonType":1,
  4511. "Text":"电脑控制",
  4512. "BackIconObjID":"113",
  4513. "BackIcon":"113.png",
  4514. "ActionIconObjID":"114",
  4515. "ActionIcon":"114.png",
  4516. "BrackgroupStr":"#FF03A9F4",
  4517. "ForegroundStr":"#FF00FFFF",
  4518. "FontSize":14,
  4519. "State":0,
  4520. "IsPanel":false,
  4521. "EnityName":"Button",
  4522. "IsPressDown":false,
  4523. "StateLocke":false,
  4524. "ActionType":2,
  4525. "Code":"7f879801-0369-4c79-9bf6-fcbb9171e03b",
  4526. "ID":"7f879801-0369-4c79-9bf6-fcbb9171e03b",
  4527. "Left":821,
  4528. "Top":726,
  4529. "Width":90,
  4530. "Height":40,
  4531. "ZIndex":2400,
  4532. "GroupNumber":"1",
  4533. "IsRunVisiable":true,
  4534. "IsVisibility":true,
  4535. "isSyn":false,
  4536. "WindowID":"64a2f252-370a-4bc6-a817-3397f8abb4dc",
  4537. "PanelID":null,
  4538. "IsLock":false,
  4539. "IsWindow":false
  4540. },
  4541. {
  4542. "Name":"V3--Btn75",
  4543. "MouseDownActionList":[
  4544. {
  4545. "ID":"01",
  4546. "ChangeObje":null,
  4547. "SourceID":"2e8692f6-2522-401b-82cc-0cf53baa5f50",
  4548. "isConditionStart":false,
  4549. "isConditionEnd":false,
  4550. "IsCondition":false,
  4551. "Condition":"Send",
  4552. "CmdID":"f8910e00-2183-44d7-8e34-94cd1bf4ebfc",
  4553. "Action":"call1",
  4554. "Parameter":null,
  4555. "Level":"",
  4556. "Parent":null,
  4557. "TempParent":null,
  4558. "TempID":"",
  4559. "ActionType":1,
  4560. "SerialNumber":null
  4561. }
  4562. ],
  4563. "MouserUpActionList":[
  4564. ],
  4565. "ButtonType":0,
  4566. "Text":"1#预置位",
  4567. "BackIconObjID":"210",
  4568. "BackIcon":"210.png",
  4569. "ActionIconObjID":"209",
  4570. "ActionIcon":"209.png",
  4571. "BrackgroupStr":"#FF03A9F4",
  4572. "ForegroundStr":"#FF7FFFD4",
  4573. "FontSize":14,
  4574. "State":0,
  4575. "IsPanel":false,
  4576. "EnityName":"Button",
  4577. "IsPressDown":false,
  4578. "StateLocke":false,
  4579. "ActionType":2,
  4580. "Code":"4020b2de-534f-42ca-9ad6-419d642bb2a2",
  4581. "ID":"4020b2de-534f-42ca-9ad6-419d642bb2a2",
  4582. "Left":141,
  4583. "Top":471,
  4584. "Width":77,
  4585. "Height":38,
  4586. "ZIndex":30200,
  4587. "GroupNumber":"",
  4588. "IsRunVisiable":true,
  4589. "IsVisibility":false,
  4590. "isSyn":false,
  4591. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  4592. "PanelID":null,
  4593. "IsLock":false,
  4594. "IsWindow":false
  4595. },
  4596. {
  4597. "Name":"V3--Btn76",
  4598. "MouseDownActionList":[
  4599. {
  4600. "ID":"01",
  4601. "ChangeObje":null,
  4602. "SourceID":"2e8692f6-2522-401b-82cc-0cf53baa5f50",
  4603. "isConditionStart":false,
  4604. "isConditionEnd":false,
  4605. "IsCondition":false,
  4606. "Condition":"Send",
  4607. "CmdID":"508acbab-00b6-4f48-8e9d-fd8c79350022",
  4608. "Action":"call3",
  4609. "Parameter":null,
  4610. "Level":"",
  4611. "Parent":null,
  4612. "TempParent":null,
  4613. "TempID":"",
  4614. "ActionType":1,
  4615. "SerialNumber":null
  4616. }
  4617. ],
  4618. "MouserUpActionList":[
  4619. ],
  4620. "ButtonType":0,
  4621. "Text":"3#预置位",
  4622. "BackIconObjID":"210",
  4623. "BackIcon":"210.png",
  4624. "ActionIconObjID":"209",
  4625. "ActionIcon":"209.png",
  4626. "BrackgroupStr":"#FF03A9F4",
  4627. "ForegroundStr":"#FF00FFFF",
  4628. "FontSize":14,
  4629. "State":0,
  4630. "IsPanel":false,
  4631. "EnityName":"Button",
  4632. "IsPressDown":false,
  4633. "StateLocke":false,
  4634. "ActionType":2,
  4635. "Code":"0a20dfa7-d7f9-4104-af8d-7ae3be91bf82",
  4636. "ID":"0a20dfa7-d7f9-4104-af8d-7ae3be91bf82",
  4637. "Left":141,
  4638. "Top":590,
  4639. "Width":77,
  4640. "Height":38,
  4641. "ZIndex":30300,
  4642. "GroupNumber":"",
  4643. "IsRunVisiable":true,
  4644. "IsVisibility":false,
  4645. "isSyn":false,
  4646. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  4647. "PanelID":null,
  4648. "IsLock":false,
  4649. "IsWindow":false
  4650. },
  4651. {
  4652. "Name":"V3--Btn77",
  4653. "MouseDownActionList":[
  4654. {
  4655. "ID":"01",
  4656. "ChangeObje":null,
  4657. "SourceID":"2e8692f6-2522-401b-82cc-0cf53baa5f50",
  4658. "isConditionStart":false,
  4659. "isConditionEnd":false,
  4660. "IsCondition":false,
  4661. "Condition":"Send",
  4662. "CmdID":"f480232a-eaaf-4f2d-aa94-41dc934a4218",
  4663. "Action":"call4",
  4664. "Parameter":null,
  4665. "Level":"",
  4666. "Parent":null,
  4667. "TempParent":null,
  4668. "TempID":"",
  4669. "ActionType":1,
  4670. "SerialNumber":null
  4671. }
  4672. ],
  4673. "MouserUpActionList":[
  4674. ],
  4675. "ButtonType":0,
  4676. "Text":"4#预置位",
  4677. "BackIconObjID":"210",
  4678. "BackIcon":"210.png",
  4679. "ActionIconObjID":"209",
  4680. "ActionIcon":"209.png",
  4681. "BrackgroupStr":"#FF03A9F4",
  4682. "ForegroundStr":"#FF00FFFF",
  4683. "FontSize":14,
  4684. "State":0,
  4685. "IsPanel":false,
  4686. "EnityName":"Button",
  4687. "IsPressDown":false,
  4688. "StateLocke":false,
  4689. "ActionType":2,
  4690. "Code":"a2fce4bb-9294-4870-b8b2-37cea0360965",
  4691. "ID":"a2fce4bb-9294-4870-b8b2-37cea0360965",
  4692. "Left":141,
  4693. "Top":649,
  4694. "Width":77,
  4695. "Height":38,
  4696. "ZIndex":30400,
  4697. "GroupNumber":"",
  4698. "IsRunVisiable":true,
  4699. "IsVisibility":false,
  4700. "isSyn":false,
  4701. "WindowID":"027ab76d-6b9c-46ac-abe6-75b8059f786b",
  4702. "PanelID":null,
  4703. "IsLock":false,
  4704. "IsWindow":false
  4705. },
  4706. {
  4707. "Name":"LED智慧屏--Btn78",
  4708. "MouseDownActionList":[
  4709. {
  4710. "ID":"01",
  4711. "ChangeObje":null,
  4712. "SourceID":"b268c790-c474-4835-9034-f5993e88e1c5",
  4713. "isConditionStart":false,
  4714. "isConditionEnd":false,
  4715. "IsCondition":false,
  4716. "Condition":"Send",
  4717. "CmdID":"2967d126-ebfb-4fa6-9cc6-ef6b0f7e72f9",
  4718. "Action":"安卓",
  4719. "Parameter":null,
  4720. "Level":"",
  4721. "Parent":null,
  4722. "TempParent":null,
  4723. "TempID":"",
  4724. "ActionType":1,
  4725. "SerialNumber":"01"
  4726. }
  4727. ],
  4728. "MouserUpActionList":[
  4729. ],
  4730. "ButtonType":1,
  4731. "Text":"安卓",
  4732. "BackIconObjID":"135",
  4733. "BackIcon":"135.png",
  4734. "ActionIconObjID":"134",
  4735. "ActionIcon":"134.png",
  4736. "BrackgroupStr":"#FF03A9F4",
  4737. "ForegroundStr":"#FFFFFFFF",
  4738. "FontSize":14,
  4739. "State":0,
  4740. "IsPanel":false,
  4741. "EnityName":"Button",
  4742. "IsPressDown":false,
  4743. "StateLocke":false,
  4744. "ActionType":2,
  4745. "Code":"50352e96-c6a3-4e25-857e-c03d08d4322b",
  4746. "ID":"50352e96-c6a3-4e25-857e-c03d08d4322b",
  4747. "Left":612,
  4748. "Top":387,
  4749. "Width":96,
  4750. "Height":49,
  4751. "ZIndex":40700,
  4752. "GroupNumber":"100",
  4753. "IsRunVisiable":true,
  4754. "IsVisibility":true,
  4755. "isSyn":false,
  4756. "WindowID":"9a0dff23-8633-4e7f-89bf-cc4f68ec88e1",
  4757. "PanelID":null,
  4758. "IsLock":false,
  4759. "IsWindow":false
  4760. },
  4761. {
  4762. "Name":"LED智慧屏--Btn79",
  4763. "MouseDownActionList":[
  4764. {
  4765. "ID":"01",
  4766. "ChangeObje":null,
  4767. "SourceID":"b268c790-c474-4835-9034-f5993e88e1c5",
  4768. "isConditionStart":false,
  4769. "isConditionEnd":false,
  4770. "IsCondition":false,
  4771. "Condition":"Send",
  4772. "CmdID":"0cf28f9f-8dc7-4898-bb33-847a8e8c1d80",
  4773. "Action":"分布式",
  4774. "Parameter":null,
  4775. "Level":"",
  4776. "Parent":null,
  4777. "TempParent":null,
  4778. "TempID":"",
  4779. "ActionType":1,
  4780. "SerialNumber":"01"
  4781. }
  4782. ],
  4783. "MouserUpActionList":[
  4784. ],
  4785. "ButtonType":1,
  4786. "Text":"分布式",
  4787. "BackIconObjID":"135",
  4788. "BackIcon":"135.png",
  4789. "ActionIconObjID":"134",
  4790. "ActionIcon":"134.png",
  4791. "BrackgroupStr":"#FF03A9F4",
  4792. "ForegroundStr":"#FFF0FFFF",
  4793. "FontSize":14,
  4794. "State":0,
  4795. "IsPanel":false,
  4796. "EnityName":"Button",
  4797. "IsPressDown":false,
  4798. "StateLocke":false,
  4799. "ActionType":2,
  4800. "Code":"d7030b23-62b5-449e-adad-d4bf3118e98a",
  4801. "ID":"d7030b23-62b5-449e-adad-d4bf3118e98a",
  4802. "Left":722,
  4803. "Top":386,
  4804. "Width":81,
  4805. "Height":49,
  4806. "ZIndex":40800,
  4807. "GroupNumber":"100",
  4808. "IsRunVisiable":true,
  4809. "IsVisibility":true,
  4810. "isSyn":false,
  4811. "WindowID":"9a0dff23-8633-4e7f-89bf-cc4f68ec88e1",
  4812. "PanelID":null,
  4813. "IsLock":false,
  4814. "IsWindow":false
  4815. }
  4816. ]