IOForm3.Designer.cs 178 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586
  1. namespace YangjieTester.IO监控
  2. {
  3. partial class IOForm3
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.plcUiLight47 = new PlcUiControl.PlcUiLight();
  29. this.plcUiLight2 = new PlcUiControl.PlcUiLight();
  30. this.plcUiButton7 = new PlcUiControl.PlcUiButton();
  31. this.plcUiLight4 = new PlcUiControl.PlcUiLight();
  32. this.plcUiLight5 = new PlcUiControl.PlcUiLight();
  33. this.plcUiButton1 = new PlcUiControl.PlcUiButton();
  34. this.plcUiLight6 = new PlcUiControl.PlcUiLight();
  35. this.plcUiLight18 = new PlcUiControl.PlcUiLight();
  36. this.plcUiLight19 = new PlcUiControl.PlcUiLight();
  37. this.plcUiLight20 = new PlcUiControl.PlcUiLight();
  38. this.plcUiLight21 = new PlcUiControl.PlcUiLight();
  39. this.plcUiLight22 = new PlcUiControl.PlcUiLight();
  40. this.plcUiLight23 = new PlcUiControl.PlcUiLight();
  41. this.plcUiButton12 = new PlcUiControl.PlcUiButton();
  42. this.plcUiButton2 = new PlcUiControl.PlcUiButton();
  43. this.plcUiButton8 = new PlcUiControl.PlcUiButton();
  44. this.plcUiButton9 = new PlcUiControl.PlcUiButton();
  45. this.plcUiButton10 = new PlcUiControl.PlcUiButton();
  46. this.plcUiButton11 = new PlcUiControl.PlcUiButton();
  47. this.plcUiButton3 = new PlcUiControl.PlcUiButton();
  48. this.plcUiButton5 = new PlcUiControl.PlcUiButton();
  49. this.plcUiButton6 = new PlcUiControl.PlcUiButton();
  50. this.plcUiLight29 = new PlcUiControl.PlcUiLight();
  51. this.plcUiLight26 = new PlcUiControl.PlcUiLight();
  52. this.plcUiLight27 = new PlcUiControl.PlcUiLight();
  53. this.plcUiLight28 = new PlcUiControl.PlcUiLight();
  54. this.plcUiLight1 = new PlcUiControl.PlcUiLight();
  55. this.plcUiLight24 = new PlcUiControl.PlcUiLight();
  56. this.plcUiLight25 = new PlcUiControl.PlcUiLight();
  57. this.plcUiLight3 = new PlcUiControl.PlcUiLight();
  58. this.plcUiLight7 = new PlcUiControl.PlcUiLight();
  59. this.plcUiLight8 = new PlcUiControl.PlcUiLight();
  60. this.plcUiLight16 = new PlcUiControl.PlcUiLight();
  61. this.plcUiLight17 = new PlcUiControl.PlcUiLight();
  62. this.plcUiLight9 = new PlcUiControl.PlcUiLight();
  63. this.plcUiLight10 = new PlcUiControl.PlcUiLight();
  64. this.plcUiLight14 = new PlcUiControl.PlcUiLight();
  65. this.plcUiLight15 = new PlcUiControl.PlcUiLight();
  66. this.plcUiLight12 = new PlcUiControl.PlcUiLight();
  67. this.plcUiLight11 = new PlcUiControl.PlcUiLight();
  68. this.plcUiButton4 = new PlcUiControl.PlcUiButton();
  69. this.plcUiButton13 = new PlcUiControl.PlcUiButton();
  70. this.plcUiButton14 = new PlcUiControl.PlcUiButton();
  71. this.plcUiLight13 = new PlcUiControl.PlcUiLight();
  72. this.plcUiLight30 = new PlcUiControl.PlcUiLight();
  73. this.plcUiLight31 = new PlcUiControl.PlcUiLight();
  74. this.plcUiLight32 = new PlcUiControl.PlcUiLight();
  75. this.plcUiLight33 = new PlcUiControl.PlcUiLight();
  76. this.plcUiLight34 = new PlcUiControl.PlcUiLight();
  77. this.plcUiButton15 = new PlcUiControl.PlcUiButton();
  78. this.plcUiButton16 = new PlcUiControl.PlcUiButton();
  79. this.plcUiButton17 = new PlcUiControl.PlcUiButton();
  80. this.plcUiButton18 = new PlcUiControl.PlcUiButton();
  81. this.plcUiButton19 = new PlcUiControl.PlcUiButton();
  82. this.plcUiButton20 = new PlcUiControl.PlcUiButton();
  83. this.plcUiButton21 = new PlcUiControl.PlcUiButton();
  84. this.plcUiButton22 = new PlcUiControl.PlcUiButton();
  85. this.plcUiButton23 = new PlcUiControl.PlcUiButton();
  86. this.plcUiLight35 = new PlcUiControl.PlcUiLight();
  87. this.plcUiLight36 = new PlcUiControl.PlcUiLight();
  88. this.plcUiLight37 = new PlcUiControl.PlcUiLight();
  89. this.plcUiLight38 = new PlcUiControl.PlcUiLight();
  90. this.plcUiLight39 = new PlcUiControl.PlcUiLight();
  91. this.plcUiLight40 = new PlcUiControl.PlcUiLight();
  92. this.plcUiLight41 = new PlcUiControl.PlcUiLight();
  93. this.plcUiLight42 = new PlcUiControl.PlcUiLight();
  94. this.plcUiLight43 = new PlcUiControl.PlcUiLight();
  95. this.plcUiLight44 = new PlcUiControl.PlcUiLight();
  96. this.plcUiLight45 = new PlcUiControl.PlcUiLight();
  97. this.plcUiLight46 = new PlcUiControl.PlcUiLight();
  98. this.plcUiLight48 = new PlcUiControl.PlcUiLight();
  99. this.plcUiLight49 = new PlcUiControl.PlcUiLight();
  100. this.plcUiLight50 = new PlcUiControl.PlcUiLight();
  101. this.plcUiLight51 = new PlcUiControl.PlcUiLight();
  102. this.plcUiLight52 = new PlcUiControl.PlcUiLight();
  103. this.plcUiLight53 = new PlcUiControl.PlcUiLight();
  104. this.plcUiButton24 = new PlcUiControl.PlcUiButton();
  105. this.plcUiButton25 = new PlcUiControl.PlcUiButton();
  106. this.plcUiButton26 = new PlcUiControl.PlcUiButton();
  107. this.plcUiLight54 = new PlcUiControl.PlcUiLight();
  108. this.plcUiLight55 = new PlcUiControl.PlcUiLight();
  109. this.plcUiLight56 = new PlcUiControl.PlcUiLight();
  110. this.plcUiLight57 = new PlcUiControl.PlcUiLight();
  111. this.plcUiLight58 = new PlcUiControl.PlcUiLight();
  112. this.plcUiLight59 = new PlcUiControl.PlcUiLight();
  113. this.plcUiButton27 = new PlcUiControl.PlcUiButton();
  114. this.plcUiLight60 = new PlcUiControl.PlcUiLight();
  115. this.SuspendLayout();
  116. //
  117. // plcUiLight47
  118. //
  119. this.plcUiLight47.DisabilityTriggerNode = null;
  120. this.plcUiLight47.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  121. this.plcUiLight47.InvisibilityTriggerNode = null;
  122. this.plcUiLight47.Location = new System.Drawing.Point(1167, 899);
  123. this.plcUiLight47.MinimumSize = new System.Drawing.Size(1, 1);
  124. this.plcUiLight47.MyTextAlign = System.Drawing.ContentAlignment.MiddleRight;
  125. this.plcUiLight47.Name = "plcUiLight47";
  126. this.plcUiLight47.NodeName = "A27测试站5_清机反馈信号";
  127. this.plcUiLight47.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  128. this.plcUiLight47.OffText = null;
  129. this.plcUiLight47.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  130. this.plcUiLight47.OnText = null;
  131. this.plcUiLight47.Radius = 40;
  132. this.plcUiLight47.ReadNode = new Node("Application.InPut.A27测试站5_清机反馈信号", NodeType.BOOL, null);
  133. this.plcUiLight47.ShowText = true;
  134. this.plcUiLight47.Size = new System.Drawing.Size(200, 40);
  135. this.plcUiLight47.State = Sunny.UI.UILightState.Off;
  136. this.plcUiLight47.TabIndex = 269;
  137. this.plcUiLight47.Text = "A27测试站5_清机反馈信号";
  138. this.plcUiLight47.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  139. this.plcUiLight47.WriteNode = null;
  140. //
  141. // plcUiLight2
  142. //
  143. this.plcUiLight2.DisabilityTriggerNode = null;
  144. this.plcUiLight2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  145. this.plcUiLight2.InvisibilityTriggerNode = null;
  146. this.plcUiLight2.Location = new System.Drawing.Point(2, 2);
  147. this.plcUiLight2.MinimumSize = new System.Drawing.Size(1, 1);
  148. this.plcUiLight2.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  149. this.plcUiLight2.Name = "plcUiLight2";
  150. this.plcUiLight2.NodeName = "A28转向站2_材料检测_低位";
  151. this.plcUiLight2.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  152. this.plcUiLight2.OffText = null;
  153. this.plcUiLight2.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  154. this.plcUiLight2.OnText = null;
  155. this.plcUiLight2.Radius = 40;
  156. this.plcUiLight2.ReadNode = new Node("Application.InPut.A28转向站2_材料检测_低位", NodeType.BOOL, null);
  157. this.plcUiLight2.ShowText = true;
  158. this.plcUiLight2.Size = new System.Drawing.Size(334, 40);
  159. this.plcUiLight2.State = Sunny.UI.UILightState.Off;
  160. this.plcUiLight2.TabIndex = 270;
  161. this.plcUiLight2.Text = "A28转向站2_材料检测_低位";
  162. this.plcUiLight2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  163. this.plcUiLight2.WriteNode = null;
  164. //
  165. // plcUiButton7
  166. //
  167. this.plcUiButton7.ButtonType = PlcUiControl.ButtonType.交替型;
  168. this.plcUiButton7.Cursor = System.Windows.Forms.Cursors.Hand;
  169. this.plcUiButton7.DisabilityTriggerNode = null;
  170. this.plcUiButton7.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  171. this.plcUiButton7.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  172. this.plcUiButton7.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  173. this.plcUiButton7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  174. this.plcUiButton7.InvisibilityTriggerNode = null;
  175. this.plcUiButton7.IsReadWriteNodeSame = false;
  176. this.plcUiButton7.Location = new System.Drawing.Point(1448, 2);
  177. this.plcUiButton7.Maximum = 0D;
  178. this.plcUiButton7.Minimum = 0D;
  179. this.plcUiButton7.MinimumSize = new System.Drawing.Size(1, 1);
  180. this.plcUiButton7.Name = "plcUiButton7";
  181. this.plcUiButton7.NeedUserEnsure = false;
  182. this.plcUiButton7.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  183. this.plcUiButton7.OffSymbol = 0;
  184. this.plcUiButton7.OffText = "A29_3D画像SOT";
  185. this.plcUiButton7.OnColor = System.Drawing.Color.Green;
  186. this.plcUiButton7.OnSymbol = 0;
  187. this.plcUiButton7.OnText = "A29_3D画像SOT";
  188. this.plcUiButton7.ReadNode = new Node("Application.OutPut.A29_3D画像SOT", NodeType.BOOL, null);
  189. this.plcUiButton7.Size = new System.Drawing.Size(200, 40);
  190. this.plcUiButton7.Symbol = 0;
  191. this.plcUiButton7.TabIndex = 273;
  192. this.plcUiButton7.Text = "A29_3D画像SOT";
  193. this.plcUiButton7.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  194. this.plcUiButton7.WriteNode = null;
  195. //
  196. // plcUiLight4
  197. //
  198. this.plcUiLight4.DisabilityTriggerNode = null;
  199. this.plcUiLight4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  200. this.plcUiLight4.InvisibilityTriggerNode = null;
  201. this.plcUiLight4.Location = new System.Drawing.Point(2, 152);
  202. this.plcUiLight4.MinimumSize = new System.Drawing.Size(1, 1);
  203. this.plcUiLight4.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  204. this.plcUiLight4.Name = "plcUiLight4";
  205. this.plcUiLight4.NodeName = "A29三维打标检测_OKorNG";
  206. this.plcUiLight4.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  207. this.plcUiLight4.OffText = null;
  208. this.plcUiLight4.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  209. this.plcUiLight4.OnText = null;
  210. this.plcUiLight4.Radius = 40;
  211. this.plcUiLight4.ReadNode = new Node("Application.InPut.A29三维打标检测_OKorNG", NodeType.BOOL, null);
  212. this.plcUiLight4.ShowText = true;
  213. this.plcUiLight4.Size = new System.Drawing.Size(334, 40);
  214. this.plcUiLight4.State = Sunny.UI.UILightState.Off;
  215. this.plcUiLight4.TabIndex = 272;
  216. this.plcUiLight4.Text = "A29三维打标检测_OKorNG";
  217. this.plcUiLight4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  218. this.plcUiLight4.WriteNode = null;
  219. //
  220. // plcUiLight5
  221. //
  222. this.plcUiLight5.DisabilityTriggerNode = null;
  223. this.plcUiLight5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  224. this.plcUiLight5.InvisibilityTriggerNode = null;
  225. this.plcUiLight5.Location = new System.Drawing.Point(2, 102);
  226. this.plcUiLight5.MinimumSize = new System.Drawing.Size(1, 1);
  227. this.plcUiLight5.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  228. this.plcUiLight5.Name = "plcUiLight5";
  229. this.plcUiLight5.NodeName = "A29三维打标检测_画像EOT";
  230. this.plcUiLight5.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  231. this.plcUiLight5.OffText = null;
  232. this.plcUiLight5.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  233. this.plcUiLight5.OnText = null;
  234. this.plcUiLight5.Radius = 40;
  235. this.plcUiLight5.ReadNode = new Node("Application.InPut.A29三维打标检测_画像EOT", NodeType.BOOL, null);
  236. this.plcUiLight5.ShowText = true;
  237. this.plcUiLight5.Size = new System.Drawing.Size(334, 40);
  238. this.plcUiLight5.State = Sunny.UI.UILightState.Off;
  239. this.plcUiLight5.TabIndex = 271;
  240. this.plcUiLight5.Text = "A29三维打标检测_画像EOT";
  241. this.plcUiLight5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  242. this.plcUiLight5.WriteNode = null;
  243. //
  244. // plcUiButton1
  245. //
  246. this.plcUiButton1.ButtonType = PlcUiControl.ButtonType.交替型;
  247. this.plcUiButton1.Cursor = System.Windows.Forms.Cursors.Hand;
  248. this.plcUiButton1.DisabilityTriggerNode = null;
  249. this.plcUiButton1.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  250. this.plcUiButton1.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  251. this.plcUiButton1.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  252. this.plcUiButton1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  253. this.plcUiButton1.InvisibilityTriggerNode = null;
  254. this.plcUiButton1.IsReadWriteNodeSame = false;
  255. this.plcUiButton1.Location = new System.Drawing.Point(1448, 52);
  256. this.plcUiButton1.Maximum = 0D;
  257. this.plcUiButton1.Minimum = 0D;
  258. this.plcUiButton1.MinimumSize = new System.Drawing.Size(1, 1);
  259. this.plcUiButton1.Name = "plcUiButton1";
  260. this.plcUiButton1.NeedUserEnsure = false;
  261. this.plcUiButton1.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  262. this.plcUiButton1.OffSymbol = 0;
  263. this.plcUiButton1.OffText = "A30_3D检测NG吸嘴破真空电磁阀";
  264. this.plcUiButton1.OnColor = System.Drawing.Color.Green;
  265. this.plcUiButton1.OnSymbol = 0;
  266. this.plcUiButton1.OnText = "A30_3D检测NG吸嘴破真空电磁阀";
  267. this.plcUiButton1.ReadNode = new Node("Application.OutPut.A30_3D检测NG吸嘴破真空电磁阀", NodeType.BOOL, null);
  268. this.plcUiButton1.Size = new System.Drawing.Size(200, 40);
  269. this.plcUiButton1.Symbol = 0;
  270. this.plcUiButton1.TabIndex = 280;
  271. this.plcUiButton1.Text = "A30_3D检测NG吸嘴破真空电磁阀";
  272. this.plcUiButton1.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  273. this.plcUiButton1.WriteNode = null;
  274. //
  275. // plcUiLight6
  276. //
  277. this.plcUiLight6.DisabilityTriggerNode = null;
  278. this.plcUiLight6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  279. this.plcUiLight6.InvisibilityTriggerNode = null;
  280. this.plcUiLight6.Location = new System.Drawing.Point(2, 502);
  281. this.plcUiLight6.MinimumSize = new System.Drawing.Size(1, 1);
  282. this.plcUiLight6.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  283. this.plcUiLight6.Name = "plcUiLight6";
  284. this.plcUiLight6.NodeName = "A30三维检测NG四排料_材料检测_高位";
  285. this.plcUiLight6.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  286. this.plcUiLight6.OffText = null;
  287. this.plcUiLight6.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  288. this.plcUiLight6.OnText = null;
  289. this.plcUiLight6.Radius = 40;
  290. this.plcUiLight6.ReadNode = new Node("Application.InPut.A30三维检测NG四排料_材料检测_高位", NodeType.BOOL, null);
  291. this.plcUiLight6.ShowText = true;
  292. this.plcUiLight6.Size = new System.Drawing.Size(334, 40);
  293. this.plcUiLight6.State = Sunny.UI.UILightState.Off;
  294. this.plcUiLight6.TabIndex = 279;
  295. this.plcUiLight6.Text = "A30三维检测NG四排料_材料检测_高位";
  296. this.plcUiLight6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  297. this.plcUiLight6.WriteNode = null;
  298. //
  299. // plcUiLight18
  300. //
  301. this.plcUiLight18.DisabilityTriggerNode = null;
  302. this.plcUiLight18.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  303. this.plcUiLight18.InvisibilityTriggerNode = null;
  304. this.plcUiLight18.Location = new System.Drawing.Point(2, 452);
  305. this.plcUiLight18.MinimumSize = new System.Drawing.Size(1, 1);
  306. this.plcUiLight18.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  307. this.plcUiLight18.Name = "plcUiLight18";
  308. this.plcUiLight18.NodeName = "A30三维检测NG四排料_料盒抽屉到位感应";
  309. this.plcUiLight18.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  310. this.plcUiLight18.OffText = null;
  311. this.plcUiLight18.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  312. this.plcUiLight18.OnText = null;
  313. this.plcUiLight18.Radius = 40;
  314. this.plcUiLight18.ReadNode = new Node("Application.InPut.A30三维检测NG四排料_料盒抽屉到位感应", NodeType.BOOL, null);
  315. this.plcUiLight18.ShowText = true;
  316. this.plcUiLight18.Size = new System.Drawing.Size(334, 40);
  317. this.plcUiLight18.State = Sunny.UI.UILightState.Off;
  318. this.plcUiLight18.TabIndex = 278;
  319. this.plcUiLight18.Text = "A30三维检测NG四排料_料盒抽屉到位感应";
  320. this.plcUiLight18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  321. this.plcUiLight18.WriteNode = null;
  322. //
  323. // plcUiLight19
  324. //
  325. this.plcUiLight19.DisabilityTriggerNode = null;
  326. this.plcUiLight19.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  327. this.plcUiLight19.InvisibilityTriggerNode = null;
  328. this.plcUiLight19.Location = new System.Drawing.Point(2, 402);
  329. this.plcUiLight19.MinimumSize = new System.Drawing.Size(1, 1);
  330. this.plcUiLight19.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  331. this.plcUiLight19.Name = "plcUiLight19";
  332. this.plcUiLight19.NodeName = "A30三维检测NG四排料_料盒4缺失";
  333. this.plcUiLight19.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  334. this.plcUiLight19.OffText = null;
  335. this.plcUiLight19.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  336. this.plcUiLight19.OnText = null;
  337. this.plcUiLight19.Radius = 40;
  338. this.plcUiLight19.ReadNode = new Node("Application.InPut.A30三维检测NG四排料_料盒4缺失", NodeType.BOOL, null);
  339. this.plcUiLight19.ShowText = true;
  340. this.plcUiLight19.Size = new System.Drawing.Size(334, 40);
  341. this.plcUiLight19.State = Sunny.UI.UILightState.Off;
  342. this.plcUiLight19.TabIndex = 277;
  343. this.plcUiLight19.Text = "A30三维检测NG四排料_料盒4缺失";
  344. this.plcUiLight19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  345. this.plcUiLight19.WriteNode = null;
  346. //
  347. // plcUiLight20
  348. //
  349. this.plcUiLight20.DisabilityTriggerNode = null;
  350. this.plcUiLight20.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  351. this.plcUiLight20.InvisibilityTriggerNode = null;
  352. this.plcUiLight20.Location = new System.Drawing.Point(2, 352);
  353. this.plcUiLight20.MinimumSize = new System.Drawing.Size(1, 1);
  354. this.plcUiLight20.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  355. this.plcUiLight20.Name = "plcUiLight20";
  356. this.plcUiLight20.NodeName = "A30三维检测NG四排料_料盒3缺失";
  357. this.plcUiLight20.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  358. this.plcUiLight20.OffText = null;
  359. this.plcUiLight20.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  360. this.plcUiLight20.OnText = null;
  361. this.plcUiLight20.Radius = 40;
  362. this.plcUiLight20.ReadNode = new Node("Application.InPut.A30三维检测NG四排料_料盒3缺失", NodeType.BOOL, null);
  363. this.plcUiLight20.ShowText = true;
  364. this.plcUiLight20.Size = new System.Drawing.Size(334, 40);
  365. this.plcUiLight20.State = Sunny.UI.UILightState.Off;
  366. this.plcUiLight20.TabIndex = 276;
  367. this.plcUiLight20.Text = "A30三维检测NG四排料_料盒3缺失";
  368. this.plcUiLight20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  369. this.plcUiLight20.WriteNode = null;
  370. //
  371. // plcUiLight21
  372. //
  373. this.plcUiLight21.DisabilityTriggerNode = null;
  374. this.plcUiLight21.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  375. this.plcUiLight21.InvisibilityTriggerNode = null;
  376. this.plcUiLight21.Location = new System.Drawing.Point(2, 302);
  377. this.plcUiLight21.MinimumSize = new System.Drawing.Size(1, 1);
  378. this.plcUiLight21.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  379. this.plcUiLight21.Name = "plcUiLight21";
  380. this.plcUiLight21.NodeName = "A30三维检测NG四排料_料盒2缺失";
  381. this.plcUiLight21.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  382. this.plcUiLight21.OffText = null;
  383. this.plcUiLight21.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  384. this.plcUiLight21.OnText = null;
  385. this.plcUiLight21.Radius = 40;
  386. this.plcUiLight21.ReadNode = new Node("Application.InPut.A30三维检测NG四排料_料盒2缺失", NodeType.BOOL, null);
  387. this.plcUiLight21.ShowText = true;
  388. this.plcUiLight21.Size = new System.Drawing.Size(334, 40);
  389. this.plcUiLight21.State = Sunny.UI.UILightState.Off;
  390. this.plcUiLight21.TabIndex = 275;
  391. this.plcUiLight21.Text = "A30三维检测NG四排料_料盒2缺失";
  392. this.plcUiLight21.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  393. this.plcUiLight21.WriteNode = null;
  394. //
  395. // plcUiLight22
  396. //
  397. this.plcUiLight22.DisabilityTriggerNode = null;
  398. this.plcUiLight22.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  399. this.plcUiLight22.InvisibilityTriggerNode = null;
  400. this.plcUiLight22.Location = new System.Drawing.Point(2, 252);
  401. this.plcUiLight22.MinimumSize = new System.Drawing.Size(1, 1);
  402. this.plcUiLight22.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  403. this.plcUiLight22.Name = "plcUiLight22";
  404. this.plcUiLight22.NodeName = "A30三维检测NG四排料_料盒1缺失";
  405. this.plcUiLight22.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  406. this.plcUiLight22.OffText = null;
  407. this.plcUiLight22.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  408. this.plcUiLight22.OnText = null;
  409. this.plcUiLight22.Radius = 40;
  410. this.plcUiLight22.ReadNode = new Node("Application.InPut.A30三维检测NG四排料_料盒1缺失", NodeType.BOOL, null);
  411. this.plcUiLight22.ShowText = true;
  412. this.plcUiLight22.Size = new System.Drawing.Size(334, 40);
  413. this.plcUiLight22.State = Sunny.UI.UILightState.Off;
  414. this.plcUiLight22.TabIndex = 274;
  415. this.plcUiLight22.Text = "A30三维检测NG四排料_料盒1缺失";
  416. this.plcUiLight22.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  417. this.plcUiLight22.WriteNode = null;
  418. //
  419. // plcUiLight23
  420. //
  421. this.plcUiLight23.DisabilityTriggerNode = null;
  422. this.plcUiLight23.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  423. this.plcUiLight23.InvisibilityTriggerNode = null;
  424. this.plcUiLight23.Location = new System.Drawing.Point(2, 602);
  425. this.plcUiLight23.MinimumSize = new System.Drawing.Size(1, 1);
  426. this.plcUiLight23.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  427. this.plcUiLight23.Name = "plcUiLight23";
  428. this.plcUiLight23.NodeName = "A31封装1前定位_材料检测_低位";
  429. this.plcUiLight23.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  430. this.plcUiLight23.OffText = null;
  431. this.plcUiLight23.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  432. this.plcUiLight23.OnText = null;
  433. this.plcUiLight23.Radius = 40;
  434. this.plcUiLight23.ReadNode = new Node("Application.InPut.A31封装1前定位_材料检测_低位", NodeType.BOOL, null);
  435. this.plcUiLight23.ShowText = true;
  436. this.plcUiLight23.Size = new System.Drawing.Size(334, 40);
  437. this.plcUiLight23.State = Sunny.UI.UILightState.Off;
  438. this.plcUiLight23.TabIndex = 281;
  439. this.plcUiLight23.Text = "A31封装1前定位_材料检测_低位";
  440. this.plcUiLight23.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  441. this.plcUiLight23.WriteNode = null;
  442. //
  443. // plcUiButton12
  444. //
  445. this.plcUiButton12.ButtonType = PlcUiControl.ButtonType.交替型;
  446. this.plcUiButton12.Cursor = System.Windows.Forms.Cursors.Hand;
  447. this.plcUiButton12.DisabilityTriggerNode = null;
  448. this.plcUiButton12.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  449. this.plcUiButton12.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  450. this.plcUiButton12.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  451. this.plcUiButton12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  452. this.plcUiButton12.InvisibilityTriggerNode = null;
  453. this.plcUiButton12.IsReadWriteNodeSame = false;
  454. this.plcUiButton12.Location = new System.Drawing.Point(1448, 652);
  455. this.plcUiButton12.Maximum = 0D;
  456. this.plcUiButton12.Minimum = 0D;
  457. this.plcUiButton12.MinimumSize = new System.Drawing.Size(1, 1);
  458. this.plcUiButton12.Name = "plcUiButton12";
  459. this.plcUiButton12.NeedUserEnsure = false;
  460. this.plcUiButton12.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  461. this.plcUiButton12.OffSymbol = 0;
  462. this.plcUiButton12.OffText = "A33封装1温控供电";
  463. this.plcUiButton12.OnColor = System.Drawing.Color.Green;
  464. this.plcUiButton12.OnSymbol = 0;
  465. this.plcUiButton12.OnText = "A33封装1温控供电";
  466. this.plcUiButton12.ReadNode = new Node("Application.OutPut.A33封装1温控供电", NodeType.BOOL, null);
  467. this.plcUiButton12.Size = new System.Drawing.Size(200, 40);
  468. this.plcUiButton12.Symbol = 0;
  469. this.plcUiButton12.TabIndex = 316;
  470. this.plcUiButton12.Text = "A33封装1温控供电";
  471. this.plcUiButton12.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  472. this.plcUiButton12.WriteNode = null;
  473. //
  474. // plcUiButton2
  475. //
  476. this.plcUiButton2.ButtonType = PlcUiControl.ButtonType.交替型;
  477. this.plcUiButton2.Cursor = System.Windows.Forms.Cursors.Hand;
  478. this.plcUiButton2.DisabilityTriggerNode = null;
  479. this.plcUiButton2.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  480. this.plcUiButton2.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  481. this.plcUiButton2.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  482. this.plcUiButton2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  483. this.plcUiButton2.InvisibilityTriggerNode = null;
  484. this.plcUiButton2.IsReadWriteNodeSame = false;
  485. this.plcUiButton2.Location = new System.Drawing.Point(1448, 602);
  486. this.plcUiButton2.Maximum = 0D;
  487. this.plcUiButton2.Minimum = 0D;
  488. this.plcUiButton2.MinimumSize = new System.Drawing.Size(1, 1);
  489. this.plcUiButton2.Name = "plcUiButton2";
  490. this.plcUiButton2.NeedUserEnsure = false;
  491. this.plcUiButton2.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  492. this.plcUiButton2.OffSymbol = 0;
  493. this.plcUiButton2.OffText = "A33封装1收料盘_步进";
  494. this.plcUiButton2.OnColor = System.Drawing.Color.Green;
  495. this.plcUiButton2.OnSymbol = 0;
  496. this.plcUiButton2.OnText = "A33封装1收料盘_步进";
  497. this.plcUiButton2.ReadNode = new Node("Application.OutPut.A33封装1收料盘_步进", NodeType.BOOL, null);
  498. this.plcUiButton2.Size = new System.Drawing.Size(200, 40);
  499. this.plcUiButton2.Symbol = 0;
  500. this.plcUiButton2.TabIndex = 315;
  501. this.plcUiButton2.Text = "A33封装1收料盘_步进";
  502. this.plcUiButton2.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  503. this.plcUiButton2.WriteNode = null;
  504. //
  505. // plcUiButton8
  506. //
  507. this.plcUiButton8.ButtonType = PlcUiControl.ButtonType.交替型;
  508. this.plcUiButton8.Cursor = System.Windows.Forms.Cursors.Hand;
  509. this.plcUiButton8.DisabilityTriggerNode = null;
  510. this.plcUiButton8.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  511. this.plcUiButton8.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  512. this.plcUiButton8.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  513. this.plcUiButton8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  514. this.plcUiButton8.InvisibilityTriggerNode = null;
  515. this.plcUiButton8.IsReadWriteNodeSame = false;
  516. this.plcUiButton8.Location = new System.Drawing.Point(1448, 552);
  517. this.plcUiButton8.Maximum = 0D;
  518. this.plcUiButton8.Minimum = 0D;
  519. this.plcUiButton8.MinimumSize = new System.Drawing.Size(1, 1);
  520. this.plcUiButton8.Name = "plcUiButton8";
  521. this.plcUiButton8.NeedUserEnsure = false;
  522. this.plcUiButton8.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  523. this.plcUiButton8.OffSymbol = 0;
  524. this.plcUiButton8.OffText = "A33封装1感应电机";
  525. this.plcUiButton8.OnColor = System.Drawing.Color.Green;
  526. this.plcUiButton8.OnSymbol = 0;
  527. this.plcUiButton8.OnText = "A33封装1感应电机";
  528. this.plcUiButton8.ReadNode = new Node("Application.OutPut.A33封装1感应电机", NodeType.BOOL, null);
  529. this.plcUiButton8.Size = new System.Drawing.Size(200, 40);
  530. this.plcUiButton8.Symbol = 0;
  531. this.plcUiButton8.TabIndex = 314;
  532. this.plcUiButton8.Text = "A33封装1感应电机";
  533. this.plcUiButton8.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  534. this.plcUiButton8.WriteNode = null;
  535. //
  536. // plcUiButton9
  537. //
  538. this.plcUiButton9.ButtonType = PlcUiControl.ButtonType.交替型;
  539. this.plcUiButton9.Cursor = System.Windows.Forms.Cursors.Hand;
  540. this.plcUiButton9.DisabilityTriggerNode = null;
  541. this.plcUiButton9.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  542. this.plcUiButton9.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  543. this.plcUiButton9.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  544. this.plcUiButton9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  545. this.plcUiButton9.InvisibilityTriggerNode = null;
  546. this.plcUiButton9.IsReadWriteNodeSame = false;
  547. this.plcUiButton9.Location = new System.Drawing.Point(1448, 502);
  548. this.plcUiButton9.Maximum = 0D;
  549. this.plcUiButton9.Minimum = 0D;
  550. this.plcUiButton9.MinimumSize = new System.Drawing.Size(1, 1);
  551. this.plcUiButton9.Name = "plcUiButton9";
  552. this.plcUiButton9.NeedUserEnsure = false;
  553. this.plcUiButton9.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  554. this.plcUiButton9.OffSymbol = 0;
  555. this.plcUiButton9.OffText = "A33_手动运行按钮灯";
  556. this.plcUiButton9.OnColor = System.Drawing.Color.Green;
  557. this.plcUiButton9.OnSymbol = 0;
  558. this.plcUiButton9.OnText = "A33_手动运行按钮灯";
  559. this.plcUiButton9.ReadNode = new Node("Application.OutPut.A33_手动运行按钮灯", NodeType.BOOL, null);
  560. this.plcUiButton9.Size = new System.Drawing.Size(200, 40);
  561. this.plcUiButton9.Symbol = 0;
  562. this.plcUiButton9.TabIndex = 313;
  563. this.plcUiButton9.Text = "A33_手动运行按钮灯";
  564. this.plcUiButton9.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  565. this.plcUiButton9.WriteNode = null;
  566. //
  567. // plcUiButton10
  568. //
  569. this.plcUiButton10.ButtonType = PlcUiControl.ButtonType.交替型;
  570. this.plcUiButton10.Cursor = System.Windows.Forms.Cursors.Hand;
  571. this.plcUiButton10.DisabilityTriggerNode = null;
  572. this.plcUiButton10.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  573. this.plcUiButton10.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  574. this.plcUiButton10.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  575. this.plcUiButton10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  576. this.plcUiButton10.InvisibilityTriggerNode = null;
  577. this.plcUiButton10.IsReadWriteNodeSame = false;
  578. this.plcUiButton10.Location = new System.Drawing.Point(1448, 452);
  579. this.plcUiButton10.Maximum = 0D;
  580. this.plcUiButton10.Minimum = 0D;
  581. this.plcUiButton10.MinimumSize = new System.Drawing.Size(1, 1);
  582. this.plcUiButton10.Name = "plcUiButton10";
  583. this.plcUiButton10.NeedUserEnsure = false;
  584. this.plcUiButton10.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  585. this.plcUiButton10.OffSymbol = 0;
  586. this.plcUiButton10.OffText = "A33_手动穿带按钮灯";
  587. this.plcUiButton10.OnColor = System.Drawing.Color.Green;
  588. this.plcUiButton10.OnSymbol = 0;
  589. this.plcUiButton10.OnText = "A33_手动穿带按钮灯";
  590. this.plcUiButton10.ReadNode = new Node("Application.OutPut.A33_手动穿带按钮灯", NodeType.BOOL, null);
  591. this.plcUiButton10.Size = new System.Drawing.Size(200, 40);
  592. this.plcUiButton10.Symbol = 0;
  593. this.plcUiButton10.TabIndex = 312;
  594. this.plcUiButton10.Text = "A33_手动穿带按钮灯";
  595. this.plcUiButton10.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  596. this.plcUiButton10.WriteNode = null;
  597. //
  598. // plcUiButton11
  599. //
  600. this.plcUiButton11.ButtonType = PlcUiControl.ButtonType.交替型;
  601. this.plcUiButton11.Cursor = System.Windows.Forms.Cursors.Hand;
  602. this.plcUiButton11.DisabilityTriggerNode = null;
  603. this.plcUiButton11.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  604. this.plcUiButton11.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  605. this.plcUiButton11.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  606. this.plcUiButton11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  607. this.plcUiButton11.InvisibilityTriggerNode = null;
  608. this.plcUiButton11.IsReadWriteNodeSame = false;
  609. this.plcUiButton11.Location = new System.Drawing.Point(1448, 402);
  610. this.plcUiButton11.Maximum = 0D;
  611. this.plcUiButton11.Minimum = 0D;
  612. this.plcUiButton11.MinimumSize = new System.Drawing.Size(1, 1);
  613. this.plcUiButton11.Name = "plcUiButton11";
  614. this.plcUiButton11.NeedUserEnsure = false;
  615. this.plcUiButton11.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  616. this.plcUiButton11.OffSymbol = 0;
  617. this.plcUiButton11.OffText = "A33_手动打带按钮灯";
  618. this.plcUiButton11.OnColor = System.Drawing.Color.Green;
  619. this.plcUiButton11.OnSymbol = 0;
  620. this.plcUiButton11.OnText = "A33_手动打带按钮灯";
  621. this.plcUiButton11.ReadNode = new Node("Application.OutPut.A33_手动打带按钮灯", NodeType.BOOL, null);
  622. this.plcUiButton11.Size = new System.Drawing.Size(200, 40);
  623. this.plcUiButton11.Symbol = 0;
  624. this.plcUiButton11.TabIndex = 311;
  625. this.plcUiButton11.Text = "A33_手动打带按钮灯";
  626. this.plcUiButton11.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  627. this.plcUiButton11.WriteNode = null;
  628. //
  629. // plcUiButton3
  630. //
  631. this.plcUiButton3.ButtonType = PlcUiControl.ButtonType.交替型;
  632. this.plcUiButton3.Cursor = System.Windows.Forms.Cursors.Hand;
  633. this.plcUiButton3.DisabilityTriggerNode = null;
  634. this.plcUiButton3.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  635. this.plcUiButton3.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  636. this.plcUiButton3.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  637. this.plcUiButton3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  638. this.plcUiButton3.InvisibilityTriggerNode = null;
  639. this.plcUiButton3.IsReadWriteNodeSame = false;
  640. this.plcUiButton3.Location = new System.Drawing.Point(1448, 352);
  641. this.plcUiButton3.Maximum = 0D;
  642. this.plcUiButton3.Minimum = 0D;
  643. this.plcUiButton3.MinimumSize = new System.Drawing.Size(1, 1);
  644. this.plcUiButton3.Name = "plcUiButton3";
  645. this.plcUiButton3.NeedUserEnsure = false;
  646. this.plcUiButton3.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  647. this.plcUiButton3.OffSymbol = 0;
  648. this.plcUiButton3.OffText = "A33_手动切带按钮灯";
  649. this.plcUiButton3.OnColor = System.Drawing.Color.Green;
  650. this.plcUiButton3.OnSymbol = 0;
  651. this.plcUiButton3.OnText = "A33_手动切带按钮灯";
  652. this.plcUiButton3.ReadNode = new Node("Application.OutPut.A33_手动切带按钮灯", NodeType.BOOL, null);
  653. this.plcUiButton3.Size = new System.Drawing.Size(200, 40);
  654. this.plcUiButton3.Symbol = 0;
  655. this.plcUiButton3.TabIndex = 310;
  656. this.plcUiButton3.Text = "A33_手动切带按钮灯";
  657. this.plcUiButton3.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  658. this.plcUiButton3.WriteNode = null;
  659. //
  660. // plcUiButton5
  661. //
  662. this.plcUiButton5.ButtonType = PlcUiControl.ButtonType.交替型;
  663. this.plcUiButton5.Cursor = System.Windows.Forms.Cursors.Hand;
  664. this.plcUiButton5.DisabilityTriggerNode = null;
  665. this.plcUiButton5.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  666. this.plcUiButton5.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  667. this.plcUiButton5.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  668. this.plcUiButton5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  669. this.plcUiButton5.InvisibilityTriggerNode = null;
  670. this.plcUiButton5.IsReadWriteNodeSame = false;
  671. this.plcUiButton5.Location = new System.Drawing.Point(1448, 302);
  672. this.plcUiButton5.Maximum = 0D;
  673. this.plcUiButton5.Minimum = 0D;
  674. this.plcUiButton5.MinimumSize = new System.Drawing.Size(1, 1);
  675. this.plcUiButton5.Name = "plcUiButton5";
  676. this.plcUiButton5.NeedUserEnsure = false;
  677. this.plcUiButton5.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  678. this.plcUiButton5.OffSymbol = 0;
  679. this.plcUiButton5.OffText = "A33_封装1吸嘴破真空电磁阀";
  680. this.plcUiButton5.OnColor = System.Drawing.Color.Green;
  681. this.plcUiButton5.OnSymbol = 0;
  682. this.plcUiButton5.OnText = "A33_封装1吸嘴破真空电磁阀";
  683. this.plcUiButton5.ReadNode = new Node("Application.OutPut.A33_封装1吸嘴破真空电磁阀", NodeType.BOOL, null);
  684. this.plcUiButton5.Size = new System.Drawing.Size(200, 40);
  685. this.plcUiButton5.Symbol = 0;
  686. this.plcUiButton5.TabIndex = 309;
  687. this.plcUiButton5.Text = "A33_封装1吸嘴破真空电磁阀";
  688. this.plcUiButton5.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  689. this.plcUiButton5.WriteNode = null;
  690. //
  691. // plcUiButton6
  692. //
  693. this.plcUiButton6.ButtonType = PlcUiControl.ButtonType.交替型;
  694. this.plcUiButton6.Cursor = System.Windows.Forms.Cursors.Hand;
  695. this.plcUiButton6.DisabilityTriggerNode = null;
  696. this.plcUiButton6.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  697. this.plcUiButton6.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  698. this.plcUiButton6.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  699. this.plcUiButton6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  700. this.plcUiButton6.InvisibilityTriggerNode = null;
  701. this.plcUiButton6.IsReadWriteNodeSame = false;
  702. this.plcUiButton6.Location = new System.Drawing.Point(1448, 252);
  703. this.plcUiButton6.Maximum = 0D;
  704. this.plcUiButton6.Minimum = 0D;
  705. this.plcUiButton6.MinimumSize = new System.Drawing.Size(1, 1);
  706. this.plcUiButton6.Name = "plcUiButton6";
  707. this.plcUiButton6.NeedUserEnsure = false;
  708. this.plcUiButton6.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  709. this.plcUiButton6.OffSymbol = 0;
  710. this.plcUiButton6.OffText = "A33_封合气缸电磁阀";
  711. this.plcUiButton6.OnColor = System.Drawing.Color.Green;
  712. this.plcUiButton6.OnSymbol = 0;
  713. this.plcUiButton6.OnText = "A33_封合气缸电磁阀";
  714. this.plcUiButton6.ReadNode = new Node("Application.OutPut.A33_封合气缸电磁阀", NodeType.BOOL, null);
  715. this.plcUiButton6.Size = new System.Drawing.Size(200, 40);
  716. this.plcUiButton6.Symbol = 0;
  717. this.plcUiButton6.TabIndex = 308;
  718. this.plcUiButton6.Text = "A33_封合气缸电磁阀";
  719. this.plcUiButton6.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  720. this.plcUiButton6.WriteNode = null;
  721. //
  722. // plcUiLight29
  723. //
  724. this.plcUiLight29.DisabilityTriggerNode = null;
  725. this.plcUiLight29.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  726. this.plcUiLight29.InvisibilityTriggerNode = null;
  727. this.plcUiLight29.Location = new System.Drawing.Point(621, 452);
  728. this.plcUiLight29.MinimumSize = new System.Drawing.Size(1, 1);
  729. this.plcUiLight29.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  730. this.plcUiLight29.Name = "plcUiLight29";
  731. this.plcUiLight29.NodeName = "A33封装站1_载带有无感应器";
  732. this.plcUiLight29.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  733. this.plcUiLight29.OffText = null;
  734. this.plcUiLight29.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  735. this.plcUiLight29.OnText = null;
  736. this.plcUiLight29.Radius = 40;
  737. this.plcUiLight29.ReadNode = new Node("Application.InPut.A33封装站1_载带有无感应器", NodeType.BOOL, null);
  738. this.plcUiLight29.ShowText = true;
  739. this.plcUiLight29.Size = new System.Drawing.Size(270, 40);
  740. this.plcUiLight29.State = Sunny.UI.UILightState.Off;
  741. this.plcUiLight29.TabIndex = 307;
  742. this.plcUiLight29.Text = "A33封装站1_载带有无感应器";
  743. this.plcUiLight29.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  744. this.plcUiLight29.WriteNode = null;
  745. //
  746. // plcUiLight26
  747. //
  748. this.plcUiLight26.DisabilityTriggerNode = null;
  749. this.plcUiLight26.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  750. this.plcUiLight26.InvisibilityTriggerNode = null;
  751. this.plcUiLight26.Location = new System.Drawing.Point(621, 402);
  752. this.plcUiLight26.MinimumSize = new System.Drawing.Size(1, 1);
  753. this.plcUiLight26.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  754. this.plcUiLight26.Name = "plcUiLight26";
  755. this.plcUiLight26.NodeName = "A33封装站1_载带供带感应器";
  756. this.plcUiLight26.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  757. this.plcUiLight26.OffText = null;
  758. this.plcUiLight26.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  759. this.plcUiLight26.OnText = null;
  760. this.plcUiLight26.Radius = 40;
  761. this.plcUiLight26.ReadNode = new Node("Application.InPut.A33封装站1_载带供带感应器", NodeType.BOOL, null);
  762. this.plcUiLight26.ShowText = true;
  763. this.plcUiLight26.Size = new System.Drawing.Size(270, 40);
  764. this.plcUiLight26.State = Sunny.UI.UILightState.Off;
  765. this.plcUiLight26.TabIndex = 306;
  766. this.plcUiLight26.Text = "A33封装站1_载带供带感应器";
  767. this.plcUiLight26.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  768. this.plcUiLight26.WriteNode = null;
  769. //
  770. // plcUiLight27
  771. //
  772. this.plcUiLight27.DisabilityTriggerNode = null;
  773. this.plcUiLight27.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  774. this.plcUiLight27.InvisibilityTriggerNode = null;
  775. this.plcUiLight27.Location = new System.Drawing.Point(621, 352);
  776. this.plcUiLight27.MinimumSize = new System.Drawing.Size(1, 1);
  777. this.plcUiLight27.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  778. this.plcUiLight27.Name = "plcUiLight27";
  779. this.plcUiLight27.NodeName = "A33封装站1_走带伺服辅助原点";
  780. this.plcUiLight27.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  781. this.plcUiLight27.OffText = null;
  782. this.plcUiLight27.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  783. this.plcUiLight27.OnText = null;
  784. this.plcUiLight27.Radius = 40;
  785. this.plcUiLight27.ReadNode = new Node("Application.InPut.A33封装站1_走带伺服辅助原点", NodeType.BOOL, null);
  786. this.plcUiLight27.ShowText = true;
  787. this.plcUiLight27.Size = new System.Drawing.Size(270, 40);
  788. this.plcUiLight27.State = Sunny.UI.UILightState.Off;
  789. this.plcUiLight27.TabIndex = 305;
  790. this.plcUiLight27.Text = "A33封装站1_走带伺服辅助原点";
  791. this.plcUiLight27.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  792. this.plcUiLight27.WriteNode = null;
  793. //
  794. // plcUiLight28
  795. //
  796. this.plcUiLight28.DisabilityTriggerNode = null;
  797. this.plcUiLight28.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  798. this.plcUiLight28.InvisibilityTriggerNode = null;
  799. this.plcUiLight28.Location = new System.Drawing.Point(621, 302);
  800. this.plcUiLight28.MinimumSize = new System.Drawing.Size(1, 1);
  801. this.plcUiLight28.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  802. this.plcUiLight28.Name = "plcUiLight28";
  803. this.plcUiLight28.NodeName = "A33封装站1_装填叠料感应";
  804. this.plcUiLight28.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  805. this.plcUiLight28.OffText = null;
  806. this.plcUiLight28.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  807. this.plcUiLight28.OnText = null;
  808. this.plcUiLight28.Radius = 40;
  809. this.plcUiLight28.ReadNode = new Node("Application.InPut.A33封装站1_装填叠料感应", NodeType.BOOL, null);
  810. this.plcUiLight28.ShowText = true;
  811. this.plcUiLight28.Size = new System.Drawing.Size(270, 40);
  812. this.plcUiLight28.State = Sunny.UI.UILightState.Off;
  813. this.plcUiLight28.TabIndex = 304;
  814. this.plcUiLight28.Text = "A33封装站1_装填叠料感应";
  815. this.plcUiLight28.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  816. this.plcUiLight28.WriteNode = null;
  817. //
  818. // plcUiLight1
  819. //
  820. this.plcUiLight1.DisabilityTriggerNode = null;
  821. this.plcUiLight1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  822. this.plcUiLight1.InvisibilityTriggerNode = null;
  823. this.plcUiLight1.Location = new System.Drawing.Point(621, 252);
  824. this.plcUiLight1.MinimumSize = new System.Drawing.Size(1, 1);
  825. this.plcUiLight1.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  826. this.plcUiLight1.Name = "plcUiLight1";
  827. this.plcUiLight1.NodeName = "A33封装站1_空料检测感应";
  828. this.plcUiLight1.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  829. this.plcUiLight1.OffText = null;
  830. this.plcUiLight1.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  831. this.plcUiLight1.OnText = null;
  832. this.plcUiLight1.Radius = 40;
  833. this.plcUiLight1.ReadNode = new Node("Application.InPut.A33封装站1_空料检测感应", NodeType.BOOL, null);
  834. this.plcUiLight1.ShowText = true;
  835. this.plcUiLight1.Size = new System.Drawing.Size(270, 40);
  836. this.plcUiLight1.State = Sunny.UI.UILightState.Off;
  837. this.plcUiLight1.TabIndex = 303;
  838. this.plcUiLight1.Text = "A33封装站1_空料检测感应";
  839. this.plcUiLight1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  840. this.plcUiLight1.WriteNode = null;
  841. //
  842. // plcUiLight24
  843. //
  844. this.plcUiLight24.DisabilityTriggerNode = null;
  845. this.plcUiLight24.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  846. this.plcUiLight24.InvisibilityTriggerNode = null;
  847. this.plcUiLight24.Location = new System.Drawing.Point(621, 202);
  848. this.plcUiLight24.MinimumSize = new System.Drawing.Size(1, 1);
  849. this.plcUiLight24.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  850. this.plcUiLight24.Name = "plcUiLight24";
  851. this.plcUiLight24.NodeName = "A33封装站1_盖膜缺料感应";
  852. this.plcUiLight24.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  853. this.plcUiLight24.OffText = null;
  854. this.plcUiLight24.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  855. this.plcUiLight24.OnText = null;
  856. this.plcUiLight24.Radius = 40;
  857. this.plcUiLight24.ReadNode = new Node("Application.InPut.A33封装站1_盖膜缺料感应", NodeType.BOOL, null);
  858. this.plcUiLight24.ShowText = true;
  859. this.plcUiLight24.Size = new System.Drawing.Size(270, 40);
  860. this.plcUiLight24.State = Sunny.UI.UILightState.Off;
  861. this.plcUiLight24.TabIndex = 302;
  862. this.plcUiLight24.Text = "A33封装站1_盖膜缺料感应";
  863. this.plcUiLight24.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  864. this.plcUiLight24.WriteNode = null;
  865. //
  866. // plcUiLight25
  867. //
  868. this.plcUiLight25.DisabilityTriggerNode = null;
  869. this.plcUiLight25.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  870. this.plcUiLight25.InvisibilityTriggerNode = null;
  871. this.plcUiLight25.Location = new System.Drawing.Point(621, 152);
  872. this.plcUiLight25.MinimumSize = new System.Drawing.Size(1, 1);
  873. this.plcUiLight25.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  874. this.plcUiLight25.Name = "plcUiLight25";
  875. this.plcUiLight25.NodeName = "A33封装站1_盖膜摆轮感应";
  876. this.plcUiLight25.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  877. this.plcUiLight25.OffText = null;
  878. this.plcUiLight25.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  879. this.plcUiLight25.OnText = null;
  880. this.plcUiLight25.Radius = 40;
  881. this.plcUiLight25.ReadNode = new Node("Application.InPut.A33封装站1_盖膜摆轮感应", NodeType.BOOL, null);
  882. this.plcUiLight25.ShowText = true;
  883. this.plcUiLight25.Size = new System.Drawing.Size(270, 40);
  884. this.plcUiLight25.State = Sunny.UI.UILightState.Off;
  885. this.plcUiLight25.TabIndex = 301;
  886. this.plcUiLight25.Text = "A33封装站1_盖膜摆轮感应";
  887. this.plcUiLight25.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  888. this.plcUiLight25.WriteNode = null;
  889. //
  890. // plcUiLight3
  891. //
  892. this.plcUiLight3.DisabilityTriggerNode = null;
  893. this.plcUiLight3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  894. this.plcUiLight3.InvisibilityTriggerNode = null;
  895. this.plcUiLight3.Location = new System.Drawing.Point(621, 102);
  896. this.plcUiLight3.MinimumSize = new System.Drawing.Size(1, 1);
  897. this.plcUiLight3.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  898. this.plcUiLight3.Name = "plcUiLight3";
  899. this.plcUiLight3.NodeName = "A33封装站1_温控高温报警";
  900. this.plcUiLight3.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  901. this.plcUiLight3.OffText = null;
  902. this.plcUiLight3.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  903. this.plcUiLight3.OnText = null;
  904. this.plcUiLight3.Radius = 40;
  905. this.plcUiLight3.ReadNode = new Node("Application.InPut.A33封装站1_温控高温报警", NodeType.BOOL, null);
  906. this.plcUiLight3.ShowText = true;
  907. this.plcUiLight3.Size = new System.Drawing.Size(270, 40);
  908. this.plcUiLight3.State = Sunny.UI.UILightState.Off;
  909. this.plcUiLight3.TabIndex = 300;
  910. this.plcUiLight3.Text = "A33封装站1_温控高温报警";
  911. this.plcUiLight3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  912. this.plcUiLight3.WriteNode = null;
  913. //
  914. // plcUiLight7
  915. //
  916. this.plcUiLight7.DisabilityTriggerNode = null;
  917. this.plcUiLight7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  918. this.plcUiLight7.InvisibilityTriggerNode = null;
  919. this.plcUiLight7.Location = new System.Drawing.Point(621, 52);
  920. this.plcUiLight7.MinimumSize = new System.Drawing.Size(1, 1);
  921. this.plcUiLight7.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  922. this.plcUiLight7.Name = "plcUiLight7";
  923. this.plcUiLight7.NodeName = "A33封装站1_温控低温报警";
  924. this.plcUiLight7.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  925. this.plcUiLight7.OffText = null;
  926. this.plcUiLight7.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  927. this.plcUiLight7.OnText = null;
  928. this.plcUiLight7.Radius = 40;
  929. this.plcUiLight7.ReadNode = new Node("Application.InPut.A33封装站1_温控低温报警", NodeType.BOOL, null);
  930. this.plcUiLight7.ShowText = true;
  931. this.plcUiLight7.Size = new System.Drawing.Size(270, 40);
  932. this.plcUiLight7.State = Sunny.UI.UILightState.Off;
  933. this.plcUiLight7.TabIndex = 299;
  934. this.plcUiLight7.Text = "A33封装站1_温控低温报警";
  935. this.plcUiLight7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  936. this.plcUiLight7.WriteNode = null;
  937. //
  938. // plcUiLight8
  939. //
  940. this.plcUiLight8.DisabilityTriggerNode = null;
  941. this.plcUiLight8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  942. this.plcUiLight8.InvisibilityTriggerNode = null;
  943. this.plcUiLight8.Location = new System.Drawing.Point(621, 2);
  944. this.plcUiLight8.MinimumSize = new System.Drawing.Size(1, 1);
  945. this.plcUiLight8.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  946. this.plcUiLight8.Name = "plcUiLight8";
  947. this.plcUiLight8.NodeName = "A33封装站1_材料检测_高位";
  948. this.plcUiLight8.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  949. this.plcUiLight8.OffText = null;
  950. this.plcUiLight8.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  951. this.plcUiLight8.OnText = null;
  952. this.plcUiLight8.Radius = 40;
  953. this.plcUiLight8.ReadNode = new Node("Application.InPut.A33封装站1_材料检测_高位", NodeType.BOOL, null);
  954. this.plcUiLight8.ShowText = true;
  955. this.plcUiLight8.Size = new System.Drawing.Size(270, 40);
  956. this.plcUiLight8.State = Sunny.UI.UILightState.Off;
  957. this.plcUiLight8.TabIndex = 298;
  958. this.plcUiLight8.Text = "A33封装站1_材料检测_高位";
  959. this.plcUiLight8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  960. this.plcUiLight8.WriteNode = null;
  961. //
  962. // plcUiLight16
  963. //
  964. this.plcUiLight16.DisabilityTriggerNode = null;
  965. this.plcUiLight16.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  966. this.plcUiLight16.InvisibilityTriggerNode = null;
  967. this.plcUiLight16.Location = new System.Drawing.Point(342, 602);
  968. this.plcUiLight16.MinimumSize = new System.Drawing.Size(1, 1);
  969. this.plcUiLight16.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  970. this.plcUiLight16.Name = "plcUiLight16";
  971. this.plcUiLight16.NodeName = "A33封装站1_手动运行按钮";
  972. this.plcUiLight16.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  973. this.plcUiLight16.OffText = null;
  974. this.plcUiLight16.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  975. this.plcUiLight16.OnText = null;
  976. this.plcUiLight16.Radius = 40;
  977. this.plcUiLight16.ReadNode = new Node("Application.InPut.A33封装站1_手动运行按钮", NodeType.BOOL, null);
  978. this.plcUiLight16.ShowText = true;
  979. this.plcUiLight16.Size = new System.Drawing.Size(270, 40);
  980. this.plcUiLight16.State = Sunny.UI.UILightState.Off;
  981. this.plcUiLight16.TabIndex = 297;
  982. this.plcUiLight16.Text = "A33封装站1_手动运行按钮";
  983. this.plcUiLight16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  984. this.plcUiLight16.WriteNode = null;
  985. //
  986. // plcUiLight17
  987. //
  988. this.plcUiLight17.DisabilityTriggerNode = null;
  989. this.plcUiLight17.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  990. this.plcUiLight17.InvisibilityTriggerNode = null;
  991. this.plcUiLight17.Location = new System.Drawing.Point(342, 552);
  992. this.plcUiLight17.MinimumSize = new System.Drawing.Size(1, 1);
  993. this.plcUiLight17.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  994. this.plcUiLight17.Name = "plcUiLight17";
  995. this.plcUiLight17.NodeName = "A33封装站1_手动穿带按钮";
  996. this.plcUiLight17.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  997. this.plcUiLight17.OffText = null;
  998. this.plcUiLight17.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  999. this.plcUiLight17.OnText = null;
  1000. this.plcUiLight17.Radius = 40;
  1001. this.plcUiLight17.ReadNode = new Node("Application.InPut.A33封装站1_手动穿带按钮", NodeType.BOOL, null);
  1002. this.plcUiLight17.ShowText = true;
  1003. this.plcUiLight17.Size = new System.Drawing.Size(270, 40);
  1004. this.plcUiLight17.State = Sunny.UI.UILightState.Off;
  1005. this.plcUiLight17.TabIndex = 296;
  1006. this.plcUiLight17.Text = "A33封装站1_手动穿带按钮";
  1007. this.plcUiLight17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1008. this.plcUiLight17.WriteNode = null;
  1009. //
  1010. // plcUiLight9
  1011. //
  1012. this.plcUiLight9.DisabilityTriggerNode = null;
  1013. this.plcUiLight9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1014. this.plcUiLight9.InvisibilityTriggerNode = null;
  1015. this.plcUiLight9.Location = new System.Drawing.Point(342, 502);
  1016. this.plcUiLight9.MinimumSize = new System.Drawing.Size(1, 1);
  1017. this.plcUiLight9.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1018. this.plcUiLight9.Name = "plcUiLight9";
  1019. this.plcUiLight9.NodeName = "A33封装站1_手动打带按钮";
  1020. this.plcUiLight9.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1021. this.plcUiLight9.OffText = null;
  1022. this.plcUiLight9.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1023. this.plcUiLight9.OnText = null;
  1024. this.plcUiLight9.Radius = 40;
  1025. this.plcUiLight9.ReadNode = new Node("Application.InPut.A33封装站1_手动打带按钮", NodeType.BOOL, null);
  1026. this.plcUiLight9.ShowText = true;
  1027. this.plcUiLight9.Size = new System.Drawing.Size(270, 40);
  1028. this.plcUiLight9.State = Sunny.UI.UILightState.Off;
  1029. this.plcUiLight9.TabIndex = 295;
  1030. this.plcUiLight9.Text = "A33封装站1_手动打带按钮";
  1031. this.plcUiLight9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1032. this.plcUiLight9.WriteNode = null;
  1033. //
  1034. // plcUiLight10
  1035. //
  1036. this.plcUiLight10.DisabilityTriggerNode = null;
  1037. this.plcUiLight10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1038. this.plcUiLight10.InvisibilityTriggerNode = null;
  1039. this.plcUiLight10.Location = new System.Drawing.Point(342, 452);
  1040. this.plcUiLight10.MinimumSize = new System.Drawing.Size(1, 1);
  1041. this.plcUiLight10.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1042. this.plcUiLight10.Name = "plcUiLight10";
  1043. this.plcUiLight10.NodeName = "A33封装站1_手动切带按钮";
  1044. this.plcUiLight10.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1045. this.plcUiLight10.OffText = null;
  1046. this.plcUiLight10.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1047. this.plcUiLight10.OnText = null;
  1048. this.plcUiLight10.Radius = 40;
  1049. this.plcUiLight10.ReadNode = new Node("Application.InPut.A33封装站1_手动切带按钮", NodeType.BOOL, null);
  1050. this.plcUiLight10.ShowText = true;
  1051. this.plcUiLight10.Size = new System.Drawing.Size(270, 40);
  1052. this.plcUiLight10.State = Sunny.UI.UILightState.Off;
  1053. this.plcUiLight10.TabIndex = 294;
  1054. this.plcUiLight10.Text = "A33封装站1_手动切带按钮";
  1055. this.plcUiLight10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1056. this.plcUiLight10.WriteNode = null;
  1057. //
  1058. // plcUiLight14
  1059. //
  1060. this.plcUiLight14.DisabilityTriggerNode = null;
  1061. this.plcUiLight14.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1062. this.plcUiLight14.InvisibilityTriggerNode = null;
  1063. this.plcUiLight14.Location = new System.Drawing.Point(342, 402);
  1064. this.plcUiLight14.MinimumSize = new System.Drawing.Size(1, 1);
  1065. this.plcUiLight14.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1066. this.plcUiLight14.Name = "plcUiLight14";
  1067. this.plcUiLight14.NodeName = "A33封装站1_封装整组到位检测";
  1068. this.plcUiLight14.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1069. this.plcUiLight14.OffText = null;
  1070. this.plcUiLight14.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1071. this.plcUiLight14.OnText = null;
  1072. this.plcUiLight14.Radius = 40;
  1073. this.plcUiLight14.ReadNode = new Node("Application.InPut.A33封装站1_封装整组到位检测", NodeType.BOOL, null);
  1074. this.plcUiLight14.ShowText = true;
  1075. this.plcUiLight14.Size = new System.Drawing.Size(270, 40);
  1076. this.plcUiLight14.State = Sunny.UI.UILightState.Off;
  1077. this.plcUiLight14.TabIndex = 293;
  1078. this.plcUiLight14.Text = "A33封装站1_封装整组到位检测";
  1079. this.plcUiLight14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1080. this.plcUiLight14.WriteNode = null;
  1081. //
  1082. // plcUiLight15
  1083. //
  1084. this.plcUiLight15.DisabilityTriggerNode = null;
  1085. this.plcUiLight15.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1086. this.plcUiLight15.InvisibilityTriggerNode = null;
  1087. this.plcUiLight15.Location = new System.Drawing.Point(342, 352);
  1088. this.plcUiLight15.MinimumSize = new System.Drawing.Size(1, 1);
  1089. this.plcUiLight15.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1090. this.plcUiLight15.Name = "plcUiLight15";
  1091. this.plcUiLight15.NodeName = "A33封装站1_封合罩报警";
  1092. this.plcUiLight15.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1093. this.plcUiLight15.OffText = null;
  1094. this.plcUiLight15.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1095. this.plcUiLight15.OnText = null;
  1096. this.plcUiLight15.Radius = 40;
  1097. this.plcUiLight15.ReadNode = new Node("Application.InPut.A33封装站1_封合罩报警", NodeType.BOOL, null);
  1098. this.plcUiLight15.ShowText = true;
  1099. this.plcUiLight15.Size = new System.Drawing.Size(270, 40);
  1100. this.plcUiLight15.State = Sunny.UI.UILightState.Off;
  1101. this.plcUiLight15.TabIndex = 292;
  1102. this.plcUiLight15.Text = "A33封装站1_封合罩报警";
  1103. this.plcUiLight15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1104. this.plcUiLight15.WriteNode = null;
  1105. //
  1106. // plcUiLight12
  1107. //
  1108. this.plcUiLight12.DisabilityTriggerNode = null;
  1109. this.plcUiLight12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1110. this.plcUiLight12.InvisibilityTriggerNode = null;
  1111. this.plcUiLight12.Location = new System.Drawing.Point(342, 302);
  1112. this.plcUiLight12.MinimumSize = new System.Drawing.Size(1, 1);
  1113. this.plcUiLight12.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1114. this.plcUiLight12.Name = "plcUiLight12";
  1115. this.plcUiLight12.NodeName = "A33封装站1_封合下压气缸工位";
  1116. this.plcUiLight12.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1117. this.plcUiLight12.OffText = null;
  1118. this.plcUiLight12.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1119. this.plcUiLight12.OnText = null;
  1120. this.plcUiLight12.Radius = 40;
  1121. this.plcUiLight12.ReadNode = new Node("Application.InPut.A33封装站1_封合下压气缸工位", NodeType.BOOL, null);
  1122. this.plcUiLight12.ShowText = true;
  1123. this.plcUiLight12.Size = new System.Drawing.Size(270, 40);
  1124. this.plcUiLight12.State = Sunny.UI.UILightState.Off;
  1125. this.plcUiLight12.TabIndex = 291;
  1126. this.plcUiLight12.Text = "A33封装站1_封合下压气缸工位";
  1127. this.plcUiLight12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1128. this.plcUiLight12.WriteNode = null;
  1129. //
  1130. // plcUiLight11
  1131. //
  1132. this.plcUiLight11.DisabilityTriggerNode = null;
  1133. this.plcUiLight11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1134. this.plcUiLight11.InvisibilityTriggerNode = null;
  1135. this.plcUiLight11.Location = new System.Drawing.Point(342, 252);
  1136. this.plcUiLight11.MinimumSize = new System.Drawing.Size(1, 1);
  1137. this.plcUiLight11.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1138. this.plcUiLight11.Name = "plcUiLight11";
  1139. this.plcUiLight11.NodeName = "A33封装站1_压痕画像OKorNG";
  1140. this.plcUiLight11.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1141. this.plcUiLight11.OffText = null;
  1142. this.plcUiLight11.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1143. this.plcUiLight11.OnText = null;
  1144. this.plcUiLight11.Radius = 40;
  1145. this.plcUiLight11.ReadNode = new Node("Application.InPut.A33封装站1_压痕画像OKorNG", NodeType.BOOL, null);
  1146. this.plcUiLight11.ShowText = true;
  1147. this.plcUiLight11.Size = new System.Drawing.Size(270, 40);
  1148. this.plcUiLight11.State = Sunny.UI.UILightState.Off;
  1149. this.plcUiLight11.TabIndex = 290;
  1150. this.plcUiLight11.Text = "A33封装站1_压痕画像OKorNG";
  1151. this.plcUiLight11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1152. this.plcUiLight11.WriteNode = null;
  1153. //
  1154. // plcUiButton4
  1155. //
  1156. this.plcUiButton4.ButtonType = PlcUiControl.ButtonType.交替型;
  1157. this.plcUiButton4.Cursor = System.Windows.Forms.Cursors.Hand;
  1158. this.plcUiButton4.DisabilityTriggerNode = null;
  1159. this.plcUiButton4.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1160. this.plcUiButton4.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1161. this.plcUiButton4.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1162. this.plcUiButton4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1163. this.plcUiButton4.InvisibilityTriggerNode = null;
  1164. this.plcUiButton4.IsReadWriteNodeSame = false;
  1165. this.plcUiButton4.Location = new System.Drawing.Point(1448, 202);
  1166. this.plcUiButton4.Maximum = 0D;
  1167. this.plcUiButton4.Minimum = 0D;
  1168. this.plcUiButton4.MinimumSize = new System.Drawing.Size(1, 1);
  1169. this.plcUiButton4.Name = "plcUiButton4";
  1170. this.plcUiButton4.NeedUserEnsure = false;
  1171. this.plcUiButton4.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1172. this.plcUiButton4.OffSymbol = 0;
  1173. this.plcUiButton4.OffText = "A33_压痕画像SOT";
  1174. this.plcUiButton4.OnColor = System.Drawing.Color.Green;
  1175. this.plcUiButton4.OnSymbol = 0;
  1176. this.plcUiButton4.OnText = "A33_压痕画像SOT";
  1177. this.plcUiButton4.ReadNode = new Node("Application.OutPut.A33_压痕画像SOT", NodeType.BOOL, null);
  1178. this.plcUiButton4.Size = new System.Drawing.Size(200, 40);
  1179. this.plcUiButton4.Symbol = 0;
  1180. this.plcUiButton4.TabIndex = 289;
  1181. this.plcUiButton4.Text = "A33_压痕画像SOT";
  1182. this.plcUiButton4.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1183. this.plcUiButton4.WriteNode = null;
  1184. //
  1185. // plcUiButton13
  1186. //
  1187. this.plcUiButton13.ButtonType = PlcUiControl.ButtonType.交替型;
  1188. this.plcUiButton13.Cursor = System.Windows.Forms.Cursors.Hand;
  1189. this.plcUiButton13.DisabilityTriggerNode = null;
  1190. this.plcUiButton13.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1191. this.plcUiButton13.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1192. this.plcUiButton13.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1193. this.plcUiButton13.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1194. this.plcUiButton13.InvisibilityTriggerNode = null;
  1195. this.plcUiButton13.IsReadWriteNodeSame = false;
  1196. this.plcUiButton13.Location = new System.Drawing.Point(1448, 152);
  1197. this.plcUiButton13.Maximum = 0D;
  1198. this.plcUiButton13.Minimum = 0D;
  1199. this.plcUiButton13.MinimumSize = new System.Drawing.Size(1, 1);
  1200. this.plcUiButton13.Name = "plcUiButton13";
  1201. this.plcUiButton13.NeedUserEnsure = false;
  1202. this.plcUiButton13.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1203. this.plcUiButton13.OffSymbol = 0;
  1204. this.plcUiButton13.OffText = "A33_印字复检画像SOT";
  1205. this.plcUiButton13.OnColor = System.Drawing.Color.Green;
  1206. this.plcUiButton13.OnSymbol = 0;
  1207. this.plcUiButton13.OnText = "A33_印字复检画像SOT";
  1208. this.plcUiButton13.ReadNode = new Node("Application.OutPut.A33_印字复检画像SOT", NodeType.BOOL, null);
  1209. this.plcUiButton13.Size = new System.Drawing.Size(200, 40);
  1210. this.plcUiButton13.Symbol = 0;
  1211. this.plcUiButton13.TabIndex = 288;
  1212. this.plcUiButton13.Text = "A33_印字复检画像SOT";
  1213. this.plcUiButton13.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1214. this.plcUiButton13.WriteNode = null;
  1215. //
  1216. // plcUiButton14
  1217. //
  1218. this.plcUiButton14.ButtonType = PlcUiControl.ButtonType.交替型;
  1219. this.plcUiButton14.Cursor = System.Windows.Forms.Cursors.Hand;
  1220. this.plcUiButton14.DisabilityTriggerNode = null;
  1221. this.plcUiButton14.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1222. this.plcUiButton14.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1223. this.plcUiButton14.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1224. this.plcUiButton14.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1225. this.plcUiButton14.InvisibilityTriggerNode = null;
  1226. this.plcUiButton14.IsReadWriteNodeSame = false;
  1227. this.plcUiButton14.Location = new System.Drawing.Point(1448, 102);
  1228. this.plcUiButton14.Maximum = 0D;
  1229. this.plcUiButton14.Minimum = 0D;
  1230. this.plcUiButton14.MinimumSize = new System.Drawing.Size(1, 1);
  1231. this.plcUiButton14.Name = "plcUiButton14";
  1232. this.plcUiButton14.NeedUserEnsure = false;
  1233. this.plcUiButton14.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1234. this.plcUiButton14.OffSymbol = 0;
  1235. this.plcUiButton14.OffText = "A33_切带气缸电磁阀";
  1236. this.plcUiButton14.OnColor = System.Drawing.Color.Green;
  1237. this.plcUiButton14.OnSymbol = 0;
  1238. this.plcUiButton14.OnText = "A33_切带气缸电磁阀";
  1239. this.plcUiButton14.ReadNode = new Node("Application.OutPut.A33_切带气缸电磁阀", NodeType.BOOL, null);
  1240. this.plcUiButton14.Size = new System.Drawing.Size(200, 40);
  1241. this.plcUiButton14.Symbol = 0;
  1242. this.plcUiButton14.TabIndex = 287;
  1243. this.plcUiButton14.Text = "A33_切带气缸电磁阀";
  1244. this.plcUiButton14.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1245. this.plcUiButton14.WriteNode = null;
  1246. //
  1247. // plcUiLight13
  1248. //
  1249. this.plcUiLight13.DisabilityTriggerNode = null;
  1250. this.plcUiLight13.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1251. this.plcUiLight13.InvisibilityTriggerNode = null;
  1252. this.plcUiLight13.Location = new System.Drawing.Point(342, 202);
  1253. this.plcUiLight13.MinimumSize = new System.Drawing.Size(1, 1);
  1254. this.plcUiLight13.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1255. this.plcUiLight13.Name = "plcUiLight13";
  1256. this.plcUiLight13.NodeName = "A33封装站1_压痕画像EOT";
  1257. this.plcUiLight13.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1258. this.plcUiLight13.OffText = null;
  1259. this.plcUiLight13.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1260. this.plcUiLight13.OnText = null;
  1261. this.plcUiLight13.Radius = 40;
  1262. this.plcUiLight13.ReadNode = new Node("Application.InPut.A33封装站1_压痕画像EOT", NodeType.BOOL, null);
  1263. this.plcUiLight13.ShowText = true;
  1264. this.plcUiLight13.Size = new System.Drawing.Size(270, 40);
  1265. this.plcUiLight13.State = Sunny.UI.UILightState.Off;
  1266. this.plcUiLight13.TabIndex = 286;
  1267. this.plcUiLight13.Text = "A33封装站1_压痕画像EOT";
  1268. this.plcUiLight13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1269. this.plcUiLight13.WriteNode = null;
  1270. //
  1271. // plcUiLight30
  1272. //
  1273. this.plcUiLight30.DisabilityTriggerNode = null;
  1274. this.plcUiLight30.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1275. this.plcUiLight30.InvisibilityTriggerNode = null;
  1276. this.plcUiLight30.Location = new System.Drawing.Point(342, 152);
  1277. this.plcUiLight30.MinimumSize = new System.Drawing.Size(1, 1);
  1278. this.plcUiLight30.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1279. this.plcUiLight30.Name = "plcUiLight30";
  1280. this.plcUiLight30.NodeName = "A33封装站1_印字复检画像OKorNG";
  1281. this.plcUiLight30.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1282. this.plcUiLight30.OffText = null;
  1283. this.plcUiLight30.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1284. this.plcUiLight30.OnText = null;
  1285. this.plcUiLight30.Radius = 40;
  1286. this.plcUiLight30.ReadNode = new Node("Application.InPut.A33封装站1_印字复检画像OKorNG", NodeType.BOOL, null);
  1287. this.plcUiLight30.ShowText = true;
  1288. this.plcUiLight30.Size = new System.Drawing.Size(270, 40);
  1289. this.plcUiLight30.State = Sunny.UI.UILightState.Off;
  1290. this.plcUiLight30.TabIndex = 285;
  1291. this.plcUiLight30.Text = "A33封装站1_印字复检画像OKorNG";
  1292. this.plcUiLight30.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1293. this.plcUiLight30.WriteNode = null;
  1294. //
  1295. // plcUiLight31
  1296. //
  1297. this.plcUiLight31.DisabilityTriggerNode = null;
  1298. this.plcUiLight31.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1299. this.plcUiLight31.InvisibilityTriggerNode = null;
  1300. this.plcUiLight31.Location = new System.Drawing.Point(342, 102);
  1301. this.plcUiLight31.MinimumSize = new System.Drawing.Size(1, 1);
  1302. this.plcUiLight31.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1303. this.plcUiLight31.Name = "plcUiLight31";
  1304. this.plcUiLight31.NodeName = "A33封装站1_印字复检画像EOT";
  1305. this.plcUiLight31.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1306. this.plcUiLight31.OffText = null;
  1307. this.plcUiLight31.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1308. this.plcUiLight31.OnText = null;
  1309. this.plcUiLight31.Radius = 40;
  1310. this.plcUiLight31.ReadNode = new Node("Application.InPut.A33封装站1_印字复检画像EOT", NodeType.BOOL, null);
  1311. this.plcUiLight31.ShowText = true;
  1312. this.plcUiLight31.Size = new System.Drawing.Size(270, 40);
  1313. this.plcUiLight31.State = Sunny.UI.UILightState.Off;
  1314. this.plcUiLight31.TabIndex = 284;
  1315. this.plcUiLight31.Text = "A33封装站1_印字复检画像EOT";
  1316. this.plcUiLight31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1317. this.plcUiLight31.WriteNode = null;
  1318. //
  1319. // plcUiLight32
  1320. //
  1321. this.plcUiLight32.DisabilityTriggerNode = null;
  1322. this.plcUiLight32.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1323. this.plcUiLight32.InvisibilityTriggerNode = null;
  1324. this.plcUiLight32.Location = new System.Drawing.Point(342, 52);
  1325. this.plcUiLight32.MinimumSize = new System.Drawing.Size(1, 1);
  1326. this.plcUiLight32.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1327. this.plcUiLight32.Name = "plcUiLight32";
  1328. this.plcUiLight32.NodeName = "A33封装站1_切刀气缸原位";
  1329. this.plcUiLight32.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1330. this.plcUiLight32.OffText = null;
  1331. this.plcUiLight32.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1332. this.plcUiLight32.OnText = null;
  1333. this.plcUiLight32.Radius = 40;
  1334. this.plcUiLight32.ReadNode = new Node("Application.InPut.A33封装站1_切刀气缸原位", NodeType.BOOL, null);
  1335. this.plcUiLight32.ShowText = true;
  1336. this.plcUiLight32.Size = new System.Drawing.Size(270, 40);
  1337. this.plcUiLight32.State = Sunny.UI.UILightState.Off;
  1338. this.plcUiLight32.TabIndex = 283;
  1339. this.plcUiLight32.Text = "A33封装站1_切刀气缸原位";
  1340. this.plcUiLight32.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1341. this.plcUiLight32.WriteNode = null;
  1342. //
  1343. // plcUiLight33
  1344. //
  1345. this.plcUiLight33.DisabilityTriggerNode = null;
  1346. this.plcUiLight33.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1347. this.plcUiLight33.InvisibilityTriggerNode = null;
  1348. this.plcUiLight33.Location = new System.Drawing.Point(342, 2);
  1349. this.plcUiLight33.MinimumSize = new System.Drawing.Size(1, 1);
  1350. this.plcUiLight33.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1351. this.plcUiLight33.Name = "plcUiLight33";
  1352. this.plcUiLight33.NodeName = "A33封装站1_切刀气缸伸出位";
  1353. this.plcUiLight33.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1354. this.plcUiLight33.OffText = null;
  1355. this.plcUiLight33.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1356. this.plcUiLight33.OnText = null;
  1357. this.plcUiLight33.Radius = 40;
  1358. this.plcUiLight33.ReadNode = new Node("Application.InPut.A33封装站1_切刀气缸伸出位", NodeType.BOOL, null);
  1359. this.plcUiLight33.ShowText = true;
  1360. this.plcUiLight33.Size = new System.Drawing.Size(270, 40);
  1361. this.plcUiLight33.State = Sunny.UI.UILightState.Off;
  1362. this.plcUiLight33.TabIndex = 282;
  1363. this.plcUiLight33.Text = "A33封装站1_切刀气缸伸出位";
  1364. this.plcUiLight33.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1365. this.plcUiLight33.WriteNode = null;
  1366. //
  1367. // plcUiLight34
  1368. //
  1369. this.plcUiLight34.DisabilityTriggerNode = null;
  1370. this.plcUiLight34.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1371. this.plcUiLight34.InvisibilityTriggerNode = null;
  1372. this.plcUiLight34.Location = new System.Drawing.Point(621, 552);
  1373. this.plcUiLight34.MinimumSize = new System.Drawing.Size(1, 1);
  1374. this.plcUiLight34.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1375. this.plcUiLight34.Name = "plcUiLight34";
  1376. this.plcUiLight34.NodeName = "A35封装站2前定位_材料检测_低位";
  1377. this.plcUiLight34.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1378. this.plcUiLight34.OffText = null;
  1379. this.plcUiLight34.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1380. this.plcUiLight34.OnText = null;
  1381. this.plcUiLight34.Radius = 40;
  1382. this.plcUiLight34.ReadNode = new Node("Application.InPut.A35封装站2前定位_材料检测_低位", NodeType.BOOL, null);
  1383. this.plcUiLight34.ShowText = true;
  1384. this.plcUiLight34.Size = new System.Drawing.Size(270, 40);
  1385. this.plcUiLight34.State = Sunny.UI.UILightState.Off;
  1386. this.plcUiLight34.TabIndex = 317;
  1387. this.plcUiLight34.Text = "A35封装站2前定位_材料检测_低位";
  1388. this.plcUiLight34.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1389. this.plcUiLight34.WriteNode = null;
  1390. //
  1391. // plcUiButton15
  1392. //
  1393. this.plcUiButton15.ButtonType = PlcUiControl.ButtonType.交替型;
  1394. this.plcUiButton15.Cursor = System.Windows.Forms.Cursors.Hand;
  1395. this.plcUiButton15.DisabilityTriggerNode = null;
  1396. this.plcUiButton15.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1397. this.plcUiButton15.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1398. this.plcUiButton15.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1399. this.plcUiButton15.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1400. this.plcUiButton15.InvisibilityTriggerNode = null;
  1401. this.plcUiButton15.IsReadWriteNodeSame = false;
  1402. this.plcUiButton15.Location = new System.Drawing.Point(1683, 652);
  1403. this.plcUiButton15.Maximum = 0D;
  1404. this.plcUiButton15.Minimum = 0D;
  1405. this.plcUiButton15.MinimumSize = new System.Drawing.Size(1, 1);
  1406. this.plcUiButton15.Name = "plcUiButton15";
  1407. this.plcUiButton15.NeedUserEnsure = false;
  1408. this.plcUiButton15.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1409. this.plcUiButton15.OffSymbol = 0;
  1410. this.plcUiButton15.OffText = "A37封装2温控供电";
  1411. this.plcUiButton15.OnColor = System.Drawing.Color.Green;
  1412. this.plcUiButton15.OnSymbol = 0;
  1413. this.plcUiButton15.OnText = "A37封装2温控供电";
  1414. this.plcUiButton15.ReadNode = new Node("Application.OutPut.A37封装2温控供电", NodeType.BOOL, null);
  1415. this.plcUiButton15.Size = new System.Drawing.Size(200, 40);
  1416. this.plcUiButton15.Symbol = 0;
  1417. this.plcUiButton15.TabIndex = 352;
  1418. this.plcUiButton15.Text = "A37封装2温控供电";
  1419. this.plcUiButton15.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1420. this.plcUiButton15.WriteNode = null;
  1421. //
  1422. // plcUiButton16
  1423. //
  1424. this.plcUiButton16.ButtonType = PlcUiControl.ButtonType.交替型;
  1425. this.plcUiButton16.Cursor = System.Windows.Forms.Cursors.Hand;
  1426. this.plcUiButton16.DisabilityTriggerNode = null;
  1427. this.plcUiButton16.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1428. this.plcUiButton16.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1429. this.plcUiButton16.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1430. this.plcUiButton16.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1431. this.plcUiButton16.InvisibilityTriggerNode = null;
  1432. this.plcUiButton16.IsReadWriteNodeSame = false;
  1433. this.plcUiButton16.Location = new System.Drawing.Point(1683, 602);
  1434. this.plcUiButton16.Maximum = 0D;
  1435. this.plcUiButton16.Minimum = 0D;
  1436. this.plcUiButton16.MinimumSize = new System.Drawing.Size(1, 1);
  1437. this.plcUiButton16.Name = "plcUiButton16";
  1438. this.plcUiButton16.NeedUserEnsure = false;
  1439. this.plcUiButton16.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1440. this.plcUiButton16.OffSymbol = 0;
  1441. this.plcUiButton16.OffText = "A37封装2收料盘_步进";
  1442. this.plcUiButton16.OnColor = System.Drawing.Color.Green;
  1443. this.plcUiButton16.OnSymbol = 0;
  1444. this.plcUiButton16.OnText = "A37封装2收料盘_步进";
  1445. this.plcUiButton16.ReadNode = new Node("Application.OutPut.A37封装2收料盘_步进", NodeType.BOOL, null);
  1446. this.plcUiButton16.Size = new System.Drawing.Size(200, 40);
  1447. this.plcUiButton16.Symbol = 0;
  1448. this.plcUiButton16.TabIndex = 351;
  1449. this.plcUiButton16.Text = "A37封装2收料盘_步进";
  1450. this.plcUiButton16.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1451. this.plcUiButton16.WriteNode = null;
  1452. //
  1453. // plcUiButton17
  1454. //
  1455. this.plcUiButton17.ButtonType = PlcUiControl.ButtonType.交替型;
  1456. this.plcUiButton17.Cursor = System.Windows.Forms.Cursors.Hand;
  1457. this.plcUiButton17.DisabilityTriggerNode = null;
  1458. this.plcUiButton17.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1459. this.plcUiButton17.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1460. this.plcUiButton17.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1461. this.plcUiButton17.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1462. this.plcUiButton17.InvisibilityTriggerNode = null;
  1463. this.plcUiButton17.IsReadWriteNodeSame = false;
  1464. this.plcUiButton17.Location = new System.Drawing.Point(1683, 552);
  1465. this.plcUiButton17.Maximum = 0D;
  1466. this.plcUiButton17.Minimum = 0D;
  1467. this.plcUiButton17.MinimumSize = new System.Drawing.Size(1, 1);
  1468. this.plcUiButton17.Name = "plcUiButton17";
  1469. this.plcUiButton17.NeedUserEnsure = false;
  1470. this.plcUiButton17.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1471. this.plcUiButton17.OffSymbol = 0;
  1472. this.plcUiButton17.OffText = "A37封装2感应电机";
  1473. this.plcUiButton17.OnColor = System.Drawing.Color.Green;
  1474. this.plcUiButton17.OnSymbol = 0;
  1475. this.plcUiButton17.OnText = "A37封装2感应电机";
  1476. this.plcUiButton17.ReadNode = new Node("Application.OutPut.A37封装2感应电机", NodeType.BOOL, null);
  1477. this.plcUiButton17.Size = new System.Drawing.Size(200, 40);
  1478. this.plcUiButton17.Symbol = 0;
  1479. this.plcUiButton17.TabIndex = 350;
  1480. this.plcUiButton17.Text = "A37封装2感应电机";
  1481. this.plcUiButton17.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1482. this.plcUiButton17.WriteNode = null;
  1483. //
  1484. // plcUiButton18
  1485. //
  1486. this.plcUiButton18.ButtonType = PlcUiControl.ButtonType.交替型;
  1487. this.plcUiButton18.Cursor = System.Windows.Forms.Cursors.Hand;
  1488. this.plcUiButton18.DisabilityTriggerNode = null;
  1489. this.plcUiButton18.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1490. this.plcUiButton18.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1491. this.plcUiButton18.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1492. this.plcUiButton18.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1493. this.plcUiButton18.InvisibilityTriggerNode = null;
  1494. this.plcUiButton18.IsReadWriteNodeSame = false;
  1495. this.plcUiButton18.Location = new System.Drawing.Point(1683, 502);
  1496. this.plcUiButton18.Maximum = 0D;
  1497. this.plcUiButton18.Minimum = 0D;
  1498. this.plcUiButton18.MinimumSize = new System.Drawing.Size(1, 1);
  1499. this.plcUiButton18.Name = "plcUiButton18";
  1500. this.plcUiButton18.NeedUserEnsure = false;
  1501. this.plcUiButton18.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1502. this.plcUiButton18.OffSymbol = 0;
  1503. this.plcUiButton18.OffText = "A37_手动运行按钮灯";
  1504. this.plcUiButton18.OnColor = System.Drawing.Color.Green;
  1505. this.plcUiButton18.OnSymbol = 0;
  1506. this.plcUiButton18.OnText = "A37_手动运行按钮灯";
  1507. this.plcUiButton18.ReadNode = new Node("Application.OutPut.A37_手动运行按钮灯", NodeType.BOOL, null);
  1508. this.plcUiButton18.Size = new System.Drawing.Size(200, 40);
  1509. this.plcUiButton18.Symbol = 0;
  1510. this.plcUiButton18.TabIndex = 349;
  1511. this.plcUiButton18.Text = "A37_手动运行按钮灯";
  1512. this.plcUiButton18.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1513. this.plcUiButton18.WriteNode = null;
  1514. //
  1515. // plcUiButton19
  1516. //
  1517. this.plcUiButton19.ButtonType = PlcUiControl.ButtonType.交替型;
  1518. this.plcUiButton19.Cursor = System.Windows.Forms.Cursors.Hand;
  1519. this.plcUiButton19.DisabilityTriggerNode = null;
  1520. this.plcUiButton19.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1521. this.plcUiButton19.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1522. this.plcUiButton19.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1523. this.plcUiButton19.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1524. this.plcUiButton19.InvisibilityTriggerNode = null;
  1525. this.plcUiButton19.IsReadWriteNodeSame = false;
  1526. this.plcUiButton19.Location = new System.Drawing.Point(1683, 452);
  1527. this.plcUiButton19.Maximum = 0D;
  1528. this.plcUiButton19.Minimum = 0D;
  1529. this.plcUiButton19.MinimumSize = new System.Drawing.Size(1, 1);
  1530. this.plcUiButton19.Name = "plcUiButton19";
  1531. this.plcUiButton19.NeedUserEnsure = false;
  1532. this.plcUiButton19.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1533. this.plcUiButton19.OffSymbol = 0;
  1534. this.plcUiButton19.OffText = "A37_手动穿带按钮灯";
  1535. this.plcUiButton19.OnColor = System.Drawing.Color.Green;
  1536. this.plcUiButton19.OnSymbol = 0;
  1537. this.plcUiButton19.OnText = "A37_手动穿带按钮灯";
  1538. this.plcUiButton19.ReadNode = new Node("Application.OutPut.A37_手动穿带按钮灯", NodeType.BOOL, null);
  1539. this.plcUiButton19.Size = new System.Drawing.Size(200, 40);
  1540. this.plcUiButton19.Symbol = 0;
  1541. this.plcUiButton19.TabIndex = 348;
  1542. this.plcUiButton19.Text = "A37_手动穿带按钮灯";
  1543. this.plcUiButton19.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1544. this.plcUiButton19.WriteNode = null;
  1545. //
  1546. // plcUiButton20
  1547. //
  1548. this.plcUiButton20.ButtonType = PlcUiControl.ButtonType.交替型;
  1549. this.plcUiButton20.Cursor = System.Windows.Forms.Cursors.Hand;
  1550. this.plcUiButton20.DisabilityTriggerNode = null;
  1551. this.plcUiButton20.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1552. this.plcUiButton20.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1553. this.plcUiButton20.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1554. this.plcUiButton20.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1555. this.plcUiButton20.InvisibilityTriggerNode = null;
  1556. this.plcUiButton20.IsReadWriteNodeSame = false;
  1557. this.plcUiButton20.Location = new System.Drawing.Point(1683, 402);
  1558. this.plcUiButton20.Maximum = 0D;
  1559. this.plcUiButton20.Minimum = 0D;
  1560. this.plcUiButton20.MinimumSize = new System.Drawing.Size(1, 1);
  1561. this.plcUiButton20.Name = "plcUiButton20";
  1562. this.plcUiButton20.NeedUserEnsure = false;
  1563. this.plcUiButton20.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1564. this.plcUiButton20.OffSymbol = 0;
  1565. this.plcUiButton20.OffText = "A37_手动打带按钮灯";
  1566. this.plcUiButton20.OnColor = System.Drawing.Color.Green;
  1567. this.plcUiButton20.OnSymbol = 0;
  1568. this.plcUiButton20.OnText = "A37_手动打带按钮灯";
  1569. this.plcUiButton20.ReadNode = new Node("Application.OutPut.A37_手动打带按钮灯", NodeType.BOOL, null);
  1570. this.plcUiButton20.Size = new System.Drawing.Size(200, 40);
  1571. this.plcUiButton20.Symbol = 0;
  1572. this.plcUiButton20.TabIndex = 347;
  1573. this.plcUiButton20.Text = "A37_手动打带按钮灯";
  1574. this.plcUiButton20.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1575. this.plcUiButton20.WriteNode = null;
  1576. //
  1577. // plcUiButton21
  1578. //
  1579. this.plcUiButton21.ButtonType = PlcUiControl.ButtonType.交替型;
  1580. this.plcUiButton21.Cursor = System.Windows.Forms.Cursors.Hand;
  1581. this.plcUiButton21.DisabilityTriggerNode = null;
  1582. this.plcUiButton21.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1583. this.plcUiButton21.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1584. this.plcUiButton21.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1585. this.plcUiButton21.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1586. this.plcUiButton21.InvisibilityTriggerNode = null;
  1587. this.plcUiButton21.IsReadWriteNodeSame = false;
  1588. this.plcUiButton21.Location = new System.Drawing.Point(1683, 352);
  1589. this.plcUiButton21.Maximum = 0D;
  1590. this.plcUiButton21.Minimum = 0D;
  1591. this.plcUiButton21.MinimumSize = new System.Drawing.Size(1, 1);
  1592. this.plcUiButton21.Name = "plcUiButton21";
  1593. this.plcUiButton21.NeedUserEnsure = false;
  1594. this.plcUiButton21.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1595. this.plcUiButton21.OffSymbol = 0;
  1596. this.plcUiButton21.OffText = "A37_手动切带按钮灯";
  1597. this.plcUiButton21.OnColor = System.Drawing.Color.Green;
  1598. this.plcUiButton21.OnSymbol = 0;
  1599. this.plcUiButton21.OnText = "A37_手动切带按钮灯";
  1600. this.plcUiButton21.ReadNode = new Node("Application.OutPut.A37_手动切带按钮灯", NodeType.BOOL, null);
  1601. this.plcUiButton21.Size = new System.Drawing.Size(200, 40);
  1602. this.plcUiButton21.Symbol = 0;
  1603. this.plcUiButton21.TabIndex = 346;
  1604. this.plcUiButton21.Text = "A37_手动切带按钮灯";
  1605. this.plcUiButton21.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1606. this.plcUiButton21.WriteNode = null;
  1607. //
  1608. // plcUiButton22
  1609. //
  1610. this.plcUiButton22.ButtonType = PlcUiControl.ButtonType.交替型;
  1611. this.plcUiButton22.Cursor = System.Windows.Forms.Cursors.Hand;
  1612. this.plcUiButton22.DisabilityTriggerNode = null;
  1613. this.plcUiButton22.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1614. this.plcUiButton22.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1615. this.plcUiButton22.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1616. this.plcUiButton22.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1617. this.plcUiButton22.InvisibilityTriggerNode = null;
  1618. this.plcUiButton22.IsReadWriteNodeSame = false;
  1619. this.plcUiButton22.Location = new System.Drawing.Point(1683, 302);
  1620. this.plcUiButton22.Maximum = 0D;
  1621. this.plcUiButton22.Minimum = 0D;
  1622. this.plcUiButton22.MinimumSize = new System.Drawing.Size(1, 1);
  1623. this.plcUiButton22.Name = "plcUiButton22";
  1624. this.plcUiButton22.NeedUserEnsure = false;
  1625. this.plcUiButton22.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1626. this.plcUiButton22.OffSymbol = 0;
  1627. this.plcUiButton22.OffText = "A37_封装2吸嘴破真空电磁阀";
  1628. this.plcUiButton22.OnColor = System.Drawing.Color.Green;
  1629. this.plcUiButton22.OnSymbol = 0;
  1630. this.plcUiButton22.OnText = "A37_封装2吸嘴破真空电磁阀";
  1631. this.plcUiButton22.ReadNode = new Node("Application.OutPut.A37_封装2吸嘴破真空电磁阀", NodeType.BOOL, null);
  1632. this.plcUiButton22.Size = new System.Drawing.Size(200, 40);
  1633. this.plcUiButton22.Symbol = 0;
  1634. this.plcUiButton22.TabIndex = 345;
  1635. this.plcUiButton22.Text = "A37_封装2吸嘴破真空电磁阀";
  1636. this.plcUiButton22.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1637. this.plcUiButton22.WriteNode = null;
  1638. //
  1639. // plcUiButton23
  1640. //
  1641. this.plcUiButton23.ButtonType = PlcUiControl.ButtonType.交替型;
  1642. this.plcUiButton23.Cursor = System.Windows.Forms.Cursors.Hand;
  1643. this.plcUiButton23.DisabilityTriggerNode = null;
  1644. this.plcUiButton23.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1645. this.plcUiButton23.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1646. this.plcUiButton23.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1647. this.plcUiButton23.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1648. this.plcUiButton23.InvisibilityTriggerNode = null;
  1649. this.plcUiButton23.IsReadWriteNodeSame = false;
  1650. this.plcUiButton23.Location = new System.Drawing.Point(1683, 252);
  1651. this.plcUiButton23.Maximum = 0D;
  1652. this.plcUiButton23.Minimum = 0D;
  1653. this.plcUiButton23.MinimumSize = new System.Drawing.Size(1, 1);
  1654. this.plcUiButton23.Name = "plcUiButton23";
  1655. this.plcUiButton23.NeedUserEnsure = false;
  1656. this.plcUiButton23.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1657. this.plcUiButton23.OffSymbol = 0;
  1658. this.plcUiButton23.OffText = "A37_封合气缸电磁阀";
  1659. this.plcUiButton23.OnColor = System.Drawing.Color.Green;
  1660. this.plcUiButton23.OnSymbol = 0;
  1661. this.plcUiButton23.OnText = "A37_封合气缸电磁阀";
  1662. this.plcUiButton23.ReadNode = new Node("Application.OutPut.A37_封合气缸电磁阀", NodeType.BOOL, null);
  1663. this.plcUiButton23.Size = new System.Drawing.Size(200, 40);
  1664. this.plcUiButton23.Symbol = 0;
  1665. this.plcUiButton23.TabIndex = 344;
  1666. this.plcUiButton23.Text = "A37_封合气缸电磁阀";
  1667. this.plcUiButton23.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1668. this.plcUiButton23.WriteNode = null;
  1669. //
  1670. // plcUiLight35
  1671. //
  1672. this.plcUiLight35.DisabilityTriggerNode = null;
  1673. this.plcUiLight35.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1674. this.plcUiLight35.InvisibilityTriggerNode = null;
  1675. this.plcUiLight35.Location = new System.Drawing.Point(1172, 452);
  1676. this.plcUiLight35.MinimumSize = new System.Drawing.Size(1, 1);
  1677. this.plcUiLight35.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1678. this.plcUiLight35.Name = "plcUiLight35";
  1679. this.plcUiLight35.NodeName = "A37封装站2_载带有无感应器";
  1680. this.plcUiLight35.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1681. this.plcUiLight35.OffText = null;
  1682. this.plcUiLight35.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1683. this.plcUiLight35.OnText = null;
  1684. this.plcUiLight35.Radius = 40;
  1685. this.plcUiLight35.ReadNode = new Node("Application.InPut.A37封装站2_载带有无感应器", NodeType.BOOL, null);
  1686. this.plcUiLight35.ShowText = true;
  1687. this.plcUiLight35.Size = new System.Drawing.Size(270, 40);
  1688. this.plcUiLight35.State = Sunny.UI.UILightState.Off;
  1689. this.plcUiLight35.TabIndex = 343;
  1690. this.plcUiLight35.Text = "A37封装站2_载带有无感应器";
  1691. this.plcUiLight35.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1692. this.plcUiLight35.WriteNode = null;
  1693. //
  1694. // plcUiLight36
  1695. //
  1696. this.plcUiLight36.DisabilityTriggerNode = null;
  1697. this.plcUiLight36.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1698. this.plcUiLight36.InvisibilityTriggerNode = null;
  1699. this.plcUiLight36.Location = new System.Drawing.Point(1172, 402);
  1700. this.plcUiLight36.MinimumSize = new System.Drawing.Size(1, 1);
  1701. this.plcUiLight36.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1702. this.plcUiLight36.Name = "plcUiLight36";
  1703. this.plcUiLight36.NodeName = "A37封装站2_载带供带感应器";
  1704. this.plcUiLight36.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1705. this.plcUiLight36.OffText = null;
  1706. this.plcUiLight36.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1707. this.plcUiLight36.OnText = null;
  1708. this.plcUiLight36.Radius = 40;
  1709. this.plcUiLight36.ReadNode = new Node("Application.InPut.A37封装站2_载带供带感应器", NodeType.BOOL, null);
  1710. this.plcUiLight36.ShowText = true;
  1711. this.plcUiLight36.Size = new System.Drawing.Size(270, 40);
  1712. this.plcUiLight36.State = Sunny.UI.UILightState.Off;
  1713. this.plcUiLight36.TabIndex = 342;
  1714. this.plcUiLight36.Text = "A37封装站2_载带供带感应器";
  1715. this.plcUiLight36.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1716. this.plcUiLight36.WriteNode = null;
  1717. //
  1718. // plcUiLight37
  1719. //
  1720. this.plcUiLight37.DisabilityTriggerNode = null;
  1721. this.plcUiLight37.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1722. this.plcUiLight37.InvisibilityTriggerNode = null;
  1723. this.plcUiLight37.Location = new System.Drawing.Point(1172, 352);
  1724. this.plcUiLight37.MinimumSize = new System.Drawing.Size(1, 1);
  1725. this.plcUiLight37.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1726. this.plcUiLight37.Name = "plcUiLight37";
  1727. this.plcUiLight37.NodeName = "A37封装站2_走带伺服辅助原点";
  1728. this.plcUiLight37.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1729. this.plcUiLight37.OffText = null;
  1730. this.plcUiLight37.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1731. this.plcUiLight37.OnText = null;
  1732. this.plcUiLight37.Radius = 40;
  1733. this.plcUiLight37.ReadNode = new Node("Application.InPut.A37封装站2_走带伺服辅助原点", NodeType.BOOL, null);
  1734. this.plcUiLight37.ShowText = true;
  1735. this.plcUiLight37.Size = new System.Drawing.Size(270, 40);
  1736. this.plcUiLight37.State = Sunny.UI.UILightState.Off;
  1737. this.plcUiLight37.TabIndex = 341;
  1738. this.plcUiLight37.Text = "A37封装站2_走带伺服辅助原点";
  1739. this.plcUiLight37.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1740. this.plcUiLight37.WriteNode = null;
  1741. //
  1742. // plcUiLight38
  1743. //
  1744. this.plcUiLight38.DisabilityTriggerNode = null;
  1745. this.plcUiLight38.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1746. this.plcUiLight38.InvisibilityTriggerNode = null;
  1747. this.plcUiLight38.Location = new System.Drawing.Point(1172, 302);
  1748. this.plcUiLight38.MinimumSize = new System.Drawing.Size(1, 1);
  1749. this.plcUiLight38.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1750. this.plcUiLight38.Name = "plcUiLight38";
  1751. this.plcUiLight38.NodeName = "A37封装站2_装填叠料感应";
  1752. this.plcUiLight38.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1753. this.plcUiLight38.OffText = null;
  1754. this.plcUiLight38.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1755. this.plcUiLight38.OnText = null;
  1756. this.plcUiLight38.Radius = 40;
  1757. this.plcUiLight38.ReadNode = new Node("Application.InPut.A37封装站2_装填叠料感应", NodeType.BOOL, null);
  1758. this.plcUiLight38.ShowText = true;
  1759. this.plcUiLight38.Size = new System.Drawing.Size(270, 40);
  1760. this.plcUiLight38.State = Sunny.UI.UILightState.Off;
  1761. this.plcUiLight38.TabIndex = 340;
  1762. this.plcUiLight38.Text = "A37封装站2_装填叠料感应";
  1763. this.plcUiLight38.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1764. this.plcUiLight38.WriteNode = null;
  1765. //
  1766. // plcUiLight39
  1767. //
  1768. this.plcUiLight39.DisabilityTriggerNode = null;
  1769. this.plcUiLight39.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1770. this.plcUiLight39.InvisibilityTriggerNode = null;
  1771. this.plcUiLight39.Location = new System.Drawing.Point(1172, 252);
  1772. this.plcUiLight39.MinimumSize = new System.Drawing.Size(1, 1);
  1773. this.plcUiLight39.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1774. this.plcUiLight39.Name = "plcUiLight39";
  1775. this.plcUiLight39.NodeName = "A37封装站2_空料检测感应";
  1776. this.plcUiLight39.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1777. this.plcUiLight39.OffText = null;
  1778. this.plcUiLight39.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1779. this.plcUiLight39.OnText = null;
  1780. this.plcUiLight39.Radius = 40;
  1781. this.plcUiLight39.ReadNode = new Node("Application.InPut.A37封装站2_空料检测感应", NodeType.BOOL, null);
  1782. this.plcUiLight39.ShowText = true;
  1783. this.plcUiLight39.Size = new System.Drawing.Size(270, 40);
  1784. this.plcUiLight39.State = Sunny.UI.UILightState.Off;
  1785. this.plcUiLight39.TabIndex = 339;
  1786. this.plcUiLight39.Text = "A37封装站2_空料检测感应";
  1787. this.plcUiLight39.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1788. this.plcUiLight39.WriteNode = null;
  1789. //
  1790. // plcUiLight40
  1791. //
  1792. this.plcUiLight40.DisabilityTriggerNode = null;
  1793. this.plcUiLight40.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1794. this.plcUiLight40.InvisibilityTriggerNode = null;
  1795. this.plcUiLight40.Location = new System.Drawing.Point(1172, 202);
  1796. this.plcUiLight40.MinimumSize = new System.Drawing.Size(1, 1);
  1797. this.plcUiLight40.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1798. this.plcUiLight40.Name = "plcUiLight40";
  1799. this.plcUiLight40.NodeName = "A37封装站2_盖膜缺料感应";
  1800. this.plcUiLight40.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1801. this.plcUiLight40.OffText = null;
  1802. this.plcUiLight40.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1803. this.plcUiLight40.OnText = null;
  1804. this.plcUiLight40.Radius = 40;
  1805. this.plcUiLight40.ReadNode = new Node("Application.InPut.A37封装站2_盖膜缺料感应", NodeType.BOOL, null);
  1806. this.plcUiLight40.ShowText = true;
  1807. this.plcUiLight40.Size = new System.Drawing.Size(270, 40);
  1808. this.plcUiLight40.State = Sunny.UI.UILightState.Off;
  1809. this.plcUiLight40.TabIndex = 338;
  1810. this.plcUiLight40.Text = "A37封装站2_盖膜缺料感应";
  1811. this.plcUiLight40.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1812. this.plcUiLight40.WriteNode = null;
  1813. //
  1814. // plcUiLight41
  1815. //
  1816. this.plcUiLight41.DisabilityTriggerNode = null;
  1817. this.plcUiLight41.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1818. this.plcUiLight41.InvisibilityTriggerNode = null;
  1819. this.plcUiLight41.Location = new System.Drawing.Point(1172, 152);
  1820. this.plcUiLight41.MinimumSize = new System.Drawing.Size(1, 1);
  1821. this.plcUiLight41.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1822. this.plcUiLight41.Name = "plcUiLight41";
  1823. this.plcUiLight41.NodeName = "A37封装站2_盖膜摆轮感应";
  1824. this.plcUiLight41.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1825. this.plcUiLight41.OffText = null;
  1826. this.plcUiLight41.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1827. this.plcUiLight41.OnText = null;
  1828. this.plcUiLight41.Radius = 40;
  1829. this.plcUiLight41.ReadNode = new Node("Application.InPut.A37封装站2_盖膜摆轮感应", NodeType.BOOL, null);
  1830. this.plcUiLight41.ShowText = true;
  1831. this.plcUiLight41.Size = new System.Drawing.Size(270, 40);
  1832. this.plcUiLight41.State = Sunny.UI.UILightState.Off;
  1833. this.plcUiLight41.TabIndex = 337;
  1834. this.plcUiLight41.Text = "A37封装站2_盖膜摆轮感应";
  1835. this.plcUiLight41.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1836. this.plcUiLight41.WriteNode = null;
  1837. //
  1838. // plcUiLight42
  1839. //
  1840. this.plcUiLight42.DisabilityTriggerNode = null;
  1841. this.plcUiLight42.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1842. this.plcUiLight42.InvisibilityTriggerNode = null;
  1843. this.plcUiLight42.Location = new System.Drawing.Point(1172, 102);
  1844. this.plcUiLight42.MinimumSize = new System.Drawing.Size(1, 1);
  1845. this.plcUiLight42.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1846. this.plcUiLight42.Name = "plcUiLight42";
  1847. this.plcUiLight42.NodeName = "A37封装站2_温控高温报警";
  1848. this.plcUiLight42.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1849. this.plcUiLight42.OffText = null;
  1850. this.plcUiLight42.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1851. this.plcUiLight42.OnText = null;
  1852. this.plcUiLight42.Radius = 40;
  1853. this.plcUiLight42.ReadNode = new Node("Application.InPut.A37封装站2_温控高温报警", NodeType.BOOL, null);
  1854. this.plcUiLight42.ShowText = true;
  1855. this.plcUiLight42.Size = new System.Drawing.Size(270, 40);
  1856. this.plcUiLight42.State = Sunny.UI.UILightState.Off;
  1857. this.plcUiLight42.TabIndex = 336;
  1858. this.plcUiLight42.Text = "A37封装站2_温控高温报警";
  1859. this.plcUiLight42.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1860. this.plcUiLight42.WriteNode = null;
  1861. //
  1862. // plcUiLight43
  1863. //
  1864. this.plcUiLight43.DisabilityTriggerNode = null;
  1865. this.plcUiLight43.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1866. this.plcUiLight43.InvisibilityTriggerNode = null;
  1867. this.plcUiLight43.Location = new System.Drawing.Point(1172, 52);
  1868. this.plcUiLight43.MinimumSize = new System.Drawing.Size(1, 1);
  1869. this.plcUiLight43.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1870. this.plcUiLight43.Name = "plcUiLight43";
  1871. this.plcUiLight43.NodeName = "A37封装站2_温控低温报警";
  1872. this.plcUiLight43.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1873. this.plcUiLight43.OffText = null;
  1874. this.plcUiLight43.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1875. this.plcUiLight43.OnText = null;
  1876. this.plcUiLight43.Radius = 40;
  1877. this.plcUiLight43.ReadNode = new Node("Application.InPut.A37封装站2_温控低温报警", NodeType.BOOL, null);
  1878. this.plcUiLight43.ShowText = true;
  1879. this.plcUiLight43.Size = new System.Drawing.Size(270, 40);
  1880. this.plcUiLight43.State = Sunny.UI.UILightState.Off;
  1881. this.plcUiLight43.TabIndex = 335;
  1882. this.plcUiLight43.Text = "A37封装站2_温控低温报警";
  1883. this.plcUiLight43.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1884. this.plcUiLight43.WriteNode = null;
  1885. //
  1886. // plcUiLight44
  1887. //
  1888. this.plcUiLight44.DisabilityTriggerNode = null;
  1889. this.plcUiLight44.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1890. this.plcUiLight44.InvisibilityTriggerNode = null;
  1891. this.plcUiLight44.Location = new System.Drawing.Point(1172, 2);
  1892. this.plcUiLight44.MinimumSize = new System.Drawing.Size(1, 1);
  1893. this.plcUiLight44.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1894. this.plcUiLight44.Name = "plcUiLight44";
  1895. this.plcUiLight44.NodeName = "A37封装站2_材料检测_高位";
  1896. this.plcUiLight44.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1897. this.plcUiLight44.OffText = null;
  1898. this.plcUiLight44.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1899. this.plcUiLight44.OnText = null;
  1900. this.plcUiLight44.Radius = 40;
  1901. this.plcUiLight44.ReadNode = new Node("Application.InPut.A37封装站2_材料检测_高位", NodeType.BOOL, null);
  1902. this.plcUiLight44.ShowText = true;
  1903. this.plcUiLight44.Size = new System.Drawing.Size(270, 40);
  1904. this.plcUiLight44.State = Sunny.UI.UILightState.Off;
  1905. this.plcUiLight44.TabIndex = 334;
  1906. this.plcUiLight44.Text = "A37封装站2_材料检测_高位";
  1907. this.plcUiLight44.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1908. this.plcUiLight44.WriteNode = null;
  1909. //
  1910. // plcUiLight45
  1911. //
  1912. this.plcUiLight45.DisabilityTriggerNode = null;
  1913. this.plcUiLight45.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1914. this.plcUiLight45.InvisibilityTriggerNode = null;
  1915. this.plcUiLight45.Location = new System.Drawing.Point(887, 602);
  1916. this.plcUiLight45.MinimumSize = new System.Drawing.Size(1, 1);
  1917. this.plcUiLight45.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1918. this.plcUiLight45.Name = "plcUiLight45";
  1919. this.plcUiLight45.NodeName = "A37封装站2_手动运行按钮";
  1920. this.plcUiLight45.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1921. this.plcUiLight45.OffText = null;
  1922. this.plcUiLight45.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1923. this.plcUiLight45.OnText = null;
  1924. this.plcUiLight45.Radius = 40;
  1925. this.plcUiLight45.ReadNode = new Node("Application.InPut.A37封装站2_手动运行按钮", NodeType.BOOL, null);
  1926. this.plcUiLight45.ShowText = true;
  1927. this.plcUiLight45.Size = new System.Drawing.Size(270, 40);
  1928. this.plcUiLight45.State = Sunny.UI.UILightState.Off;
  1929. this.plcUiLight45.TabIndex = 333;
  1930. this.plcUiLight45.Text = "A37封装站2_手动运行按钮";
  1931. this.plcUiLight45.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1932. this.plcUiLight45.WriteNode = null;
  1933. //
  1934. // plcUiLight46
  1935. //
  1936. this.plcUiLight46.DisabilityTriggerNode = null;
  1937. this.plcUiLight46.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1938. this.plcUiLight46.InvisibilityTriggerNode = null;
  1939. this.plcUiLight46.Location = new System.Drawing.Point(887, 552);
  1940. this.plcUiLight46.MinimumSize = new System.Drawing.Size(1, 1);
  1941. this.plcUiLight46.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1942. this.plcUiLight46.Name = "plcUiLight46";
  1943. this.plcUiLight46.NodeName = "A37封装站2_手动穿带按钮";
  1944. this.plcUiLight46.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1945. this.plcUiLight46.OffText = null;
  1946. this.plcUiLight46.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1947. this.plcUiLight46.OnText = null;
  1948. this.plcUiLight46.Radius = 40;
  1949. this.plcUiLight46.ReadNode = new Node("Application.InPut.A37封装站2_手动穿带按钮", NodeType.BOOL, null);
  1950. this.plcUiLight46.ShowText = true;
  1951. this.plcUiLight46.Size = new System.Drawing.Size(270, 40);
  1952. this.plcUiLight46.State = Sunny.UI.UILightState.Off;
  1953. this.plcUiLight46.TabIndex = 332;
  1954. this.plcUiLight46.Text = "A37封装站2_手动穿带按钮";
  1955. this.plcUiLight46.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1956. this.plcUiLight46.WriteNode = null;
  1957. //
  1958. // plcUiLight48
  1959. //
  1960. this.plcUiLight48.DisabilityTriggerNode = null;
  1961. this.plcUiLight48.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1962. this.plcUiLight48.InvisibilityTriggerNode = null;
  1963. this.plcUiLight48.Location = new System.Drawing.Point(887, 502);
  1964. this.plcUiLight48.MinimumSize = new System.Drawing.Size(1, 1);
  1965. this.plcUiLight48.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1966. this.plcUiLight48.Name = "plcUiLight48";
  1967. this.plcUiLight48.NodeName = "A37封装站2_手动打带按钮";
  1968. this.plcUiLight48.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1969. this.plcUiLight48.OffText = null;
  1970. this.plcUiLight48.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1971. this.plcUiLight48.OnText = null;
  1972. this.plcUiLight48.Radius = 40;
  1973. this.plcUiLight48.ReadNode = new Node("Application.InPut.A37封装站2_手动打带按钮", NodeType.BOOL, null);
  1974. this.plcUiLight48.ShowText = true;
  1975. this.plcUiLight48.Size = new System.Drawing.Size(270, 40);
  1976. this.plcUiLight48.State = Sunny.UI.UILightState.Off;
  1977. this.plcUiLight48.TabIndex = 331;
  1978. this.plcUiLight48.Text = "A37封装站2_手动打带按钮";
  1979. this.plcUiLight48.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1980. this.plcUiLight48.WriteNode = null;
  1981. //
  1982. // plcUiLight49
  1983. //
  1984. this.plcUiLight49.DisabilityTriggerNode = null;
  1985. this.plcUiLight49.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1986. this.plcUiLight49.InvisibilityTriggerNode = null;
  1987. this.plcUiLight49.Location = new System.Drawing.Point(887, 452);
  1988. this.plcUiLight49.MinimumSize = new System.Drawing.Size(1, 1);
  1989. this.plcUiLight49.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1990. this.plcUiLight49.Name = "plcUiLight49";
  1991. this.plcUiLight49.NodeName = "A37封装站2_手动切带按钮";
  1992. this.plcUiLight49.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1993. this.plcUiLight49.OffText = null;
  1994. this.plcUiLight49.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1995. this.plcUiLight49.OnText = null;
  1996. this.plcUiLight49.Radius = 40;
  1997. this.plcUiLight49.ReadNode = new Node("Application.InPut.A37封装站2_手动切带按钮", NodeType.BOOL, null);
  1998. this.plcUiLight49.ShowText = true;
  1999. this.plcUiLight49.Size = new System.Drawing.Size(270, 40);
  2000. this.plcUiLight49.State = Sunny.UI.UILightState.Off;
  2001. this.plcUiLight49.TabIndex = 330;
  2002. this.plcUiLight49.Text = "A37封装站2_手动切带按钮";
  2003. this.plcUiLight49.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2004. this.plcUiLight49.WriteNode = null;
  2005. //
  2006. // plcUiLight50
  2007. //
  2008. this.plcUiLight50.DisabilityTriggerNode = null;
  2009. this.plcUiLight50.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2010. this.plcUiLight50.InvisibilityTriggerNode = null;
  2011. this.plcUiLight50.Location = new System.Drawing.Point(887, 402);
  2012. this.plcUiLight50.MinimumSize = new System.Drawing.Size(1, 1);
  2013. this.plcUiLight50.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2014. this.plcUiLight50.Name = "plcUiLight50";
  2015. this.plcUiLight50.NodeName = "A37封装站2_封装整组到位检测";
  2016. this.plcUiLight50.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2017. this.plcUiLight50.OffText = null;
  2018. this.plcUiLight50.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  2019. this.plcUiLight50.OnText = null;
  2020. this.plcUiLight50.Radius = 40;
  2021. this.plcUiLight50.ReadNode = new Node("Application.InPut.A37封装站2_封装整组到位检测", NodeType.BOOL, null);
  2022. this.plcUiLight50.ShowText = true;
  2023. this.plcUiLight50.Size = new System.Drawing.Size(270, 40);
  2024. this.plcUiLight50.State = Sunny.UI.UILightState.Off;
  2025. this.plcUiLight50.TabIndex = 329;
  2026. this.plcUiLight50.Text = "A37封装站2_封装整组到位检测";
  2027. this.plcUiLight50.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2028. this.plcUiLight50.WriteNode = null;
  2029. //
  2030. // plcUiLight51
  2031. //
  2032. this.plcUiLight51.DisabilityTriggerNode = null;
  2033. this.plcUiLight51.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2034. this.plcUiLight51.InvisibilityTriggerNode = null;
  2035. this.plcUiLight51.Location = new System.Drawing.Point(887, 352);
  2036. this.plcUiLight51.MinimumSize = new System.Drawing.Size(1, 1);
  2037. this.plcUiLight51.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2038. this.plcUiLight51.Name = "plcUiLight51";
  2039. this.plcUiLight51.NodeName = "A37封装站2_封合罩报警";
  2040. this.plcUiLight51.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2041. this.plcUiLight51.OffText = null;
  2042. this.plcUiLight51.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  2043. this.plcUiLight51.OnText = null;
  2044. this.plcUiLight51.Radius = 40;
  2045. this.plcUiLight51.ReadNode = new Node("Application.InPut.A37封装站2_封合罩报警", NodeType.BOOL, null);
  2046. this.plcUiLight51.ShowText = true;
  2047. this.plcUiLight51.Size = new System.Drawing.Size(270, 40);
  2048. this.plcUiLight51.State = Sunny.UI.UILightState.Off;
  2049. this.plcUiLight51.TabIndex = 328;
  2050. this.plcUiLight51.Text = "A37封装站2_封合罩报警";
  2051. this.plcUiLight51.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2052. this.plcUiLight51.WriteNode = null;
  2053. //
  2054. // plcUiLight52
  2055. //
  2056. this.plcUiLight52.DisabilityTriggerNode = null;
  2057. this.plcUiLight52.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2058. this.plcUiLight52.InvisibilityTriggerNode = null;
  2059. this.plcUiLight52.Location = new System.Drawing.Point(887, 302);
  2060. this.plcUiLight52.MinimumSize = new System.Drawing.Size(1, 1);
  2061. this.plcUiLight52.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2062. this.plcUiLight52.Name = "plcUiLight52";
  2063. this.plcUiLight52.NodeName = "A37封装站2_封合下压气缸工位";
  2064. this.plcUiLight52.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2065. this.plcUiLight52.OffText = null;
  2066. this.plcUiLight52.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  2067. this.plcUiLight52.OnText = null;
  2068. this.plcUiLight52.Radius = 40;
  2069. this.plcUiLight52.ReadNode = new Node("Application.InPut.A37封装站2_封合下压气缸工位", NodeType.BOOL, null);
  2070. this.plcUiLight52.ShowText = true;
  2071. this.plcUiLight52.Size = new System.Drawing.Size(270, 40);
  2072. this.plcUiLight52.State = Sunny.UI.UILightState.Off;
  2073. this.plcUiLight52.TabIndex = 327;
  2074. this.plcUiLight52.Text = "A37封装站2_封合下压气缸工位";
  2075. this.plcUiLight52.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2076. this.plcUiLight52.WriteNode = null;
  2077. //
  2078. // plcUiLight53
  2079. //
  2080. this.plcUiLight53.DisabilityTriggerNode = null;
  2081. this.plcUiLight53.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2082. this.plcUiLight53.InvisibilityTriggerNode = null;
  2083. this.plcUiLight53.Location = new System.Drawing.Point(887, 252);
  2084. this.plcUiLight53.MinimumSize = new System.Drawing.Size(1, 1);
  2085. this.plcUiLight53.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2086. this.plcUiLight53.Name = "plcUiLight53";
  2087. this.plcUiLight53.NodeName = "A37封装站2_压痕画像OKorNG";
  2088. this.plcUiLight53.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2089. this.plcUiLight53.OffText = null;
  2090. this.plcUiLight53.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  2091. this.plcUiLight53.OnText = null;
  2092. this.plcUiLight53.Radius = 40;
  2093. this.plcUiLight53.ReadNode = new Node("Application.InPut.A37封装站2_压痕画像OKorNG", NodeType.BOOL, null);
  2094. this.plcUiLight53.ShowText = true;
  2095. this.plcUiLight53.Size = new System.Drawing.Size(270, 40);
  2096. this.plcUiLight53.State = Sunny.UI.UILightState.Off;
  2097. this.plcUiLight53.TabIndex = 326;
  2098. this.plcUiLight53.Text = "A37封装站2_压痕画像OKorNG";
  2099. this.plcUiLight53.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2100. this.plcUiLight53.WriteNode = null;
  2101. //
  2102. // plcUiButton24
  2103. //
  2104. this.plcUiButton24.ButtonType = PlcUiControl.ButtonType.交替型;
  2105. this.plcUiButton24.Cursor = System.Windows.Forms.Cursors.Hand;
  2106. this.plcUiButton24.DisabilityTriggerNode = null;
  2107. this.plcUiButton24.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2108. this.plcUiButton24.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2109. this.plcUiButton24.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2110. this.plcUiButton24.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2111. this.plcUiButton24.InvisibilityTriggerNode = null;
  2112. this.plcUiButton24.IsReadWriteNodeSame = false;
  2113. this.plcUiButton24.Location = new System.Drawing.Point(1683, 202);
  2114. this.plcUiButton24.Maximum = 0D;
  2115. this.plcUiButton24.Minimum = 0D;
  2116. this.plcUiButton24.MinimumSize = new System.Drawing.Size(1, 1);
  2117. this.plcUiButton24.Name = "plcUiButton24";
  2118. this.plcUiButton24.NeedUserEnsure = false;
  2119. this.plcUiButton24.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2120. this.plcUiButton24.OffSymbol = 0;
  2121. this.plcUiButton24.OffText = "A37_压痕画像SOT";
  2122. this.plcUiButton24.OnColor = System.Drawing.Color.Green;
  2123. this.plcUiButton24.OnSymbol = 0;
  2124. this.plcUiButton24.OnText = "A37_压痕画像SOT";
  2125. this.plcUiButton24.ReadNode = new Node("Application.OutPut.A37_压痕画像SOT", NodeType.BOOL, null);
  2126. this.plcUiButton24.Size = new System.Drawing.Size(200, 40);
  2127. this.plcUiButton24.Symbol = 0;
  2128. this.plcUiButton24.TabIndex = 325;
  2129. this.plcUiButton24.Text = "A37_压痕画像SOT";
  2130. this.plcUiButton24.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2131. this.plcUiButton24.WriteNode = null;
  2132. //
  2133. // plcUiButton25
  2134. //
  2135. this.plcUiButton25.ButtonType = PlcUiControl.ButtonType.交替型;
  2136. this.plcUiButton25.Cursor = System.Windows.Forms.Cursors.Hand;
  2137. this.plcUiButton25.DisabilityTriggerNode = null;
  2138. this.plcUiButton25.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2139. this.plcUiButton25.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2140. this.plcUiButton25.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2141. this.plcUiButton25.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2142. this.plcUiButton25.InvisibilityTriggerNode = null;
  2143. this.plcUiButton25.IsReadWriteNodeSame = false;
  2144. this.plcUiButton25.Location = new System.Drawing.Point(1683, 152);
  2145. this.plcUiButton25.Maximum = 0D;
  2146. this.plcUiButton25.Minimum = 0D;
  2147. this.plcUiButton25.MinimumSize = new System.Drawing.Size(1, 1);
  2148. this.plcUiButton25.Name = "plcUiButton25";
  2149. this.plcUiButton25.NeedUserEnsure = false;
  2150. this.plcUiButton25.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2151. this.plcUiButton25.OffSymbol = 0;
  2152. this.plcUiButton25.OffText = "A37_印字复检画像SOT";
  2153. this.plcUiButton25.OnColor = System.Drawing.Color.Green;
  2154. this.plcUiButton25.OnSymbol = 0;
  2155. this.plcUiButton25.OnText = "A37_印字复检画像SOT";
  2156. this.plcUiButton25.ReadNode = new Node("Application.OutPut.A37_印字复检画像SOT", NodeType.BOOL, null);
  2157. this.plcUiButton25.Size = new System.Drawing.Size(200, 40);
  2158. this.plcUiButton25.Symbol = 0;
  2159. this.plcUiButton25.TabIndex = 324;
  2160. this.plcUiButton25.Text = "A37_印字复检画像SOT";
  2161. this.plcUiButton25.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2162. this.plcUiButton25.WriteNode = null;
  2163. //
  2164. // plcUiButton26
  2165. //
  2166. this.plcUiButton26.ButtonType = PlcUiControl.ButtonType.交替型;
  2167. this.plcUiButton26.Cursor = System.Windows.Forms.Cursors.Hand;
  2168. this.plcUiButton26.DisabilityTriggerNode = null;
  2169. this.plcUiButton26.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2170. this.plcUiButton26.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2171. this.plcUiButton26.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2172. this.plcUiButton26.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2173. this.plcUiButton26.InvisibilityTriggerNode = null;
  2174. this.plcUiButton26.IsReadWriteNodeSame = false;
  2175. this.plcUiButton26.Location = new System.Drawing.Point(1683, 102);
  2176. this.plcUiButton26.Maximum = 0D;
  2177. this.plcUiButton26.Minimum = 0D;
  2178. this.plcUiButton26.MinimumSize = new System.Drawing.Size(1, 1);
  2179. this.plcUiButton26.Name = "plcUiButton26";
  2180. this.plcUiButton26.NeedUserEnsure = false;
  2181. this.plcUiButton26.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2182. this.plcUiButton26.OffSymbol = 0;
  2183. this.plcUiButton26.OffText = "A37_切带气缸电磁阀";
  2184. this.plcUiButton26.OnColor = System.Drawing.Color.Green;
  2185. this.plcUiButton26.OnSymbol = 0;
  2186. this.plcUiButton26.OnText = "A37_切带气缸电磁阀";
  2187. this.plcUiButton26.ReadNode = new Node("Application.OutPut.A37_切带气缸电磁阀", NodeType.BOOL, null);
  2188. this.plcUiButton26.Size = new System.Drawing.Size(200, 40);
  2189. this.plcUiButton26.Symbol = 0;
  2190. this.plcUiButton26.TabIndex = 323;
  2191. this.plcUiButton26.Text = "A37_切带气缸电磁阀";
  2192. this.plcUiButton26.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2193. this.plcUiButton26.WriteNode = null;
  2194. //
  2195. // plcUiLight54
  2196. //
  2197. this.plcUiLight54.DisabilityTriggerNode = null;
  2198. this.plcUiLight54.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2199. this.plcUiLight54.InvisibilityTriggerNode = null;
  2200. this.plcUiLight54.Location = new System.Drawing.Point(887, 202);
  2201. this.plcUiLight54.MinimumSize = new System.Drawing.Size(1, 1);
  2202. this.plcUiLight54.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2203. this.plcUiLight54.Name = "plcUiLight54";
  2204. this.plcUiLight54.NodeName = "A37封装站2_压痕画像EOT";
  2205. this.plcUiLight54.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2206. this.plcUiLight54.OffText = null;
  2207. this.plcUiLight54.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  2208. this.plcUiLight54.OnText = null;
  2209. this.plcUiLight54.Radius = 40;
  2210. this.plcUiLight54.ReadNode = new Node("Application.InPut.A37封装站2_压痕画像EOT", NodeType.BOOL, null);
  2211. this.plcUiLight54.ShowText = true;
  2212. this.plcUiLight54.Size = new System.Drawing.Size(270, 40);
  2213. this.plcUiLight54.State = Sunny.UI.UILightState.Off;
  2214. this.plcUiLight54.TabIndex = 322;
  2215. this.plcUiLight54.Text = "A37封装站2_压痕画像EOT";
  2216. this.plcUiLight54.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2217. this.plcUiLight54.WriteNode = null;
  2218. //
  2219. // plcUiLight55
  2220. //
  2221. this.plcUiLight55.DisabilityTriggerNode = null;
  2222. this.plcUiLight55.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2223. this.plcUiLight55.InvisibilityTriggerNode = null;
  2224. this.plcUiLight55.Location = new System.Drawing.Point(887, 152);
  2225. this.plcUiLight55.MinimumSize = new System.Drawing.Size(1, 1);
  2226. this.plcUiLight55.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2227. this.plcUiLight55.Name = "plcUiLight55";
  2228. this.plcUiLight55.NodeName = "A37封装站2_印字复检画像OKorNG";
  2229. this.plcUiLight55.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2230. this.plcUiLight55.OffText = null;
  2231. this.plcUiLight55.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  2232. this.plcUiLight55.OnText = null;
  2233. this.plcUiLight55.Radius = 40;
  2234. this.plcUiLight55.ReadNode = new Node("Application.InPut.A37封装站2_印字复检画像OKorNG", NodeType.BOOL, null);
  2235. this.plcUiLight55.ShowText = true;
  2236. this.plcUiLight55.Size = new System.Drawing.Size(270, 40);
  2237. this.plcUiLight55.State = Sunny.UI.UILightState.Off;
  2238. this.plcUiLight55.TabIndex = 321;
  2239. this.plcUiLight55.Text = "A37封装站2_印字复检画像OKorNG";
  2240. this.plcUiLight55.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2241. this.plcUiLight55.WriteNode = null;
  2242. //
  2243. // plcUiLight56
  2244. //
  2245. this.plcUiLight56.DisabilityTriggerNode = null;
  2246. this.plcUiLight56.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2247. this.plcUiLight56.InvisibilityTriggerNode = null;
  2248. this.plcUiLight56.Location = new System.Drawing.Point(887, 102);
  2249. this.plcUiLight56.MinimumSize = new System.Drawing.Size(1, 1);
  2250. this.plcUiLight56.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2251. this.plcUiLight56.Name = "plcUiLight56";
  2252. this.plcUiLight56.NodeName = "A37封装站2_印字复检画像EOT";
  2253. this.plcUiLight56.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2254. this.plcUiLight56.OffText = null;
  2255. this.plcUiLight56.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  2256. this.plcUiLight56.OnText = null;
  2257. this.plcUiLight56.Radius = 40;
  2258. this.plcUiLight56.ReadNode = new Node("Application.InPut.A37封装站2_印字复检画像EOT", NodeType.BOOL, null);
  2259. this.plcUiLight56.ShowText = true;
  2260. this.plcUiLight56.Size = new System.Drawing.Size(270, 40);
  2261. this.plcUiLight56.State = Sunny.UI.UILightState.Off;
  2262. this.plcUiLight56.TabIndex = 320;
  2263. this.plcUiLight56.Text = "A37封装站2_印字复检画像EOT";
  2264. this.plcUiLight56.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2265. this.plcUiLight56.WriteNode = null;
  2266. //
  2267. // plcUiLight57
  2268. //
  2269. this.plcUiLight57.DisabilityTriggerNode = null;
  2270. this.plcUiLight57.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2271. this.plcUiLight57.InvisibilityTriggerNode = null;
  2272. this.plcUiLight57.Location = new System.Drawing.Point(887, 52);
  2273. this.plcUiLight57.MinimumSize = new System.Drawing.Size(1, 1);
  2274. this.plcUiLight57.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2275. this.plcUiLight57.Name = "plcUiLight57";
  2276. this.plcUiLight57.NodeName = "A37封装站2_切刀气缸原位";
  2277. this.plcUiLight57.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2278. this.plcUiLight57.OffText = null;
  2279. this.plcUiLight57.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  2280. this.plcUiLight57.OnText = null;
  2281. this.plcUiLight57.Radius = 40;
  2282. this.plcUiLight57.ReadNode = new Node("Application.InPut.A37封装站2_切刀气缸原位", NodeType.BOOL, null);
  2283. this.plcUiLight57.ShowText = true;
  2284. this.plcUiLight57.Size = new System.Drawing.Size(270, 40);
  2285. this.plcUiLight57.State = Sunny.UI.UILightState.Off;
  2286. this.plcUiLight57.TabIndex = 319;
  2287. this.plcUiLight57.Text = "A37封装站2_切刀气缸原位";
  2288. this.plcUiLight57.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2289. this.plcUiLight57.WriteNode = null;
  2290. //
  2291. // plcUiLight58
  2292. //
  2293. this.plcUiLight58.DisabilityTriggerNode = null;
  2294. this.plcUiLight58.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2295. this.plcUiLight58.InvisibilityTriggerNode = null;
  2296. this.plcUiLight58.Location = new System.Drawing.Point(887, 2);
  2297. this.plcUiLight58.MinimumSize = new System.Drawing.Size(1, 1);
  2298. this.plcUiLight58.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2299. this.plcUiLight58.Name = "plcUiLight58";
  2300. this.plcUiLight58.NodeName = "A37封装站2_切刀气缸伸出位";
  2301. this.plcUiLight58.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2302. this.plcUiLight58.OffText = null;
  2303. this.plcUiLight58.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  2304. this.plcUiLight58.OnText = null;
  2305. this.plcUiLight58.Radius = 40;
  2306. this.plcUiLight58.ReadNode = new Node("Application.InPut.A37封装站2_切刀气缸伸出位", NodeType.BOOL, null);
  2307. this.plcUiLight58.ShowText = true;
  2308. this.plcUiLight58.Size = new System.Drawing.Size(270, 40);
  2309. this.plcUiLight58.State = Sunny.UI.UILightState.Off;
  2310. this.plcUiLight58.TabIndex = 318;
  2311. this.plcUiLight58.Text = "A37封装站2_切刀气缸伸出位";
  2312. this.plcUiLight58.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2313. this.plcUiLight58.WriteNode = null;
  2314. //
  2315. // plcUiLight59
  2316. //
  2317. this.plcUiLight59.DisabilityTriggerNode = null;
  2318. this.plcUiLight59.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2319. this.plcUiLight59.InvisibilityTriggerNode = null;
  2320. this.plcUiLight59.Location = new System.Drawing.Point(1172, 602);
  2321. this.plcUiLight59.MinimumSize = new System.Drawing.Size(1, 1);
  2322. this.plcUiLight59.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2323. this.plcUiLight59.Name = "plcUiLight59";
  2324. this.plcUiLight59.NodeName = "A39溢料盒_材料检测_高位";
  2325. this.plcUiLight59.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2326. this.plcUiLight59.OffText = null;
  2327. this.plcUiLight59.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  2328. this.plcUiLight59.OnText = null;
  2329. this.plcUiLight59.Radius = 40;
  2330. this.plcUiLight59.ReadNode = new Node("Application.InPut.A39溢料盒_材料检测_高位", NodeType.BOOL, null);
  2331. this.plcUiLight59.ShowText = true;
  2332. this.plcUiLight59.Size = new System.Drawing.Size(270, 40);
  2333. this.plcUiLight59.State = Sunny.UI.UILightState.Off;
  2334. this.plcUiLight59.TabIndex = 355;
  2335. this.plcUiLight59.Text = "A39溢料盒_材料检测_高位";
  2336. this.plcUiLight59.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2337. this.plcUiLight59.WriteNode = null;
  2338. //
  2339. // plcUiButton27
  2340. //
  2341. this.plcUiButton27.ButtonType = PlcUiControl.ButtonType.交替型;
  2342. this.plcUiButton27.Cursor = System.Windows.Forms.Cursors.Hand;
  2343. this.plcUiButton27.DisabilityTriggerNode = null;
  2344. this.plcUiButton27.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2345. this.plcUiButton27.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2346. this.plcUiButton27.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2347. this.plcUiButton27.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2348. this.plcUiButton27.InvisibilityTriggerNode = null;
  2349. this.plcUiButton27.IsReadWriteNodeSame = false;
  2350. this.plcUiButton27.Location = new System.Drawing.Point(1683, 752);
  2351. this.plcUiButton27.Maximum = 0D;
  2352. this.plcUiButton27.Minimum = 0D;
  2353. this.plcUiButton27.MinimumSize = new System.Drawing.Size(1, 1);
  2354. this.plcUiButton27.Name = "plcUiButton27";
  2355. this.plcUiButton27.NeedUserEnsure = false;
  2356. this.plcUiButton27.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2357. this.plcUiButton27.OffSymbol = 0;
  2358. this.plcUiButton27.OffText = "A39_溢料盒吸嘴破真空电磁阀";
  2359. this.plcUiButton27.OnColor = System.Drawing.Color.Green;
  2360. this.plcUiButton27.OnSymbol = 0;
  2361. this.plcUiButton27.OnText = "A39_溢料盒吸嘴破真空电磁阀";
  2362. this.plcUiButton27.ReadNode = new Node("Application.OutPut.A39_溢料盒吸嘴破真空电磁阀", NodeType.BOOL, null);
  2363. this.plcUiButton27.Size = new System.Drawing.Size(200, 40);
  2364. this.plcUiButton27.Symbol = 0;
  2365. this.plcUiButton27.TabIndex = 354;
  2366. this.plcUiButton27.Text = "A39_溢料盒吸嘴破真空电磁阀";
  2367. this.plcUiButton27.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2368. this.plcUiButton27.WriteNode = null;
  2369. //
  2370. // plcUiLight60
  2371. //
  2372. this.plcUiLight60.DisabilityTriggerNode = null;
  2373. this.plcUiLight60.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2374. this.plcUiLight60.InvisibilityTriggerNode = null;
  2375. this.plcUiLight60.Location = new System.Drawing.Point(1172, 552);
  2376. this.plcUiLight60.MinimumSize = new System.Drawing.Size(1, 1);
  2377. this.plcUiLight60.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2378. this.plcUiLight60.Name = "plcUiLight60";
  2379. this.plcUiLight60.NodeName = "A39溢料盒_料盒有无";
  2380. this.plcUiLight60.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  2381. this.plcUiLight60.OffText = null;
  2382. this.plcUiLight60.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  2383. this.plcUiLight60.OnText = null;
  2384. this.plcUiLight60.Radius = 40;
  2385. this.plcUiLight60.ReadNode = new Node("Application.InPut.A39溢料盒_料盒有无", NodeType.BOOL, null);
  2386. this.plcUiLight60.ShowText = true;
  2387. this.plcUiLight60.Size = new System.Drawing.Size(270, 40);
  2388. this.plcUiLight60.State = Sunny.UI.UILightState.Off;
  2389. this.plcUiLight60.TabIndex = 353;
  2390. this.plcUiLight60.Text = "A39溢料盒_料盒有无";
  2391. this.plcUiLight60.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2392. this.plcUiLight60.WriteNode = null;
  2393. //
  2394. // IOForm3
  2395. //
  2396. this.AllowShowTitle = false;
  2397. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  2398. this.ClientSize = new System.Drawing.Size(1900, 897);
  2399. this.Controls.Add(this.plcUiLight59);
  2400. this.Controls.Add(this.plcUiButton27);
  2401. this.Controls.Add(this.plcUiLight60);
  2402. this.Controls.Add(this.plcUiButton15);
  2403. this.Controls.Add(this.plcUiButton16);
  2404. this.Controls.Add(this.plcUiButton17);
  2405. this.Controls.Add(this.plcUiButton18);
  2406. this.Controls.Add(this.plcUiButton19);
  2407. this.Controls.Add(this.plcUiButton20);
  2408. this.Controls.Add(this.plcUiButton21);
  2409. this.Controls.Add(this.plcUiButton22);
  2410. this.Controls.Add(this.plcUiButton23);
  2411. this.Controls.Add(this.plcUiLight35);
  2412. this.Controls.Add(this.plcUiLight36);
  2413. this.Controls.Add(this.plcUiLight37);
  2414. this.Controls.Add(this.plcUiLight38);
  2415. this.Controls.Add(this.plcUiLight39);
  2416. this.Controls.Add(this.plcUiLight40);
  2417. this.Controls.Add(this.plcUiLight41);
  2418. this.Controls.Add(this.plcUiLight42);
  2419. this.Controls.Add(this.plcUiLight43);
  2420. this.Controls.Add(this.plcUiLight44);
  2421. this.Controls.Add(this.plcUiLight45);
  2422. this.Controls.Add(this.plcUiLight46);
  2423. this.Controls.Add(this.plcUiLight48);
  2424. this.Controls.Add(this.plcUiLight49);
  2425. this.Controls.Add(this.plcUiLight50);
  2426. this.Controls.Add(this.plcUiLight51);
  2427. this.Controls.Add(this.plcUiLight52);
  2428. this.Controls.Add(this.plcUiLight53);
  2429. this.Controls.Add(this.plcUiButton24);
  2430. this.Controls.Add(this.plcUiButton25);
  2431. this.Controls.Add(this.plcUiButton26);
  2432. this.Controls.Add(this.plcUiLight54);
  2433. this.Controls.Add(this.plcUiLight55);
  2434. this.Controls.Add(this.plcUiLight56);
  2435. this.Controls.Add(this.plcUiLight57);
  2436. this.Controls.Add(this.plcUiLight58);
  2437. this.Controls.Add(this.plcUiLight34);
  2438. this.Controls.Add(this.plcUiButton12);
  2439. this.Controls.Add(this.plcUiButton2);
  2440. this.Controls.Add(this.plcUiButton8);
  2441. this.Controls.Add(this.plcUiButton9);
  2442. this.Controls.Add(this.plcUiButton10);
  2443. this.Controls.Add(this.plcUiButton11);
  2444. this.Controls.Add(this.plcUiButton3);
  2445. this.Controls.Add(this.plcUiButton5);
  2446. this.Controls.Add(this.plcUiButton6);
  2447. this.Controls.Add(this.plcUiLight29);
  2448. this.Controls.Add(this.plcUiLight26);
  2449. this.Controls.Add(this.plcUiLight27);
  2450. this.Controls.Add(this.plcUiLight28);
  2451. this.Controls.Add(this.plcUiLight1);
  2452. this.Controls.Add(this.plcUiLight24);
  2453. this.Controls.Add(this.plcUiLight25);
  2454. this.Controls.Add(this.plcUiLight3);
  2455. this.Controls.Add(this.plcUiLight7);
  2456. this.Controls.Add(this.plcUiLight8);
  2457. this.Controls.Add(this.plcUiLight16);
  2458. this.Controls.Add(this.plcUiLight17);
  2459. this.Controls.Add(this.plcUiLight9);
  2460. this.Controls.Add(this.plcUiLight10);
  2461. this.Controls.Add(this.plcUiLight14);
  2462. this.Controls.Add(this.plcUiLight15);
  2463. this.Controls.Add(this.plcUiLight12);
  2464. this.Controls.Add(this.plcUiLight11);
  2465. this.Controls.Add(this.plcUiButton4);
  2466. this.Controls.Add(this.plcUiButton13);
  2467. this.Controls.Add(this.plcUiButton14);
  2468. this.Controls.Add(this.plcUiLight13);
  2469. this.Controls.Add(this.plcUiLight30);
  2470. this.Controls.Add(this.plcUiLight31);
  2471. this.Controls.Add(this.plcUiLight32);
  2472. this.Controls.Add(this.plcUiLight33);
  2473. this.Controls.Add(this.plcUiLight23);
  2474. this.Controls.Add(this.plcUiButton1);
  2475. this.Controls.Add(this.plcUiLight6);
  2476. this.Controls.Add(this.plcUiLight18);
  2477. this.Controls.Add(this.plcUiLight19);
  2478. this.Controls.Add(this.plcUiLight20);
  2479. this.Controls.Add(this.plcUiLight21);
  2480. this.Controls.Add(this.plcUiLight22);
  2481. this.Controls.Add(this.plcUiButton7);
  2482. this.Controls.Add(this.plcUiLight4);
  2483. this.Controls.Add(this.plcUiLight5);
  2484. this.Controls.Add(this.plcUiLight2);
  2485. this.Controls.Add(this.plcUiLight47);
  2486. this.Name = "IOForm3";
  2487. this.Padding = new System.Windows.Forms.Padding(0);
  2488. this.ShowTitle = false;
  2489. this.Text = "IO监控";
  2490. this.ResumeLayout(false);
  2491. }
  2492. #endregion
  2493. private PlcUiControl.PlcUiLight plcUiLight47;
  2494. private PlcUiControl.PlcUiLight plcUiLight2;
  2495. private PlcUiControl.PlcUiButton plcUiButton7;
  2496. private PlcUiControl.PlcUiLight plcUiLight4;
  2497. private PlcUiControl.PlcUiLight plcUiLight5;
  2498. private PlcUiControl.PlcUiButton plcUiButton1;
  2499. private PlcUiControl.PlcUiLight plcUiLight6;
  2500. private PlcUiControl.PlcUiLight plcUiLight18;
  2501. private PlcUiControl.PlcUiLight plcUiLight19;
  2502. private PlcUiControl.PlcUiLight plcUiLight20;
  2503. private PlcUiControl.PlcUiLight plcUiLight21;
  2504. private PlcUiControl.PlcUiLight plcUiLight22;
  2505. private PlcUiControl.PlcUiLight plcUiLight23;
  2506. private PlcUiControl.PlcUiButton plcUiButton12;
  2507. private PlcUiControl.PlcUiButton plcUiButton2;
  2508. private PlcUiControl.PlcUiButton plcUiButton8;
  2509. private PlcUiControl.PlcUiButton plcUiButton9;
  2510. private PlcUiControl.PlcUiButton plcUiButton10;
  2511. private PlcUiControl.PlcUiButton plcUiButton11;
  2512. private PlcUiControl.PlcUiButton plcUiButton3;
  2513. private PlcUiControl.PlcUiButton plcUiButton5;
  2514. private PlcUiControl.PlcUiButton plcUiButton6;
  2515. private PlcUiControl.PlcUiLight plcUiLight29;
  2516. private PlcUiControl.PlcUiLight plcUiLight26;
  2517. private PlcUiControl.PlcUiLight plcUiLight27;
  2518. private PlcUiControl.PlcUiLight plcUiLight28;
  2519. private PlcUiControl.PlcUiLight plcUiLight1;
  2520. private PlcUiControl.PlcUiLight plcUiLight24;
  2521. private PlcUiControl.PlcUiLight plcUiLight25;
  2522. private PlcUiControl.PlcUiLight plcUiLight3;
  2523. private PlcUiControl.PlcUiLight plcUiLight7;
  2524. private PlcUiControl.PlcUiLight plcUiLight8;
  2525. private PlcUiControl.PlcUiLight plcUiLight16;
  2526. private PlcUiControl.PlcUiLight plcUiLight17;
  2527. private PlcUiControl.PlcUiLight plcUiLight9;
  2528. private PlcUiControl.PlcUiLight plcUiLight10;
  2529. private PlcUiControl.PlcUiLight plcUiLight14;
  2530. private PlcUiControl.PlcUiLight plcUiLight15;
  2531. private PlcUiControl.PlcUiLight plcUiLight12;
  2532. private PlcUiControl.PlcUiLight plcUiLight11;
  2533. private PlcUiControl.PlcUiButton plcUiButton4;
  2534. private PlcUiControl.PlcUiButton plcUiButton13;
  2535. private PlcUiControl.PlcUiButton plcUiButton14;
  2536. private PlcUiControl.PlcUiLight plcUiLight13;
  2537. private PlcUiControl.PlcUiLight plcUiLight30;
  2538. private PlcUiControl.PlcUiLight plcUiLight31;
  2539. private PlcUiControl.PlcUiLight plcUiLight32;
  2540. private PlcUiControl.PlcUiLight plcUiLight33;
  2541. private PlcUiControl.PlcUiLight plcUiLight34;
  2542. private PlcUiControl.PlcUiButton plcUiButton15;
  2543. private PlcUiControl.PlcUiButton plcUiButton16;
  2544. private PlcUiControl.PlcUiButton plcUiButton17;
  2545. private PlcUiControl.PlcUiButton plcUiButton18;
  2546. private PlcUiControl.PlcUiButton plcUiButton19;
  2547. private PlcUiControl.PlcUiButton plcUiButton20;
  2548. private PlcUiControl.PlcUiButton plcUiButton21;
  2549. private PlcUiControl.PlcUiButton plcUiButton22;
  2550. private PlcUiControl.PlcUiButton plcUiButton23;
  2551. private PlcUiControl.PlcUiLight plcUiLight35;
  2552. private PlcUiControl.PlcUiLight plcUiLight36;
  2553. private PlcUiControl.PlcUiLight plcUiLight37;
  2554. private PlcUiControl.PlcUiLight plcUiLight38;
  2555. private PlcUiControl.PlcUiLight plcUiLight39;
  2556. private PlcUiControl.PlcUiLight plcUiLight40;
  2557. private PlcUiControl.PlcUiLight plcUiLight41;
  2558. private PlcUiControl.PlcUiLight plcUiLight42;
  2559. private PlcUiControl.PlcUiLight plcUiLight43;
  2560. private PlcUiControl.PlcUiLight plcUiLight44;
  2561. private PlcUiControl.PlcUiLight plcUiLight45;
  2562. private PlcUiControl.PlcUiLight plcUiLight46;
  2563. private PlcUiControl.PlcUiLight plcUiLight48;
  2564. private PlcUiControl.PlcUiLight plcUiLight49;
  2565. private PlcUiControl.PlcUiLight plcUiLight50;
  2566. private PlcUiControl.PlcUiLight plcUiLight51;
  2567. private PlcUiControl.PlcUiLight plcUiLight52;
  2568. private PlcUiControl.PlcUiLight plcUiLight53;
  2569. private PlcUiControl.PlcUiButton plcUiButton24;
  2570. private PlcUiControl.PlcUiButton plcUiButton25;
  2571. private PlcUiControl.PlcUiButton plcUiButton26;
  2572. private PlcUiControl.PlcUiLight plcUiLight54;
  2573. private PlcUiControl.PlcUiLight plcUiLight55;
  2574. private PlcUiControl.PlcUiLight plcUiLight56;
  2575. private PlcUiControl.PlcUiLight plcUiLight57;
  2576. private PlcUiControl.PlcUiLight plcUiLight58;
  2577. private PlcUiControl.PlcUiLight plcUiLight59;
  2578. private PlcUiControl.PlcUiButton plcUiButton27;
  2579. private PlcUiControl.PlcUiLight plcUiLight60;
  2580. }
  2581. }