syz_qs_back.Designer.cs 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800
  1. namespace IntelligentControlForsx.MyControls.syz
  2. {
  3. partial class syz_qs_back
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(syz_qs));
  29. this.panel2 = new System.Windows.Forms.Panel();
  30. this.handCart_f2 = new IntelligentControlForsx.MyControls.HandCart_f();
  31. this.handCart_f1 = new IntelligentControlForsx.MyControls.HandCart_f();
  32. this.pointLabel72 = new IntelligentControlForsx.MyControls.PointLabel();
  33. this.pointLabel73 = new IntelligentControlForsx.MyControls.PointLabel();
  34. this.pointLabel74 = new IntelligentControlForsx.MyControls.PointLabel();
  35. this.pointLabel69 = new IntelligentControlForsx.MyControls.PointLabel();
  36. this.pointLabel70 = new IntelligentControlForsx.MyControls.PointLabel();
  37. this.pointLabel71 = new IntelligentControlForsx.MyControls.PointLabel();
  38. this.pointLabel66 = new IntelligentControlForsx.MyControls.PointLabel();
  39. this.pointLabel67 = new IntelligentControlForsx.MyControls.PointLabel();
  40. this.pointLabel68 = new IntelligentControlForsx.MyControls.PointLabel();
  41. this.pointLabel63 = new IntelligentControlForsx.MyControls.PointLabel();
  42. this.pointLabel64 = new IntelligentControlForsx.MyControls.PointLabel();
  43. this.pointLabel65 = new IntelligentControlForsx.MyControls.PointLabel();
  44. this.pointLabel60 = new IntelligentControlForsx.MyControls.PointLabel();
  45. this.pointLabel61 = new IntelligentControlForsx.MyControls.PointLabel();
  46. this.pointLabel62 = new IntelligentControlForsx.MyControls.PointLabel();
  47. this.pointLabel57 = new IntelligentControlForsx.MyControls.PointLabel();
  48. this.pointLabel58 = new IntelligentControlForsx.MyControls.PointLabel();
  49. this.pointLabel59 = new IntelligentControlForsx.MyControls.PointLabel();
  50. this.pointLabel54 = new IntelligentControlForsx.MyControls.PointLabel();
  51. this.pointLabel55 = new IntelligentControlForsx.MyControls.PointLabel();
  52. this.pointLabel56 = new IntelligentControlForsx.MyControls.PointLabel();
  53. this.pointLabel51 = new IntelligentControlForsx.MyControls.PointLabel();
  54. this.pointLabel52 = new IntelligentControlForsx.MyControls.PointLabel();
  55. this.pointLabel53 = new IntelligentControlForsx.MyControls.PointLabel();
  56. this.pointLabel48 = new IntelligentControlForsx.MyControls.PointLabel();
  57. this.pointLabel49 = new IntelligentControlForsx.MyControls.PointLabel();
  58. this.pointLabel50 = new IntelligentControlForsx.MyControls.PointLabel();
  59. this.pointLabel45 = new IntelligentControlForsx.MyControls.PointLabel();
  60. this.pointLabel46 = new IntelligentControlForsx.MyControls.PointLabel();
  61. this.pointLabel47 = new IntelligentControlForsx.MyControls.PointLabel();
  62. this.pointLabel42 = new IntelligentControlForsx.MyControls.PointLabel();
  63. this.pointLabel43 = new IntelligentControlForsx.MyControls.PointLabel();
  64. this.pointLabel44 = new IntelligentControlForsx.MyControls.PointLabel();
  65. this.switchUpSmall26 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  66. this.switchUpSmall25 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  67. this.switchUpSmall24 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  68. this.switchUpSmall23 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  69. this.switchUpSmall22 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  70. this.switchUpSmall21 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  71. this.switchUpSmall20 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  72. this.switchUpSmall19 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  73. this.switchUpSmall18 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  74. this.switchUpSmall17 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  75. this.switchUpSmall16 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  76. this.switchUpSmall15 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  77. this.switchUpSmall14 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  78. this.switchUpSmall13 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  79. this.switchUpSmall12 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  80. this.switchRightSmall13 = new IntelligentControlForsx.MyControls.SwitchRightSmall();
  81. this.switchRightSmall12 = new IntelligentControlForsx.MyControls.SwitchRightSmall();
  82. this.switchLeft16 = new IntelligentControlForsx.MyControls.SwitchLeft();
  83. this.switchLeft15 = new IntelligentControlForsx.MyControls.SwitchLeft();
  84. this.switchLeft14 = new IntelligentControlForsx.MyControls.SwitchLeft();
  85. this.pointLabel39 = new IntelligentControlForsx.MyControls.PointLabel();
  86. this.pointLabel40 = new IntelligentControlForsx.MyControls.PointLabel();
  87. this.pointLabel41 = new IntelligentControlForsx.MyControls.PointLabel();
  88. this.pointLabel31 = new IntelligentControlForsx.MyControls.PointLabel();
  89. this.pointLabel32 = new IntelligentControlForsx.MyControls.PointLabel();
  90. this.pointLabel33 = new IntelligentControlForsx.MyControls.PointLabel();
  91. this.pointLabel34 = new IntelligentControlForsx.MyControls.PointLabel();
  92. this.pointLabel35 = new IntelligentControlForsx.MyControls.PointLabel();
  93. this.pointLabel36 = new IntelligentControlForsx.MyControls.PointLabel();
  94. this.pointLabel37 = new IntelligentControlForsx.MyControls.PointLabel();
  95. this.pointLabel38 = new IntelligentControlForsx.MyControls.PointLabel();
  96. this.pointLabel28 = new IntelligentControlForsx.MyControls.PointLabel();
  97. this.pointLabel29 = new IntelligentControlForsx.MyControls.PointLabel();
  98. this.pointLabel30 = new IntelligentControlForsx.MyControls.PointLabel();
  99. this.pointLabel25 = new IntelligentControlForsx.MyControls.PointLabel();
  100. this.pointLabel26 = new IntelligentControlForsx.MyControls.PointLabel();
  101. this.pointLabel27 = new IntelligentControlForsx.MyControls.PointLabel();
  102. this.pointLabel22 = new IntelligentControlForsx.MyControls.PointLabel();
  103. this.pointLabel23 = new IntelligentControlForsx.MyControls.PointLabel();
  104. this.pointLabel24 = new IntelligentControlForsx.MyControls.PointLabel();
  105. this.pointLabel18 = new IntelligentControlForsx.MyControls.PointLabel();
  106. this.pointLabel19 = new IntelligentControlForsx.MyControls.PointLabel();
  107. this.pointLabel20 = new IntelligentControlForsx.MyControls.PointLabel();
  108. this.pointLabel21 = new IntelligentControlForsx.MyControls.PointLabel();
  109. this.pointLabel14 = new IntelligentControlForsx.MyControls.PointLabel();
  110. this.pointLabel15 = new IntelligentControlForsx.MyControls.PointLabel();
  111. this.pointLabel16 = new IntelligentControlForsx.MyControls.PointLabel();
  112. this.pointLabel17 = new IntelligentControlForsx.MyControls.PointLabel();
  113. this.pointLabel11 = new IntelligentControlForsx.MyControls.PointLabel();
  114. this.pointLabel12 = new IntelligentControlForsx.MyControls.PointLabel();
  115. this.pointLabel13 = new IntelligentControlForsx.MyControls.PointLabel();
  116. this.pointLabel1 = new IntelligentControlForsx.MyControls.PointLabel();
  117. this.pointLabel2 = new IntelligentControlForsx.MyControls.PointLabel();
  118. this.pointLabel9 = new IntelligentControlForsx.MyControls.PointLabel();
  119. this.pointLabel10 = new IntelligentControlForsx.MyControls.PointLabel();
  120. this.pointLabel8 = new IntelligentControlForsx.MyControls.PointLabel();
  121. this.pointLabel7 = new IntelligentControlForsx.MyControls.PointLabel();
  122. this.pointLabel6 = new IntelligentControlForsx.MyControls.PointLabel();
  123. this.pointLabel5 = new IntelligentControlForsx.MyControls.PointLabel();
  124. this.pointLabel4 = new IntelligentControlForsx.MyControls.PointLabel();
  125. this.pointLabel3 = new IntelligentControlForsx.MyControls.PointLabel();
  126. this.handCartSmall2 = new IntelligentControlForsx.MyControls.HandCartSmall();
  127. this.handCartSmall1 = new IntelligentControlForsx.MyControls.HandCartSmall();
  128. this.breaker21 = new IntelligentControlForsx.MyControls.Breaker();
  129. this.breaker17 = new IntelligentControlForsx.MyControls.Breaker();
  130. this.breaker16 = new IntelligentControlForsx.MyControls.Breaker();
  131. this.breaker15 = new IntelligentControlForsx.MyControls.Breaker();
  132. this.breaker14 = new IntelligentControlForsx.MyControls.Breaker();
  133. this.breaker13 = new IntelligentControlForsx.MyControls.Breaker();
  134. this.breaker12 = new IntelligentControlForsx.MyControls.Breaker();
  135. this.breaker11 = new IntelligentControlForsx.MyControls.Breaker();
  136. this.breaker10 = new IntelligentControlForsx.MyControls.Breaker();
  137. this.breaker9 = new IntelligentControlForsx.MyControls.Breaker();
  138. this.breaker8 = new IntelligentControlForsx.MyControls.Breaker();
  139. this.breaker7 = new IntelligentControlForsx.MyControls.Breaker();
  140. this.breaker6 = new IntelligentControlForsx.MyControls.Breaker();
  141. this.handCart15 = new IntelligentControlForsx.MyControls.HandCart();
  142. this.handCart14 = new IntelligentControlForsx.MyControls.HandCart();
  143. this.handCart13 = new IntelligentControlForsx.MyControls.HandCart();
  144. this.handCart12 = new IntelligentControlForsx.MyControls.HandCart();
  145. this.handCart11 = new IntelligentControlForsx.MyControls.HandCart();
  146. this.handCart10 = new IntelligentControlForsx.MyControls.HandCart();
  147. this.handCart9 = new IntelligentControlForsx.MyControls.HandCart();
  148. this.handCart8 = new IntelligentControlForsx.MyControls.HandCart();
  149. this.handCart7 = new IntelligentControlForsx.MyControls.HandCart();
  150. this.handCart6 = new IntelligentControlForsx.MyControls.HandCart();
  151. this.handCart5 = new IntelligentControlForsx.MyControls.HandCart();
  152. this.handCart4 = new IntelligentControlForsx.MyControls.HandCart();
  153. this.handCart3 = new IntelligentControlForsx.MyControls.HandCart();
  154. this.breaker1 = new IntelligentControlForsx.MyControls.Breaker();
  155. this.switchLeft1 = new IntelligentControlForsx.MyControls.SwitchLeft();
  156. this.switchLeft2 = new IntelligentControlForsx.MyControls.SwitchLeft();
  157. this.switchRightSmall1 = new IntelligentControlForsx.MyControls.SwitchRightSmall();
  158. this.switchUpSmall1 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  159. this.switchUpSmall2 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  160. this.switchUpSmall3 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  161. this.switchUpSmall4 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  162. this.switchRightSmall2 = new IntelligentControlForsx.MyControls.SwitchRightSmall();
  163. this.switchRightSmall3 = new IntelligentControlForsx.MyControls.SwitchRightSmall();
  164. this.switchLeft3 = new IntelligentControlForsx.MyControls.SwitchLeft();
  165. this.switchLeft4 = new IntelligentControlForsx.MyControls.SwitchLeft();
  166. this.breaker2 = new IntelligentControlForsx.MyControls.Breaker();
  167. this.breaker3 = new IntelligentControlForsx.MyControls.Breaker();
  168. this.breaker4 = new IntelligentControlForsx.MyControls.Breaker();
  169. this.switchUpSmall5 = new IntelligentControlForsx.MyControls.SwitchUpSmall();
  170. this.pnlImage.SuspendLayout();
  171. this.SuspendLayout();
  172. //
  173. // pnlImage
  174. //
  175. this.pnlImage.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  176. this.pnlImage.BackgroundImage = global::IntelligentControlForsx.Properties.Resources.青山升压站一次图1;
  177. this.pnlImage.Controls.Add(this.switchUpSmall5);
  178. this.pnlImage.Controls.Add(this.breaker4);
  179. this.pnlImage.Controls.Add(this.breaker3);
  180. this.pnlImage.Controls.Add(this.breaker2);
  181. this.pnlImage.Controls.Add(this.switchLeft4);
  182. this.pnlImage.Controls.Add(this.switchLeft3);
  183. this.pnlImage.Controls.Add(this.switchRightSmall3);
  184. this.pnlImage.Controls.Add(this.switchRightSmall2);
  185. this.pnlImage.Controls.Add(this.switchUpSmall4);
  186. this.pnlImage.Controls.Add(this.switchUpSmall3);
  187. this.pnlImage.Controls.Add(this.switchUpSmall2);
  188. this.pnlImage.Controls.Add(this.switchUpSmall1);
  189. this.pnlImage.Controls.Add(this.switchRightSmall1);
  190. this.pnlImage.Controls.Add(this.switchLeft2);
  191. this.pnlImage.Controls.Add(this.switchLeft1);
  192. this.pnlImage.Controls.Add(this.breaker1);
  193. this.pnlImage.Controls.Add(this.handCart_f2);
  194. this.pnlImage.Controls.Add(this.handCart_f1);
  195. this.pnlImage.Controls.Add(this.pointLabel72);
  196. this.pnlImage.Controls.Add(this.pointLabel73);
  197. this.pnlImage.Controls.Add(this.pointLabel74);
  198. this.pnlImage.Controls.Add(this.pointLabel69);
  199. this.pnlImage.Controls.Add(this.pointLabel70);
  200. this.pnlImage.Controls.Add(this.pointLabel71);
  201. this.pnlImage.Controls.Add(this.pointLabel66);
  202. this.pnlImage.Controls.Add(this.pointLabel67);
  203. this.pnlImage.Controls.Add(this.pointLabel68);
  204. this.pnlImage.Controls.Add(this.pointLabel63);
  205. this.pnlImage.Controls.Add(this.pointLabel64);
  206. this.pnlImage.Controls.Add(this.pointLabel65);
  207. this.pnlImage.Controls.Add(this.pointLabel60);
  208. this.pnlImage.Controls.Add(this.pointLabel61);
  209. this.pnlImage.Controls.Add(this.pointLabel62);
  210. this.pnlImage.Controls.Add(this.pointLabel57);
  211. this.pnlImage.Controls.Add(this.pointLabel58);
  212. this.pnlImage.Controls.Add(this.pointLabel59);
  213. this.pnlImage.Controls.Add(this.pointLabel54);
  214. this.pnlImage.Controls.Add(this.pointLabel55);
  215. this.pnlImage.Controls.Add(this.pointLabel56);
  216. this.pnlImage.Controls.Add(this.pointLabel51);
  217. this.pnlImage.Controls.Add(this.pointLabel52);
  218. this.pnlImage.Controls.Add(this.pointLabel53);
  219. this.pnlImage.Controls.Add(this.pointLabel48);
  220. this.pnlImage.Controls.Add(this.pointLabel49);
  221. this.pnlImage.Controls.Add(this.pointLabel50);
  222. this.pnlImage.Controls.Add(this.pointLabel45);
  223. this.pnlImage.Controls.Add(this.pointLabel46);
  224. this.pnlImage.Controls.Add(this.pointLabel47);
  225. this.pnlImage.Controls.Add(this.pointLabel42);
  226. this.pnlImage.Controls.Add(this.pointLabel43);
  227. this.pnlImage.Controls.Add(this.pointLabel44);
  228. this.pnlImage.Controls.Add(this.switchUpSmall26);
  229. this.pnlImage.Controls.Add(this.switchUpSmall25);
  230. this.pnlImage.Controls.Add(this.switchUpSmall24);
  231. this.pnlImage.Controls.Add(this.switchUpSmall23);
  232. this.pnlImage.Controls.Add(this.switchUpSmall22);
  233. this.pnlImage.Controls.Add(this.switchUpSmall21);
  234. this.pnlImage.Controls.Add(this.switchUpSmall20);
  235. this.pnlImage.Controls.Add(this.switchUpSmall19);
  236. this.pnlImage.Controls.Add(this.switchUpSmall18);
  237. this.pnlImage.Controls.Add(this.switchUpSmall17);
  238. this.pnlImage.Controls.Add(this.switchUpSmall16);
  239. this.pnlImage.Controls.Add(this.switchUpSmall15);
  240. this.pnlImage.Controls.Add(this.switchUpSmall14);
  241. this.pnlImage.Controls.Add(this.switchUpSmall13);
  242. this.pnlImage.Controls.Add(this.switchUpSmall12);
  243. this.pnlImage.Controls.Add(this.switchRightSmall13);
  244. this.pnlImage.Controls.Add(this.switchRightSmall12);
  245. this.pnlImage.Controls.Add(this.switchLeft16);
  246. this.pnlImage.Controls.Add(this.switchLeft15);
  247. this.pnlImage.Controls.Add(this.switchLeft14);
  248. this.pnlImage.Controls.Add(this.pointLabel39);
  249. this.pnlImage.Controls.Add(this.pointLabel40);
  250. this.pnlImage.Controls.Add(this.pointLabel41);
  251. this.pnlImage.Controls.Add(this.pointLabel31);
  252. this.pnlImage.Controls.Add(this.pointLabel32);
  253. this.pnlImage.Controls.Add(this.pointLabel33);
  254. this.pnlImage.Controls.Add(this.pointLabel34);
  255. this.pnlImage.Controls.Add(this.pointLabel35);
  256. this.pnlImage.Controls.Add(this.pointLabel36);
  257. this.pnlImage.Controls.Add(this.pointLabel37);
  258. this.pnlImage.Controls.Add(this.pointLabel38);
  259. this.pnlImage.Controls.Add(this.pointLabel28);
  260. this.pnlImage.Controls.Add(this.pointLabel29);
  261. this.pnlImage.Controls.Add(this.pointLabel30);
  262. this.pnlImage.Controls.Add(this.pointLabel25);
  263. this.pnlImage.Controls.Add(this.pointLabel26);
  264. this.pnlImage.Controls.Add(this.pointLabel27);
  265. this.pnlImage.Controls.Add(this.pointLabel22);
  266. this.pnlImage.Controls.Add(this.pointLabel23);
  267. this.pnlImage.Controls.Add(this.pointLabel24);
  268. this.pnlImage.Controls.Add(this.pointLabel18);
  269. this.pnlImage.Controls.Add(this.pointLabel19);
  270. this.pnlImage.Controls.Add(this.pointLabel20);
  271. this.pnlImage.Controls.Add(this.pointLabel21);
  272. this.pnlImage.Controls.Add(this.pointLabel14);
  273. this.pnlImage.Controls.Add(this.pointLabel15);
  274. this.pnlImage.Controls.Add(this.pointLabel16);
  275. this.pnlImage.Controls.Add(this.pointLabel17);
  276. this.pnlImage.Controls.Add(this.pointLabel11);
  277. this.pnlImage.Controls.Add(this.pointLabel12);
  278. this.pnlImage.Controls.Add(this.pointLabel13);
  279. this.pnlImage.Controls.Add(this.pointLabel1);
  280. this.pnlImage.Controls.Add(this.pointLabel2);
  281. this.pnlImage.Controls.Add(this.pointLabel9);
  282. this.pnlImage.Controls.Add(this.pointLabel10);
  283. this.pnlImage.Controls.Add(this.pointLabel8);
  284. this.pnlImage.Controls.Add(this.pointLabel7);
  285. this.pnlImage.Controls.Add(this.pointLabel6);
  286. this.pnlImage.Controls.Add(this.pointLabel5);
  287. this.pnlImage.Controls.Add(this.pointLabel4);
  288. this.pnlImage.Controls.Add(this.pointLabel3);
  289. this.pnlImage.Controls.Add(this.handCartSmall2);
  290. this.pnlImage.Controls.Add(this.handCartSmall1);
  291. this.pnlImage.Controls.Add(this.breaker21);
  292. this.pnlImage.Controls.Add(this.breaker17);
  293. this.pnlImage.Controls.Add(this.breaker16);
  294. this.pnlImage.Controls.Add(this.breaker15);
  295. this.pnlImage.Controls.Add(this.breaker14);
  296. this.pnlImage.Controls.Add(this.breaker13);
  297. this.pnlImage.Controls.Add(this.breaker12);
  298. this.pnlImage.Controls.Add(this.breaker11);
  299. this.pnlImage.Controls.Add(this.breaker10);
  300. this.pnlImage.Controls.Add(this.breaker9);
  301. this.pnlImage.Controls.Add(this.breaker8);
  302. this.pnlImage.Controls.Add(this.breaker7);
  303. this.pnlImage.Controls.Add(this.breaker6);
  304. this.pnlImage.Controls.Add(this.handCart15);
  305. this.pnlImage.Controls.Add(this.handCart14);
  306. this.pnlImage.Controls.Add(this.handCart13);
  307. this.pnlImage.Controls.Add(this.handCart12);
  308. this.pnlImage.Controls.Add(this.handCart11);
  309. this.pnlImage.Controls.Add(this.handCart10);
  310. this.pnlImage.Controls.Add(this.handCart9);
  311. this.pnlImage.Controls.Add(this.handCart8);
  312. this.pnlImage.Controls.Add(this.handCart7);
  313. this.pnlImage.Controls.Add(this.handCart6);
  314. this.pnlImage.Controls.Add(this.handCart5);
  315. this.pnlImage.Controls.Add(this.handCart4);
  316. this.pnlImage.Controls.Add(this.handCart3);
  317. this.pnlImage.Location = new System.Drawing.Point(85, 100);
  318. this.pnlImage.Size = new System.Drawing.Size(1748, 857);
  319. //
  320. // panel2
  321. //
  322. this.panel2.BackgroundImage = global::IntelligentControlForsx.Properties.Resources.标题;
  323. this.panel2.Location = new System.Drawing.Point(808, 40);
  324. this.panel2.Name = "panel2";
  325. this.panel2.Size = new System.Drawing.Size(294, 51);
  326. this.panel2.TabIndex = 2;
  327. //
  328. // handCart_f2
  329. //
  330. this.handCart_f2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  331. this.handCart_f2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart_f2.BackgroundImage")));
  332. this.handCart_f2.Location = new System.Drawing.Point(1536, 468);
  333. this.handCart_f2.Name = "handCart_f2";
  334. this.handCart_f2.Size = new System.Drawing.Size(18, 58);
  335. this.handCart_f2.TabIndex = 198;
  336. this.handCart_f2.TagData = null;
  337. this.handCart_f2.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0193";
  338. //
  339. // handCart_f1
  340. //
  341. this.handCart_f1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  342. this.handCart_f1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart_f1.BackgroundImage")));
  343. this.handCart_f1.Location = new System.Drawing.Point(471, 468);
  344. this.handCart_f1.Name = "handCart_f1";
  345. this.handCart_f1.Size = new System.Drawing.Size(18, 58);
  346. this.handCart_f1.TabIndex = 197;
  347. this.handCart_f1.TagData = null;
  348. this.handCart_f1.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0195";
  349. //
  350. // pointLabel72
  351. //
  352. this.pointLabel72.Location = new System.Drawing.Point(1465, 786);
  353. this.pointLabel72.Name = "pointLabel72";
  354. this.pointLabel72.Size = new System.Drawing.Size(51, 18);
  355. this.pointLabel72.TabIndex = 196;
  356. this.pointLabel72.TagData = null;
  357. this.pointLabel72.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0929";
  358. //
  359. // pointLabel73
  360. //
  361. this.pointLabel73.Location = new System.Drawing.Point(1465, 812);
  362. this.pointLabel73.Name = "pointLabel73";
  363. this.pointLabel73.Size = new System.Drawing.Size(51, 18);
  364. this.pointLabel73.TabIndex = 195;
  365. this.pointLabel73.TagData = null;
  366. this.pointLabel73.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0939";
  367. //
  368. // pointLabel74
  369. //
  370. this.pointLabel74.Location = new System.Drawing.Point(1465, 837);
  371. this.pointLabel74.Name = "pointLabel74";
  372. this.pointLabel74.Size = new System.Drawing.Size(51, 18);
  373. this.pointLabel74.TabIndex = 194;
  374. this.pointLabel74.TagData = null;
  375. this.pointLabel74.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0940";
  376. //
  377. // pointLabel69
  378. //
  379. this.pointLabel69.Location = new System.Drawing.Point(1381, 786);
  380. this.pointLabel69.Name = "pointLabel69";
  381. this.pointLabel69.Size = new System.Drawing.Size(51, 18);
  382. this.pointLabel69.TabIndex = 193;
  383. this.pointLabel69.TagData = null;
  384. this.pointLabel69.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0945";
  385. //
  386. // pointLabel70
  387. //
  388. this.pointLabel70.Location = new System.Drawing.Point(1381, 812);
  389. this.pointLabel70.Name = "pointLabel70";
  390. this.pointLabel70.Size = new System.Drawing.Size(51, 18);
  391. this.pointLabel70.TabIndex = 192;
  392. this.pointLabel70.TagData = null;
  393. this.pointLabel70.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0955";
  394. //
  395. // pointLabel71
  396. //
  397. this.pointLabel71.Location = new System.Drawing.Point(1381, 837);
  398. this.pointLabel71.Name = "pointLabel71";
  399. this.pointLabel71.Size = new System.Drawing.Size(51, 18);
  400. this.pointLabel71.TabIndex = 191;
  401. this.pointLabel71.TagData = null;
  402. this.pointLabel71.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0956";
  403. //
  404. // pointLabel66
  405. //
  406. this.pointLabel66.Location = new System.Drawing.Point(1298, 789);
  407. this.pointLabel66.Name = "pointLabel66";
  408. this.pointLabel66.Size = new System.Drawing.Size(51, 18);
  409. this.pointLabel66.TabIndex = 190;
  410. this.pointLabel66.TagData = null;
  411. this.pointLabel66.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0961";
  412. //
  413. // pointLabel67
  414. //
  415. this.pointLabel67.Location = new System.Drawing.Point(1298, 815);
  416. this.pointLabel67.Name = "pointLabel67";
  417. this.pointLabel67.Size = new System.Drawing.Size(51, 18);
  418. this.pointLabel67.TabIndex = 189;
  419. this.pointLabel67.TagData = null;
  420. this.pointLabel67.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0971";
  421. //
  422. // pointLabel68
  423. //
  424. this.pointLabel68.Location = new System.Drawing.Point(1298, 840);
  425. this.pointLabel68.Name = "pointLabel68";
  426. this.pointLabel68.Size = new System.Drawing.Size(51, 18);
  427. this.pointLabel68.TabIndex = 188;
  428. this.pointLabel68.TagData = null;
  429. this.pointLabel68.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0972";
  430. //
  431. // pointLabel63
  432. //
  433. this.pointLabel63.Location = new System.Drawing.Point(1206, 786);
  434. this.pointLabel63.Name = "pointLabel63";
  435. this.pointLabel63.Size = new System.Drawing.Size(51, 18);
  436. this.pointLabel63.TabIndex = 187;
  437. this.pointLabel63.TagData = null;
  438. this.pointLabel63.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0196";
  439. //
  440. // pointLabel64
  441. //
  442. this.pointLabel64.Location = new System.Drawing.Point(1206, 812);
  443. this.pointLabel64.Name = "pointLabel64";
  444. this.pointLabel64.Size = new System.Drawing.Size(51, 18);
  445. this.pointLabel64.TabIndex = 186;
  446. this.pointLabel64.TagData = null;
  447. this.pointLabel64.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0202";
  448. //
  449. // pointLabel65
  450. //
  451. this.pointLabel65.Location = new System.Drawing.Point(1206, 837);
  452. this.pointLabel65.Name = "pointLabel65";
  453. this.pointLabel65.Size = new System.Drawing.Size(51, 18);
  454. this.pointLabel65.TabIndex = 185;
  455. this.pointLabel65.TagData = null;
  456. this.pointLabel65.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0203";
  457. //
  458. // pointLabel60
  459. //
  460. this.pointLabel60.Location = new System.Drawing.Point(1112, 789);
  461. this.pointLabel60.Name = "pointLabel60";
  462. this.pointLabel60.Size = new System.Drawing.Size(51, 18);
  463. this.pointLabel60.TabIndex = 184;
  464. this.pointLabel60.TagData = null;
  465. this.pointLabel60.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0977";
  466. //
  467. // pointLabel61
  468. //
  469. this.pointLabel61.Location = new System.Drawing.Point(1112, 815);
  470. this.pointLabel61.Name = "pointLabel61";
  471. this.pointLabel61.Size = new System.Drawing.Size(51, 18);
  472. this.pointLabel61.TabIndex = 183;
  473. this.pointLabel61.TagData = null;
  474. this.pointLabel61.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0987";
  475. //
  476. // pointLabel62
  477. //
  478. this.pointLabel62.Location = new System.Drawing.Point(1112, 840);
  479. this.pointLabel62.Name = "pointLabel62";
  480. this.pointLabel62.Size = new System.Drawing.Size(51, 18);
  481. this.pointLabel62.TabIndex = 182;
  482. this.pointLabel62.TagData = null;
  483. this.pointLabel62.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0988";
  484. //
  485. // pointLabel57
  486. //
  487. this.pointLabel57.Location = new System.Drawing.Point(1029, 787);
  488. this.pointLabel57.Name = "pointLabel57";
  489. this.pointLabel57.Size = new System.Drawing.Size(51, 18);
  490. this.pointLabel57.TabIndex = 181;
  491. this.pointLabel57.TagData = null;
  492. this.pointLabel57.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0993";
  493. //
  494. // pointLabel58
  495. //
  496. this.pointLabel58.Location = new System.Drawing.Point(1029, 813);
  497. this.pointLabel58.Name = "pointLabel58";
  498. this.pointLabel58.Size = new System.Drawing.Size(51, 18);
  499. this.pointLabel58.TabIndex = 180;
  500. this.pointLabel58.TagData = null;
  501. this.pointLabel58.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1003";
  502. //
  503. // pointLabel59
  504. //
  505. this.pointLabel59.Location = new System.Drawing.Point(1029, 838);
  506. this.pointLabel59.Name = "pointLabel59";
  507. this.pointLabel59.Size = new System.Drawing.Size(51, 18);
  508. this.pointLabel59.TabIndex = 179;
  509. this.pointLabel59.TagData = null;
  510. this.pointLabel59.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1004";
  511. //
  512. // pointLabel54
  513. //
  514. this.pointLabel54.Location = new System.Drawing.Point(579, 788);
  515. this.pointLabel54.Name = "pointLabel54";
  516. this.pointLabel54.Size = new System.Drawing.Size(51, 18);
  517. this.pointLabel54.TabIndex = 178;
  518. this.pointLabel54.TagData = null;
  519. this.pointLabel54.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1073";
  520. //
  521. // pointLabel55
  522. //
  523. this.pointLabel55.Location = new System.Drawing.Point(579, 814);
  524. this.pointLabel55.Name = "pointLabel55";
  525. this.pointLabel55.Size = new System.Drawing.Size(51, 18);
  526. this.pointLabel55.TabIndex = 177;
  527. this.pointLabel55.TagData = null;
  528. this.pointLabel55.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1083";
  529. //
  530. // pointLabel56
  531. //
  532. this.pointLabel56.Location = new System.Drawing.Point(579, 839);
  533. this.pointLabel56.Name = "pointLabel56";
  534. this.pointLabel56.Size = new System.Drawing.Size(51, 18);
  535. this.pointLabel56.TabIndex = 176;
  536. this.pointLabel56.TagData = null;
  537. this.pointLabel56.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1084";
  538. //
  539. // pointLabel51
  540. //
  541. this.pointLabel51.Location = new System.Drawing.Point(495, 787);
  542. this.pointLabel51.Name = "pointLabel51";
  543. this.pointLabel51.Size = new System.Drawing.Size(51, 18);
  544. this.pointLabel51.TabIndex = 175;
  545. this.pointLabel51.TagData = null;
  546. this.pointLabel51.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1089";
  547. //
  548. // pointLabel52
  549. //
  550. this.pointLabel52.Location = new System.Drawing.Point(495, 813);
  551. this.pointLabel52.Name = "pointLabel52";
  552. this.pointLabel52.Size = new System.Drawing.Size(51, 18);
  553. this.pointLabel52.TabIndex = 174;
  554. this.pointLabel52.TagData = null;
  555. this.pointLabel52.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1099";
  556. //
  557. // pointLabel53
  558. //
  559. this.pointLabel53.Location = new System.Drawing.Point(495, 838);
  560. this.pointLabel53.Name = "pointLabel53";
  561. this.pointLabel53.Size = new System.Drawing.Size(51, 18);
  562. this.pointLabel53.TabIndex = 173;
  563. this.pointLabel53.TagData = null;
  564. this.pointLabel53.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1100";
  565. //
  566. // pointLabel48
  567. //
  568. this.pointLabel48.Location = new System.Drawing.Point(290, 787);
  569. this.pointLabel48.Name = "pointLabel48";
  570. this.pointLabel48.Size = new System.Drawing.Size(51, 18);
  571. this.pointLabel48.TabIndex = 172;
  572. this.pointLabel48.TagData = null;
  573. this.pointLabel48.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1025";
  574. //
  575. // pointLabel49
  576. //
  577. this.pointLabel49.Location = new System.Drawing.Point(290, 813);
  578. this.pointLabel49.Name = "pointLabel49";
  579. this.pointLabel49.Size = new System.Drawing.Size(51, 18);
  580. this.pointLabel49.TabIndex = 171;
  581. this.pointLabel49.TagData = null;
  582. this.pointLabel49.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1035";
  583. //
  584. // pointLabel50
  585. //
  586. this.pointLabel50.Location = new System.Drawing.Point(290, 838);
  587. this.pointLabel50.Name = "pointLabel50";
  588. this.pointLabel50.Size = new System.Drawing.Size(51, 18);
  589. this.pointLabel50.TabIndex = 170;
  590. this.pointLabel50.TagData = null;
  591. this.pointLabel50.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1036";
  592. //
  593. // pointLabel45
  594. //
  595. this.pointLabel45.Location = new System.Drawing.Point(206, 787);
  596. this.pointLabel45.Name = "pointLabel45";
  597. this.pointLabel45.Size = new System.Drawing.Size(51, 18);
  598. this.pointLabel45.TabIndex = 169;
  599. this.pointLabel45.TagData = null;
  600. this.pointLabel45.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1041";
  601. //
  602. // pointLabel46
  603. //
  604. this.pointLabel46.Location = new System.Drawing.Point(206, 813);
  605. this.pointLabel46.Name = "pointLabel46";
  606. this.pointLabel46.Size = new System.Drawing.Size(51, 18);
  607. this.pointLabel46.TabIndex = 168;
  608. this.pointLabel46.TagData = null;
  609. this.pointLabel46.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1051";
  610. //
  611. // pointLabel47
  612. //
  613. this.pointLabel47.Location = new System.Drawing.Point(206, 838);
  614. this.pointLabel47.Name = "pointLabel47";
  615. this.pointLabel47.Size = new System.Drawing.Size(51, 18);
  616. this.pointLabel47.TabIndex = 167;
  617. this.pointLabel47.TagData = null;
  618. this.pointLabel47.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1052";
  619. //
  620. // pointLabel42
  621. //
  622. this.pointLabel42.Location = new System.Drawing.Point(124, 788);
  623. this.pointLabel42.Name = "pointLabel42";
  624. this.pointLabel42.Size = new System.Drawing.Size(51, 18);
  625. this.pointLabel42.TabIndex = 166;
  626. this.pointLabel42.TagData = null;
  627. this.pointLabel42.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1057";
  628. //
  629. // pointLabel43
  630. //
  631. this.pointLabel43.Location = new System.Drawing.Point(124, 814);
  632. this.pointLabel43.Name = "pointLabel43";
  633. this.pointLabel43.Size = new System.Drawing.Size(51, 18);
  634. this.pointLabel43.TabIndex = 165;
  635. this.pointLabel43.TagData = null;
  636. this.pointLabel43.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1067";
  637. //
  638. // pointLabel44
  639. //
  640. this.pointLabel44.Location = new System.Drawing.Point(124, 839);
  641. this.pointLabel44.Name = "pointLabel44";
  642. this.pointLabel44.Size = new System.Drawing.Size(51, 18);
  643. this.pointLabel44.TabIndex = 164;
  644. this.pointLabel44.TagData = null;
  645. this.pointLabel44.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1068";
  646. //
  647. // switchUpSmall26
  648. //
  649. this.switchUpSmall26.Location = new System.Drawing.Point(471, 259);
  650. this.switchUpSmall26.Name = "switchUpSmall26";
  651. this.switchUpSmall26.Size = new System.Drawing.Size(18, 22);
  652. this.switchUpSmall26.TabIndex = 137;
  653. this.switchUpSmall26.TagData = null;
  654. this.switchUpSmall26.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0859";
  655. //
  656. // switchUpSmall25
  657. //
  658. this.switchUpSmall25.Location = new System.Drawing.Point(471, 349);
  659. this.switchUpSmall25.Name = "switchUpSmall25";
  660. this.switchUpSmall25.Size = new System.Drawing.Size(18, 22);
  661. this.switchUpSmall25.TabIndex = 136;
  662. this.switchUpSmall25.TagData = null;
  663. this.switchUpSmall25.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0860";
  664. //
  665. // switchUpSmall24
  666. //
  667. this.switchUpSmall24.Location = new System.Drawing.Point(394, 435);
  668. this.switchUpSmall24.Name = "switchUpSmall24";
  669. this.switchUpSmall24.Size = new System.Drawing.Size(18, 22);
  670. this.switchUpSmall24.TabIndex = 135;
  671. this.switchUpSmall24.TagData = null;
  672. this.switchUpSmall24.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0865";
  673. //
  674. // switchUpSmall23
  675. //
  676. this.switchUpSmall23.Location = new System.Drawing.Point(1059, 261);
  677. this.switchUpSmall23.Name = "switchUpSmall23";
  678. this.switchUpSmall23.Size = new System.Drawing.Size(18, 22);
  679. this.switchUpSmall23.TabIndex = 134;
  680. this.switchUpSmall23.TagData = null;
  681. this.switchUpSmall23.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0066";
  682. //
  683. // switchUpSmall22
  684. //
  685. this.switchUpSmall22.Location = new System.Drawing.Point(124, 656);
  686. this.switchUpSmall22.Name = "switchUpSmall22";
  687. this.switchUpSmall22.Size = new System.Drawing.Size(18, 22);
  688. this.switchUpSmall22.TabIndex = 133;
  689. this.switchUpSmall22.TagData = null;
  690. this.switchUpSmall22.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1556";
  691. //
  692. // switchUpSmall21
  693. //
  694. this.switchUpSmall21.Location = new System.Drawing.Point(206, 656);
  695. this.switchUpSmall21.Name = "switchUpSmall21";
  696. this.switchUpSmall21.Size = new System.Drawing.Size(18, 22);
  697. this.switchUpSmall21.TabIndex = 132;
  698. this.switchUpSmall21.TagData = null;
  699. this.switchUpSmall21.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1510";
  700. //
  701. // switchUpSmall20
  702. //
  703. this.switchUpSmall20.Location = new System.Drawing.Point(290, 656);
  704. this.switchUpSmall20.Name = "switchUpSmall20";
  705. this.switchUpSmall20.Size = new System.Drawing.Size(18, 22);
  706. this.switchUpSmall20.TabIndex = 131;
  707. this.switchUpSmall20.TagData = null;
  708. this.switchUpSmall20.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1464";
  709. //
  710. // switchUpSmall19
  711. //
  712. this.switchUpSmall19.Location = new System.Drawing.Point(495, 656);
  713. this.switchUpSmall19.Name = "switchUpSmall19";
  714. this.switchUpSmall19.Size = new System.Drawing.Size(18, 22);
  715. this.switchUpSmall19.TabIndex = 130;
  716. this.switchUpSmall19.TagData = null;
  717. this.switchUpSmall19.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1648";
  718. //
  719. // switchUpSmall18
  720. //
  721. this.switchUpSmall18.Location = new System.Drawing.Point(579, 656);
  722. this.switchUpSmall18.Name = "switchUpSmall18";
  723. this.switchUpSmall18.Size = new System.Drawing.Size(18, 22);
  724. this.switchUpSmall18.TabIndex = 129;
  725. this.switchUpSmall18.TagData = null;
  726. this.switchUpSmall18.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1602";
  727. //
  728. // switchUpSmall17
  729. //
  730. this.switchUpSmall17.Location = new System.Drawing.Point(1029, 656);
  731. this.switchUpSmall17.Name = "switchUpSmall17";
  732. this.switchUpSmall17.Size = new System.Drawing.Size(18, 22);
  733. this.switchUpSmall17.TabIndex = 128;
  734. this.switchUpSmall17.TagData = null;
  735. this.switchUpSmall17.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1372";
  736. //
  737. // switchUpSmall16
  738. //
  739. this.switchUpSmall16.Location = new System.Drawing.Point(1112, 656);
  740. this.switchUpSmall16.Name = "switchUpSmall16";
  741. this.switchUpSmall16.Size = new System.Drawing.Size(18, 22);
  742. this.switchUpSmall16.TabIndex = 127;
  743. this.switchUpSmall16.TagData = null;
  744. this.switchUpSmall16.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1326";
  745. //
  746. // switchUpSmall15
  747. //
  748. this.switchUpSmall15.Location = new System.Drawing.Point(1206, 654);
  749. this.switchUpSmall15.Name = "switchUpSmall15";
  750. this.switchUpSmall15.Size = new System.Drawing.Size(18, 22);
  751. this.switchUpSmall15.TabIndex = 126;
  752. this.switchUpSmall15.TagData = null;
  753. this.switchUpSmall15.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1694";
  754. //
  755. // switchUpSmall14
  756. //
  757. this.switchUpSmall14.Location = new System.Drawing.Point(1298, 656);
  758. this.switchUpSmall14.Name = "switchUpSmall14";
  759. this.switchUpSmall14.Size = new System.Drawing.Size(18, 22);
  760. this.switchUpSmall14.TabIndex = 125;
  761. this.switchUpSmall14.TagData = null;
  762. this.switchUpSmall14.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1280";
  763. //
  764. // switchUpSmall13
  765. //
  766. this.switchUpSmall13.Location = new System.Drawing.Point(1381, 656);
  767. this.switchUpSmall13.Name = "switchUpSmall13";
  768. this.switchUpSmall13.Size = new System.Drawing.Size(18, 22);
  769. this.switchUpSmall13.TabIndex = 124;
  770. this.switchUpSmall13.TagData = null;
  771. this.switchUpSmall13.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1234";
  772. //
  773. // switchUpSmall12
  774. //
  775. this.switchUpSmall12.Location = new System.Drawing.Point(1465, 656);
  776. this.switchUpSmall12.Name = "switchUpSmall12";
  777. this.switchUpSmall12.Size = new System.Drawing.Size(18, 22);
  778. this.switchUpSmall12.TabIndex = 123;
  779. this.switchUpSmall12.TagData = null;
  780. this.switchUpSmall12.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1188";
  781. //
  782. // switchRightSmall13
  783. //
  784. this.switchRightSmall13.Location = new System.Drawing.Point(438, 285);
  785. this.switchRightSmall13.Name = "switchRightSmall13";
  786. this.switchRightSmall13.Size = new System.Drawing.Size(25, 17);
  787. this.switchRightSmall13.TabIndex = 112;
  788. this.switchRightSmall13.TagData = null;
  789. this.switchRightSmall13.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0862";
  790. //
  791. // switchRightSmall12
  792. //
  793. this.switchRightSmall12.Location = new System.Drawing.Point(438, 374);
  794. this.switchRightSmall12.Name = "switchRightSmall12";
  795. this.switchRightSmall12.Size = new System.Drawing.Size(25, 17);
  796. this.switchRightSmall12.TabIndex = 111;
  797. this.switchRightSmall12.TagData = null;
  798. this.switchRightSmall12.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0864";
  799. //
  800. // switchLeft16
  801. //
  802. this.switchLeft16.Location = new System.Drawing.Point(501, 239);
  803. this.switchLeft16.Name = "switchLeft16";
  804. this.switchLeft16.Size = new System.Drawing.Size(40, 17);
  805. this.switchLeft16.TabIndex = 100;
  806. this.switchLeft16.TagData = null;
  807. this.switchLeft16.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0861";
  808. //
  809. // switchLeft15
  810. //
  811. this.switchLeft15.Location = new System.Drawing.Point(501, 329);
  812. this.switchLeft15.Name = "switchLeft15";
  813. this.switchLeft15.Size = new System.Drawing.Size(40, 17);
  814. this.switchLeft15.TabIndex = 99;
  815. this.switchLeft15.TagData = null;
  816. this.switchLeft15.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0863";
  817. //
  818. // switchLeft14
  819. //
  820. this.switchLeft14.Location = new System.Drawing.Point(1088, 285);
  821. this.switchLeft14.Name = "switchLeft14";
  822. this.switchLeft14.Size = new System.Drawing.Size(40, 17);
  823. this.switchLeft14.TabIndex = 98;
  824. this.switchLeft14.TagData = null;
  825. this.switchLeft14.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0190";
  826. //
  827. // pointLabel39
  828. //
  829. this.pointLabel39.Location = new System.Drawing.Point(1692, 442);
  830. this.pointLabel39.Name = "pointLabel39";
  831. this.pointLabel39.Size = new System.Drawing.Size(51, 18);
  832. this.pointLabel39.TabIndex = 81;
  833. this.pointLabel39.TagData = null;
  834. this.pointLabel39.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0729";
  835. //
  836. // pointLabel40
  837. //
  838. this.pointLabel40.Location = new System.Drawing.Point(1692, 468);
  839. this.pointLabel40.Name = "pointLabel40";
  840. this.pointLabel40.Size = new System.Drawing.Size(51, 18);
  841. this.pointLabel40.TabIndex = 80;
  842. this.pointLabel40.TagData = null;
  843. this.pointLabel40.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0721";
  844. //
  845. // pointLabel41
  846. //
  847. this.pointLabel41.Location = new System.Drawing.Point(1692, 493);
  848. this.pointLabel41.Name = "pointLabel41";
  849. this.pointLabel41.Size = new System.Drawing.Size(51, 18);
  850. this.pointLabel41.TabIndex = 79;
  851. this.pointLabel41.TagData = null;
  852. this.pointLabel41.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1250";
  853. //
  854. // pointLabel31
  855. //
  856. this.pointLabel31.Location = new System.Drawing.Point(1338, 429);
  857. this.pointLabel31.Name = "pointLabel31";
  858. this.pointLabel31.Size = new System.Drawing.Size(51, 18);
  859. this.pointLabel31.TabIndex = 78;
  860. this.pointLabel31.TagData = null;
  861. this.pointLabel31.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0708";
  862. //
  863. // pointLabel32
  864. //
  865. this.pointLabel32.Location = new System.Drawing.Point(1338, 455);
  866. this.pointLabel32.Name = "pointLabel32";
  867. this.pointLabel32.Size = new System.Drawing.Size(51, 18);
  868. this.pointLabel32.TabIndex = 77;
  869. this.pointLabel32.TagData = null;
  870. this.pointLabel32.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0714";
  871. //
  872. // pointLabel33
  873. //
  874. this.pointLabel33.Location = new System.Drawing.Point(1338, 481);
  875. this.pointLabel33.Name = "pointLabel33";
  876. this.pointLabel33.Size = new System.Drawing.Size(51, 18);
  877. this.pointLabel33.TabIndex = 76;
  878. this.pointLabel33.TagData = null;
  879. this.pointLabel33.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0715";
  880. //
  881. // pointLabel34
  882. //
  883. this.pointLabel34.Location = new System.Drawing.Point(1338, 506);
  884. this.pointLabel34.Name = "pointLabel34";
  885. this.pointLabel34.Size = new System.Drawing.Size(51, 18);
  886. this.pointLabel34.TabIndex = 75;
  887. this.pointLabel34.TagData = null;
  888. this.pointLabel34.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0717";
  889. //
  890. // pointLabel35
  891. //
  892. this.pointLabel35.Location = new System.Drawing.Point(1336, 282);
  893. this.pointLabel35.Name = "pointLabel35";
  894. this.pointLabel35.Size = new System.Drawing.Size(51, 18);
  895. this.pointLabel35.TabIndex = 74;
  896. this.pointLabel35.TagData = null;
  897. this.pointLabel35.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0692";
  898. //
  899. // pointLabel36
  900. //
  901. this.pointLabel36.Location = new System.Drawing.Point(1336, 308);
  902. this.pointLabel36.Name = "pointLabel36";
  903. this.pointLabel36.Size = new System.Drawing.Size(51, 18);
  904. this.pointLabel36.TabIndex = 73;
  905. this.pointLabel36.TagData = null;
  906. this.pointLabel36.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0698";
  907. //
  908. // pointLabel37
  909. //
  910. this.pointLabel37.Location = new System.Drawing.Point(1336, 334);
  911. this.pointLabel37.Name = "pointLabel37";
  912. this.pointLabel37.Size = new System.Drawing.Size(51, 18);
  913. this.pointLabel37.TabIndex = 72;
  914. this.pointLabel37.TagData = null;
  915. this.pointLabel37.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0699";
  916. //
  917. // pointLabel38
  918. //
  919. this.pointLabel38.Location = new System.Drawing.Point(1336, 359);
  920. this.pointLabel38.Name = "pointLabel38";
  921. this.pointLabel38.Size = new System.Drawing.Size(51, 18);
  922. this.pointLabel38.TabIndex = 71;
  923. this.pointLabel38.TagData = null;
  924. this.pointLabel38.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0701";
  925. //
  926. // pointLabel28
  927. //
  928. this.pointLabel28.Location = new System.Drawing.Point(980, 452);
  929. this.pointLabel28.Name = "pointLabel28";
  930. this.pointLabel28.Size = new System.Drawing.Size(51, 18);
  931. this.pointLabel28.TabIndex = 70;
  932. this.pointLabel28.TagData = null;
  933. this.pointLabel28.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0161";
  934. //
  935. // pointLabel29
  936. //
  937. this.pointLabel29.Location = new System.Drawing.Point(980, 478);
  938. this.pointLabel29.Name = "pointLabel29";
  939. this.pointLabel29.Size = new System.Drawing.Size(51, 18);
  940. this.pointLabel29.TabIndex = 69;
  941. this.pointLabel29.TagData = null;
  942. this.pointLabel29.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0178";
  943. //
  944. // pointLabel30
  945. //
  946. this.pointLabel30.Location = new System.Drawing.Point(980, 503);
  947. this.pointLabel30.Name = "pointLabel30";
  948. this.pointLabel30.Size = new System.Drawing.Size(51, 18);
  949. this.pointLabel30.TabIndex = 68;
  950. this.pointLabel30.TagData = null;
  951. this.pointLabel30.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0006";
  952. //
  953. // pointLabel25
  954. //
  955. this.pointLabel25.Location = new System.Drawing.Point(722, 442);
  956. this.pointLabel25.Name = "pointLabel25";
  957. this.pointLabel25.Size = new System.Drawing.Size(51, 18);
  958. this.pointLabel25.TabIndex = 67;
  959. this.pointLabel25.TagData = null;
  960. this.pointLabel25.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0489";
  961. //
  962. // pointLabel26
  963. //
  964. this.pointLabel26.Location = new System.Drawing.Point(722, 468);
  965. this.pointLabel26.Name = "pointLabel26";
  966. this.pointLabel26.Size = new System.Drawing.Size(51, 18);
  967. this.pointLabel26.TabIndex = 66;
  968. this.pointLabel26.TagData = null;
  969. this.pointLabel26.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0481";
  970. //
  971. // pointLabel27
  972. //
  973. this.pointLabel27.Location = new System.Drawing.Point(722, 493);
  974. this.pointLabel27.Name = "pointLabel27";
  975. this.pointLabel27.Size = new System.Drawing.Size(51, 18);
  976. this.pointLabel27.TabIndex = 65;
  977. this.pointLabel27.TagData = null;
  978. this.pointLabel27.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI1249";
  979. //
  980. // pointLabel22
  981. //
  982. this.pointLabel22.Location = new System.Drawing.Point(62, 452);
  983. this.pointLabel22.Name = "pointLabel22";
  984. this.pointLabel22.Size = new System.Drawing.Size(51, 18);
  985. this.pointLabel22.TabIndex = 64;
  986. this.pointLabel22.TagData = null;
  987. this.pointLabel22.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0177";
  988. //
  989. // pointLabel23
  990. //
  991. this.pointLabel23.Location = new System.Drawing.Point(62, 478);
  992. this.pointLabel23.Name = "pointLabel23";
  993. this.pointLabel23.Size = new System.Drawing.Size(51, 18);
  994. this.pointLabel23.TabIndex = 63;
  995. this.pointLabel23.TagData = null;
  996. this.pointLabel23.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0162";
  997. //
  998. // pointLabel24
  999. //
  1000. this.pointLabel24.Location = new System.Drawing.Point(62, 503);
  1001. this.pointLabel24.Name = "pointLabel24";
  1002. this.pointLabel24.Size = new System.Drawing.Size(51, 18);
  1003. this.pointLabel24.TabIndex = 62;
  1004. this.pointLabel24.TagData = null;
  1005. this.pointLabel24.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0005";
  1006. //
  1007. // pointLabel18
  1008. //
  1009. this.pointLabel18.Location = new System.Drawing.Point(279, 429);
  1010. this.pointLabel18.Name = "pointLabel18";
  1011. this.pointLabel18.Size = new System.Drawing.Size(51, 18);
  1012. this.pointLabel18.TabIndex = 61;
  1013. this.pointLabel18.TagData = null;
  1014. this.pointLabel18.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0468";
  1015. //
  1016. // pointLabel19
  1017. //
  1018. this.pointLabel19.Location = new System.Drawing.Point(279, 455);
  1019. this.pointLabel19.Name = "pointLabel19";
  1020. this.pointLabel19.Size = new System.Drawing.Size(51, 18);
  1021. this.pointLabel19.TabIndex = 60;
  1022. this.pointLabel19.TagData = null;
  1023. this.pointLabel19.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0474";
  1024. //
  1025. // pointLabel20
  1026. //
  1027. this.pointLabel20.Location = new System.Drawing.Point(279, 481);
  1028. this.pointLabel20.Name = "pointLabel20";
  1029. this.pointLabel20.Size = new System.Drawing.Size(51, 18);
  1030. this.pointLabel20.TabIndex = 59;
  1031. this.pointLabel20.TagData = null;
  1032. this.pointLabel20.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0475";
  1033. //
  1034. // pointLabel21
  1035. //
  1036. this.pointLabel21.Location = new System.Drawing.Point(279, 506);
  1037. this.pointLabel21.Name = "pointLabel21";
  1038. this.pointLabel21.Size = new System.Drawing.Size(51, 18);
  1039. this.pointLabel21.TabIndex = 58;
  1040. this.pointLabel21.TagData = null;
  1041. this.pointLabel21.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0477";
  1042. //
  1043. // pointLabel14
  1044. //
  1045. this.pointLabel14.Location = new System.Drawing.Point(277, 282);
  1046. this.pointLabel14.Name = "pointLabel14";
  1047. this.pointLabel14.Size = new System.Drawing.Size(51, 18);
  1048. this.pointLabel14.TabIndex = 57;
  1049. this.pointLabel14.TagData = null;
  1050. this.pointLabel14.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0452";
  1051. //
  1052. // pointLabel15
  1053. //
  1054. this.pointLabel15.Location = new System.Drawing.Point(277, 308);
  1055. this.pointLabel15.Name = "pointLabel15";
  1056. this.pointLabel15.Size = new System.Drawing.Size(51, 18);
  1057. this.pointLabel15.TabIndex = 56;
  1058. this.pointLabel15.TagData = null;
  1059. this.pointLabel15.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0458";
  1060. //
  1061. // pointLabel16
  1062. //
  1063. this.pointLabel16.Location = new System.Drawing.Point(277, 334);
  1064. this.pointLabel16.Name = "pointLabel16";
  1065. this.pointLabel16.Size = new System.Drawing.Size(51, 18);
  1066. this.pointLabel16.TabIndex = 55;
  1067. this.pointLabel16.TagData = null;
  1068. this.pointLabel16.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0459";
  1069. //
  1070. // pointLabel17
  1071. //
  1072. this.pointLabel17.Location = new System.Drawing.Point(277, 359);
  1073. this.pointLabel17.Name = "pointLabel17";
  1074. this.pointLabel17.Size = new System.Drawing.Size(51, 18);
  1075. this.pointLabel17.TabIndex = 54;
  1076. this.pointLabel17.TagData = null;
  1077. this.pointLabel17.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0461";
  1078. //
  1079. // pointLabel11
  1080. //
  1081. this.pointLabel11.Location = new System.Drawing.Point(283, 116);
  1082. this.pointLabel11.Name = "pointLabel11";
  1083. this.pointLabel11.Size = new System.Drawing.Size(51, 18);
  1084. this.pointLabel11.TabIndex = 53;
  1085. this.pointLabel11.TagData = null;
  1086. this.pointLabel11.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0007";
  1087. //
  1088. // pointLabel12
  1089. //
  1090. this.pointLabel12.Location = new System.Drawing.Point(283, 142);
  1091. this.pointLabel12.Name = "pointLabel12";
  1092. this.pointLabel12.Size = new System.Drawing.Size(51, 18);
  1093. this.pointLabel12.TabIndex = 52;
  1094. this.pointLabel12.TagData = null;
  1095. this.pointLabel12.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0008";
  1096. //
  1097. // pointLabel13
  1098. //
  1099. this.pointLabel13.Location = new System.Drawing.Point(283, 167);
  1100. this.pointLabel13.Name = "pointLabel13";
  1101. this.pointLabel13.Size = new System.Drawing.Size(51, 18);
  1102. this.pointLabel13.TabIndex = 51;
  1103. this.pointLabel13.TagData = null;
  1104. this.pointLabel13.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0009";
  1105. //
  1106. // pointLabel1
  1107. //
  1108. this.pointLabel1.Location = new System.Drawing.Point(64, 88);
  1109. this.pointLabel1.Name = "pointLabel1";
  1110. this.pointLabel1.Size = new System.Drawing.Size(51, 18);
  1111. this.pointLabel1.TabIndex = 50;
  1112. this.pointLabel1.TagData = null;
  1113. this.pointLabel1.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0001";
  1114. //
  1115. // pointLabel2
  1116. //
  1117. this.pointLabel2.Location = new System.Drawing.Point(64, 114);
  1118. this.pointLabel2.Name = "pointLabel2";
  1119. this.pointLabel2.Size = new System.Drawing.Size(51, 18);
  1120. this.pointLabel2.TabIndex = 49;
  1121. this.pointLabel2.TagData = null;
  1122. this.pointLabel2.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0002";
  1123. //
  1124. // pointLabel9
  1125. //
  1126. this.pointLabel9.Location = new System.Drawing.Point(64, 140);
  1127. this.pointLabel9.Name = "pointLabel9";
  1128. this.pointLabel9.Size = new System.Drawing.Size(51, 18);
  1129. this.pointLabel9.TabIndex = 48;
  1130. this.pointLabel9.TagData = null;
  1131. this.pointLabel9.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0003";
  1132. //
  1133. // pointLabel10
  1134. //
  1135. this.pointLabel10.Location = new System.Drawing.Point(64, 165);
  1136. this.pointLabel10.Name = "pointLabel10";
  1137. this.pointLabel10.Size = new System.Drawing.Size(51, 18);
  1138. this.pointLabel10.TabIndex = 47;
  1139. this.pointLabel10.TagData = null;
  1140. this.pointLabel10.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0004";
  1141. //
  1142. // pointLabel8
  1143. //
  1144. this.pointLabel8.Location = new System.Drawing.Point(1135, 4);
  1145. this.pointLabel8.Name = "pointLabel8";
  1146. this.pointLabel8.Size = new System.Drawing.Size(51, 18);
  1147. this.pointLabel8.TabIndex = 46;
  1148. this.pointLabel8.TagData = null;
  1149. this.pointLabel8.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0324";
  1150. //
  1151. // pointLabel7
  1152. //
  1153. this.pointLabel7.Location = new System.Drawing.Point(1135, 30);
  1154. this.pointLabel7.Name = "pointLabel7";
  1155. this.pointLabel7.Size = new System.Drawing.Size(51, 18);
  1156. this.pointLabel7.TabIndex = 45;
  1157. this.pointLabel7.TagData = null;
  1158. this.pointLabel7.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0330";
  1159. //
  1160. // pointLabel6
  1161. //
  1162. this.pointLabel6.Location = new System.Drawing.Point(1135, 56);
  1163. this.pointLabel6.Name = "pointLabel6";
  1164. this.pointLabel6.Size = new System.Drawing.Size(51, 18);
  1165. this.pointLabel6.TabIndex = 44;
  1166. this.pointLabel6.TagData = null;
  1167. this.pointLabel6.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0331";
  1168. //
  1169. // pointLabel5
  1170. //
  1171. this.pointLabel5.Location = new System.Drawing.Point(1135, 82);
  1172. this.pointLabel5.Name = "pointLabel5";
  1173. this.pointLabel5.Size = new System.Drawing.Size(51, 18);
  1174. this.pointLabel5.TabIndex = 43;
  1175. this.pointLabel5.TagData = null;
  1176. this.pointLabel5.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0321";
  1177. //
  1178. // pointLabel4
  1179. //
  1180. this.pointLabel4.Location = new System.Drawing.Point(1135, 108);
  1181. this.pointLabel4.Name = "pointLabel4";
  1182. this.pointLabel4.Size = new System.Drawing.Size(51, 18);
  1183. this.pointLabel4.TabIndex = 42;
  1184. this.pointLabel4.TagData = null;
  1185. this.pointLabel4.TagId = null;
  1186. //
  1187. // pointLabel3
  1188. //
  1189. this.pointLabel3.Location = new System.Drawing.Point(1135, 132);
  1190. this.pointLabel3.Name = "pointLabel3";
  1191. this.pointLabel3.Size = new System.Drawing.Size(51, 18);
  1192. this.pointLabel3.TabIndex = 41;
  1193. this.pointLabel3.TagData = null;
  1194. this.pointLabel3.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_AI0333";
  1195. //
  1196. // handCartSmall2
  1197. //
  1198. this.handCartSmall2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1199. this.handCartSmall2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCartSmall2.BackgroundImage")));
  1200. this.handCartSmall2.Location = new System.Drawing.Point(1591, 571);
  1201. this.handCartSmall2.Name = "handCartSmall2";
  1202. this.handCartSmall2.Size = new System.Drawing.Size(18, 18);
  1203. this.handCartSmall2.TabIndex = 38;
  1204. this.handCartSmall2.TagData = null;
  1205. this.handCartSmall2.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1738";
  1206. //
  1207. // handCartSmall1
  1208. //
  1209. this.handCartSmall1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1210. this.handCartSmall1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCartSmall1.BackgroundImage")));
  1211. this.handCartSmall1.Location = new System.Drawing.Point(413, 578);
  1212. this.handCartSmall1.Name = "handCartSmall1";
  1213. this.handCartSmall1.Size = new System.Drawing.Size(18, 18);
  1214. this.handCartSmall1.TabIndex = 37;
  1215. this.handCartSmall1.TagData = null;
  1216. this.handCartSmall1.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1786";
  1217. //
  1218. // breaker21
  1219. //
  1220. this.breaker21.BackColor = System.Drawing.Color.Red;
  1221. this.breaker21.Location = new System.Drawing.Point(472, 303);
  1222. this.breaker21.Name = "breaker21";
  1223. this.breaker21.Size = new System.Drawing.Size(16, 24);
  1224. this.breaker21.TabIndex = 36;
  1225. this.breaker21.TagData = null;
  1226. this.breaker21.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0858";
  1227. //
  1228. // breaker17
  1229. //
  1230. this.breaker17.BackColor = System.Drawing.Color.Red;
  1231. this.breaker17.Location = new System.Drawing.Point(144, 589);
  1232. this.breaker17.Name = "breaker17";
  1233. this.breaker17.Size = new System.Drawing.Size(16, 24);
  1234. this.breaker17.TabIndex = 32;
  1235. this.breaker17.TagData = null;
  1236. this.breaker17.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1554";
  1237. //
  1238. // breaker16
  1239. //
  1240. this.breaker16.BackColor = System.Drawing.Color.Red;
  1241. this.breaker16.Location = new System.Drawing.Point(227, 588);
  1242. this.breaker16.Name = "breaker16";
  1243. this.breaker16.Size = new System.Drawing.Size(16, 24);
  1244. this.breaker16.TabIndex = 31;
  1245. this.breaker16.TagData = null;
  1246. this.breaker16.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1508";
  1247. //
  1248. // breaker15
  1249. //
  1250. this.breaker15.BackColor = System.Drawing.Color.Red;
  1251. this.breaker15.Location = new System.Drawing.Point(310, 588);
  1252. this.breaker15.Name = "breaker15";
  1253. this.breaker15.Size = new System.Drawing.Size(16, 24);
  1254. this.breaker15.TabIndex = 30;
  1255. this.breaker15.TagData = null;
  1256. this.breaker15.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1462";
  1257. //
  1258. // breaker14
  1259. //
  1260. this.breaker14.BackColor = System.Drawing.Color.Red;
  1261. this.breaker14.Location = new System.Drawing.Point(516, 588);
  1262. this.breaker14.Name = "breaker14";
  1263. this.breaker14.Size = new System.Drawing.Size(16, 24);
  1264. this.breaker14.TabIndex = 29;
  1265. this.breaker14.TagData = null;
  1266. this.breaker14.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1646";
  1267. //
  1268. // breaker13
  1269. //
  1270. this.breaker13.BackColor = System.Drawing.Color.Red;
  1271. this.breaker13.Location = new System.Drawing.Point(599, 588);
  1272. this.breaker13.Name = "breaker13";
  1273. this.breaker13.Size = new System.Drawing.Size(16, 24);
  1274. this.breaker13.TabIndex = 28;
  1275. this.breaker13.TagData = null;
  1276. this.breaker13.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1600";
  1277. //
  1278. // breaker12
  1279. //
  1280. this.breaker12.BackColor = System.Drawing.Color.Red;
  1281. this.breaker12.Location = new System.Drawing.Point(1051, 588);
  1282. this.breaker12.Name = "breaker12";
  1283. this.breaker12.Size = new System.Drawing.Size(16, 24);
  1284. this.breaker12.TabIndex = 27;
  1285. this.breaker12.TagData = null;
  1286. this.breaker12.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1370";
  1287. //
  1288. // breaker11
  1289. //
  1290. this.breaker11.BackColor = System.Drawing.Color.Red;
  1291. this.breaker11.Location = new System.Drawing.Point(770, 588);
  1292. this.breaker11.Name = "breaker11";
  1293. this.breaker11.Size = new System.Drawing.Size(16, 24);
  1294. this.breaker11.TabIndex = 26;
  1295. this.breaker11.TagData = null;
  1296. this.breaker11.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1416";
  1297. //
  1298. // breaker10
  1299. //
  1300. this.breaker10.BackColor = System.Drawing.Color.Red;
  1301. this.breaker10.Location = new System.Drawing.Point(1135, 588);
  1302. this.breaker10.Name = "breaker10";
  1303. this.breaker10.Size = new System.Drawing.Size(16, 24);
  1304. this.breaker10.TabIndex = 25;
  1305. this.breaker10.TagData = null;
  1306. this.breaker10.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1324";
  1307. //
  1308. // breaker9
  1309. //
  1310. this.breaker9.BackColor = System.Drawing.Color.Red;
  1311. this.breaker9.Location = new System.Drawing.Point(1227, 588);
  1312. this.breaker9.Name = "breaker9";
  1313. this.breaker9.Size = new System.Drawing.Size(16, 24);
  1314. this.breaker9.TabIndex = 24;
  1315. this.breaker9.TagData = null;
  1316. this.breaker9.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1692";
  1317. //
  1318. // breaker8
  1319. //
  1320. this.breaker8.BackColor = System.Drawing.Color.Red;
  1321. this.breaker8.Location = new System.Drawing.Point(1319, 588);
  1322. this.breaker8.Name = "breaker8";
  1323. this.breaker8.Size = new System.Drawing.Size(16, 24);
  1324. this.breaker8.TabIndex = 23;
  1325. this.breaker8.TagData = null;
  1326. this.breaker8.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1278";
  1327. //
  1328. // breaker7
  1329. //
  1330. this.breaker7.BackColor = System.Drawing.Color.Red;
  1331. this.breaker7.Location = new System.Drawing.Point(1403, 588);
  1332. this.breaker7.Name = "breaker7";
  1333. this.breaker7.Size = new System.Drawing.Size(16, 24);
  1334. this.breaker7.TabIndex = 22;
  1335. this.breaker7.TagData = null;
  1336. this.breaker7.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1232";
  1337. //
  1338. // breaker6
  1339. //
  1340. this.breaker6.BackColor = System.Drawing.Color.Red;
  1341. this.breaker6.Location = new System.Drawing.Point(1485, 588);
  1342. this.breaker6.Name = "breaker6";
  1343. this.breaker6.Size = new System.Drawing.Size(16, 24);
  1344. this.breaker6.TabIndex = 21;
  1345. this.breaker6.TagData = null;
  1346. this.breaker6.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1186";
  1347. //
  1348. // handCart15
  1349. //
  1350. this.handCart15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1351. this.handCart15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart15.BackgroundImage")));
  1352. this.handCart15.Location = new System.Drawing.Point(143, 571);
  1353. this.handCart15.Name = "handCart15";
  1354. this.handCart15.Size = new System.Drawing.Size(18, 58);
  1355. this.handCart15.TabIndex = 14;
  1356. this.handCart15.TagData = null;
  1357. this.handCart15.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1555";
  1358. //
  1359. // handCart14
  1360. //
  1361. this.handCart14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1362. this.handCart14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart14.BackgroundImage")));
  1363. this.handCart14.Location = new System.Drawing.Point(226, 571);
  1364. this.handCart14.Name = "handCart14";
  1365. this.handCart14.Size = new System.Drawing.Size(18, 58);
  1366. this.handCart14.TabIndex = 13;
  1367. this.handCart14.TagData = null;
  1368. this.handCart14.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1509";
  1369. //
  1370. // handCart13
  1371. //
  1372. this.handCart13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1373. this.handCart13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart13.BackgroundImage")));
  1374. this.handCart13.Location = new System.Drawing.Point(309, 571);
  1375. this.handCart13.Name = "handCart13";
  1376. this.handCart13.Size = new System.Drawing.Size(18, 58);
  1377. this.handCart13.TabIndex = 12;
  1378. this.handCart13.TagData = null;
  1379. this.handCart13.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1463";
  1380. //
  1381. // handCart12
  1382. //
  1383. this.handCart12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1384. this.handCart12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart12.BackgroundImage")));
  1385. this.handCart12.Location = new System.Drawing.Point(769, 571);
  1386. this.handCart12.Name = "handCart12";
  1387. this.handCart12.Size = new System.Drawing.Size(18, 58);
  1388. this.handCart12.TabIndex = 11;
  1389. this.handCart12.TagData = null;
  1390. this.handCart12.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1417";
  1391. //
  1392. // handCart11
  1393. //
  1394. this.handCart11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1395. this.handCart11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart11.BackgroundImage")));
  1396. this.handCart11.Location = new System.Drawing.Point(515, 571);
  1397. this.handCart11.Name = "handCart11";
  1398. this.handCart11.Size = new System.Drawing.Size(18, 58);
  1399. this.handCart11.TabIndex = 10;
  1400. this.handCart11.TagData = null;
  1401. this.handCart11.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1647";
  1402. //
  1403. // handCart10
  1404. //
  1405. this.handCart10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1406. this.handCart10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart10.BackgroundImage")));
  1407. this.handCart10.Location = new System.Drawing.Point(598, 571);
  1408. this.handCart10.Name = "handCart10";
  1409. this.handCart10.Size = new System.Drawing.Size(18, 58);
  1410. this.handCart10.TabIndex = 9;
  1411. this.handCart10.TagData = null;
  1412. this.handCart10.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1601";
  1413. //
  1414. // handCart9
  1415. //
  1416. this.handCart9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1417. this.handCart9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart9.BackgroundImage")));
  1418. this.handCart9.Location = new System.Drawing.Point(967, 571);
  1419. this.handCart9.Name = "handCart9";
  1420. this.handCart9.Size = new System.Drawing.Size(18, 58);
  1421. this.handCart9.TabIndex = 8;
  1422. this.handCart9.TagData = null;
  1423. this.handCart9.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1424";
  1424. //
  1425. // handCart8
  1426. //
  1427. this.handCart8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1428. this.handCart8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart8.BackgroundImage")));
  1429. this.handCart8.Location = new System.Drawing.Point(1050, 571);
  1430. this.handCart8.Name = "handCart8";
  1431. this.handCart8.Size = new System.Drawing.Size(18, 58);
  1432. this.handCart8.TabIndex = 7;
  1433. this.handCart8.TagData = null;
  1434. this.handCart8.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1371";
  1435. //
  1436. // handCart7
  1437. //
  1438. this.handCart7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1439. this.handCart7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart7.BackgroundImage")));
  1440. this.handCart7.Location = new System.Drawing.Point(1133, 571);
  1441. this.handCart7.Name = "handCart7";
  1442. this.handCart7.Size = new System.Drawing.Size(18, 58);
  1443. this.handCart7.TabIndex = 6;
  1444. this.handCart7.TagData = null;
  1445. this.handCart7.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1325";
  1446. //
  1447. // handCart6
  1448. //
  1449. this.handCart6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1450. this.handCart6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart6.BackgroundImage")));
  1451. this.handCart6.Location = new System.Drawing.Point(1318, 571);
  1452. this.handCart6.Name = "handCart6";
  1453. this.handCart6.Size = new System.Drawing.Size(18, 58);
  1454. this.handCart6.TabIndex = 5;
  1455. this.handCart6.TagData = null;
  1456. this.handCart6.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1279";
  1457. //
  1458. // handCart5
  1459. //
  1460. this.handCart5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1461. this.handCart5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart5.BackgroundImage")));
  1462. this.handCart5.Location = new System.Drawing.Point(1401, 571);
  1463. this.handCart5.Name = "handCart5";
  1464. this.handCart5.Size = new System.Drawing.Size(18, 58);
  1465. this.handCart5.TabIndex = 4;
  1466. this.handCart5.TagData = null;
  1467. this.handCart5.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1233";
  1468. //
  1469. // handCart4
  1470. //
  1471. this.handCart4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1472. this.handCart4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart4.BackgroundImage")));
  1473. this.handCart4.Location = new System.Drawing.Point(1484, 571);
  1474. this.handCart4.Name = "handCart4";
  1475. this.handCart4.Size = new System.Drawing.Size(18, 58);
  1476. this.handCart4.TabIndex = 3;
  1477. this.handCart4.TagData = null;
  1478. this.handCart4.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1187";
  1479. //
  1480. // handCart3
  1481. //
  1482. this.handCart3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1483. this.handCart3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("handCart3.BackgroundImage")));
  1484. this.handCart3.Location = new System.Drawing.Point(1226, 571);
  1485. this.handCart3.Name = "handCart3";
  1486. this.handCart3.Size = new System.Drawing.Size(18, 58);
  1487. this.handCart3.TabIndex = 2;
  1488. this.handCart3.TagData = null;
  1489. this.handCart3.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI1693";
  1490. //
  1491. // breaker1
  1492. //
  1493. this.breaker1.BackColor = System.Drawing.Color.Red;
  1494. this.breaker1.Location = new System.Drawing.Point(868, 155);
  1495. this.breaker1.Name = "breaker1";
  1496. this.breaker1.Size = new System.Drawing.Size(16, 24);
  1497. this.breaker1.TabIndex = 201;
  1498. this.breaker1.TagData = null;
  1499. this.breaker1.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0376";
  1500. //
  1501. // switchLeft1
  1502. //
  1503. this.switchLeft1.Location = new System.Drawing.Point(896, 91);
  1504. this.switchLeft1.Name = "switchLeft1";
  1505. this.switchLeft1.Size = new System.Drawing.Size(40, 17);
  1506. this.switchLeft1.TabIndex = 202;
  1507. this.switchLeft1.TagData = null;
  1508. this.switchLeft1.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0381";
  1509. //
  1510. // switchLeft2
  1511. //
  1512. this.switchLeft2.Location = new System.Drawing.Point(896, 181);
  1513. this.switchLeft2.Name = "switchLeft2";
  1514. this.switchLeft2.Size = new System.Drawing.Size(40, 17);
  1515. this.switchLeft2.TabIndex = 203;
  1516. this.switchLeft2.TagData = null;
  1517. this.switchLeft2.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0379";
  1518. //
  1519. // switchRightSmall1
  1520. //
  1521. this.switchRightSmall1.Location = new System.Drawing.Point(832, 136);
  1522. this.switchRightSmall1.Name = "switchRightSmall1";
  1523. this.switchRightSmall1.Size = new System.Drawing.Size(25, 17);
  1524. this.switchRightSmall1.TabIndex = 204;
  1525. this.switchRightSmall1.TagData = null;
  1526. this.switchRightSmall1.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0380";
  1527. //
  1528. // switchUpSmall1
  1529. //
  1530. this.switchUpSmall1.Location = new System.Drawing.Point(867, 111);
  1531. this.switchUpSmall1.Name = "switchUpSmall1";
  1532. this.switchUpSmall1.Size = new System.Drawing.Size(18, 22);
  1533. this.switchUpSmall1.TabIndex = 205;
  1534. this.switchUpSmall1.TagData = null;
  1535. this.switchUpSmall1.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0378";
  1536. //
  1537. // switchUpSmall2
  1538. //
  1539. this.switchUpSmall2.Location = new System.Drawing.Point(867, 200);
  1540. this.switchUpSmall2.Name = "switchUpSmall2";
  1541. this.switchUpSmall2.Size = new System.Drawing.Size(18, 22);
  1542. this.switchUpSmall2.TabIndex = 206;
  1543. this.switchUpSmall2.TagData = null;
  1544. this.switchUpSmall2.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0377";
  1545. //
  1546. // switchUpSmall3
  1547. //
  1548. this.switchUpSmall3.Location = new System.Drawing.Point(1535, 259);
  1549. this.switchUpSmall3.Name = "switchUpSmall3";
  1550. this.switchUpSmall3.Size = new System.Drawing.Size(18, 22);
  1551. this.switchUpSmall3.TabIndex = 207;
  1552. this.switchUpSmall3.TagData = null;
  1553. this.switchUpSmall3.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0531";
  1554. //
  1555. // switchUpSmall4
  1556. //
  1557. this.switchUpSmall4.Location = new System.Drawing.Point(1536, 349);
  1558. this.switchUpSmall4.Name = "switchUpSmall4";
  1559. this.switchUpSmall4.Size = new System.Drawing.Size(18, 22);
  1560. this.switchUpSmall4.TabIndex = 208;
  1561. this.switchUpSmall4.TagData = null;
  1562. this.switchUpSmall4.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0534";
  1563. //
  1564. // switchRightSmall2
  1565. //
  1566. this.switchRightSmall2.Location = new System.Drawing.Point(1502, 285);
  1567. this.switchRightSmall2.Name = "switchRightSmall2";
  1568. this.switchRightSmall2.Size = new System.Drawing.Size(25, 17);
  1569. this.switchRightSmall2.TabIndex = 209;
  1570. this.switchRightSmall2.TagData = null;
  1571. this.switchRightSmall2.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0533";
  1572. //
  1573. // switchRightSmall3
  1574. //
  1575. this.switchRightSmall3.Location = new System.Drawing.Point(1500, 375);
  1576. this.switchRightSmall3.Name = "switchRightSmall3";
  1577. this.switchRightSmall3.Size = new System.Drawing.Size(25, 17);
  1578. this.switchRightSmall3.TabIndex = 210;
  1579. this.switchRightSmall3.TagData = null;
  1580. this.switchRightSmall3.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0535";
  1581. //
  1582. // switchLeft3
  1583. //
  1584. this.switchLeft3.Location = new System.Drawing.Point(1565, 239);
  1585. this.switchLeft3.Name = "switchLeft3";
  1586. this.switchLeft3.Size = new System.Drawing.Size(40, 17);
  1587. this.switchLeft3.TabIndex = 211;
  1588. this.switchLeft3.TagData = null;
  1589. this.switchLeft3.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0536";
  1590. //
  1591. // switchLeft4
  1592. //
  1593. this.switchLeft4.Location = new System.Drawing.Point(1565, 329);
  1594. this.switchLeft4.Name = "switchLeft4";
  1595. this.switchLeft4.Size = new System.Drawing.Size(40, 17);
  1596. this.switchLeft4.TabIndex = 212;
  1597. this.switchLeft4.TagData = null;
  1598. this.switchLeft4.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0532";
  1599. //
  1600. // breaker2
  1601. //
  1602. this.breaker2.BackColor = System.Drawing.Color.Red;
  1603. this.breaker2.Location = new System.Drawing.Point(1537, 303);
  1604. this.breaker2.Name = "breaker2";
  1605. this.breaker2.Size = new System.Drawing.Size(16, 24);
  1606. this.breaker2.TabIndex = 213;
  1607. this.breaker2.TagData = null;
  1608. this.breaker2.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0530";
  1609. //
  1610. // breaker3
  1611. //
  1612. this.breaker3.BackColor = System.Drawing.Color.Red;
  1613. this.breaker3.Location = new System.Drawing.Point(1537, 486);
  1614. this.breaker3.Name = "breaker3";
  1615. this.breaker3.Size = new System.Drawing.Size(16, 24);
  1616. this.breaker3.TabIndex = 214;
  1617. this.breaker3.TagData = null;
  1618. this.breaker3.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0192";
  1619. //
  1620. // breaker4
  1621. //
  1622. this.breaker4.BackColor = System.Drawing.Color.Red;
  1623. this.breaker4.Location = new System.Drawing.Point(472, 485);
  1624. this.breaker4.Name = "breaker4";
  1625. this.breaker4.Size = new System.Drawing.Size(16, 24);
  1626. this.breaker4.TabIndex = 215;
  1627. this.breaker4.TagData = null;
  1628. this.breaker4.TagId = "QSDQ.NX_GD_QSF_DQ_P1_L1_001_DI0194";
  1629. //
  1630. // switchUpSmall5
  1631. //
  1632. this.switchUpSmall5.Location = new System.Drawing.Point(1458, 434);
  1633. this.switchUpSmall5.Name = "switchUpSmall5";
  1634. this.switchUpSmall5.Size = new System.Drawing.Size(18, 22);
  1635. this.switchUpSmall5.TabIndex = 216;
  1636. this.switchUpSmall5.TagData = null;
  1637. this.switchUpSmall5.TagId = null;
  1638. //
  1639. // syz_qs
  1640. //
  1641. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1642. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1643. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1644. this.Controls.Add(this.panel2);
  1645. this.Name = "syz_qs";
  1646. this.Controls.SetChildIndex(this.pnlImage, 0);
  1647. this.Controls.SetChildIndex(this.panel2, 0);
  1648. this.pnlImage.ResumeLayout(false);
  1649. this.ResumeLayout(false);
  1650. }
  1651. #endregion
  1652. private System.Windows.Forms.Panel panel2;
  1653. private Breaker breaker21;
  1654. private Breaker breaker17;
  1655. private Breaker breaker16;
  1656. private Breaker breaker15;
  1657. private Breaker breaker14;
  1658. private Breaker breaker13;
  1659. private Breaker breaker12;
  1660. private Breaker breaker11;
  1661. private Breaker breaker10;
  1662. private Breaker breaker9;
  1663. private Breaker breaker8;
  1664. private Breaker breaker7;
  1665. private Breaker breaker6;
  1666. private HandCart handCart15;
  1667. private HandCart handCart14;
  1668. private HandCart handCart13;
  1669. private HandCart handCart12;
  1670. private HandCart handCart11;
  1671. private HandCart handCart10;
  1672. private HandCart handCart9;
  1673. private HandCart handCart8;
  1674. private HandCart handCart7;
  1675. private HandCart handCart6;
  1676. private HandCart handCart5;
  1677. private HandCart handCart4;
  1678. private HandCart handCart3;
  1679. private SwitchUpSmall switchUpSmall26;
  1680. private SwitchUpSmall switchUpSmall25;
  1681. private SwitchUpSmall switchUpSmall24;
  1682. private SwitchUpSmall switchUpSmall23;
  1683. private SwitchUpSmall switchUpSmall22;
  1684. private SwitchUpSmall switchUpSmall21;
  1685. private SwitchUpSmall switchUpSmall20;
  1686. private SwitchUpSmall switchUpSmall19;
  1687. private SwitchUpSmall switchUpSmall18;
  1688. private SwitchUpSmall switchUpSmall17;
  1689. private SwitchUpSmall switchUpSmall16;
  1690. private SwitchUpSmall switchUpSmall15;
  1691. private SwitchUpSmall switchUpSmall14;
  1692. private SwitchUpSmall switchUpSmall13;
  1693. private SwitchUpSmall switchUpSmall12;
  1694. private SwitchRightSmall switchRightSmall13;
  1695. private SwitchRightSmall switchRightSmall12;
  1696. private SwitchLeft switchLeft16;
  1697. private SwitchLeft switchLeft15;
  1698. private SwitchLeft switchLeft14;
  1699. private PointLabel pointLabel39;
  1700. private PointLabel pointLabel40;
  1701. private PointLabel pointLabel41;
  1702. private PointLabel pointLabel31;
  1703. private PointLabel pointLabel32;
  1704. private PointLabel pointLabel33;
  1705. private PointLabel pointLabel34;
  1706. private PointLabel pointLabel35;
  1707. private PointLabel pointLabel36;
  1708. private PointLabel pointLabel37;
  1709. private PointLabel pointLabel38;
  1710. private PointLabel pointLabel28;
  1711. private PointLabel pointLabel29;
  1712. private PointLabel pointLabel30;
  1713. private PointLabel pointLabel25;
  1714. private PointLabel pointLabel26;
  1715. private PointLabel pointLabel27;
  1716. private PointLabel pointLabel22;
  1717. private PointLabel pointLabel23;
  1718. private PointLabel pointLabel24;
  1719. private PointLabel pointLabel18;
  1720. private PointLabel pointLabel19;
  1721. private PointLabel pointLabel20;
  1722. private PointLabel pointLabel21;
  1723. private PointLabel pointLabel14;
  1724. private PointLabel pointLabel15;
  1725. private PointLabel pointLabel16;
  1726. private PointLabel pointLabel17;
  1727. private PointLabel pointLabel11;
  1728. private PointLabel pointLabel12;
  1729. private PointLabel pointLabel13;
  1730. private PointLabel pointLabel1;
  1731. private PointLabel pointLabel2;
  1732. private PointLabel pointLabel9;
  1733. private PointLabel pointLabel10;
  1734. private PointLabel pointLabel8;
  1735. private PointLabel pointLabel7;
  1736. private PointLabel pointLabel6;
  1737. private PointLabel pointLabel5;
  1738. private PointLabel pointLabel4;
  1739. private PointLabel pointLabel3;
  1740. private HandCartSmall handCartSmall2;
  1741. private HandCartSmall handCartSmall1;
  1742. private PointLabel pointLabel72;
  1743. private PointLabel pointLabel73;
  1744. private PointLabel pointLabel74;
  1745. private PointLabel pointLabel69;
  1746. private PointLabel pointLabel70;
  1747. private PointLabel pointLabel71;
  1748. private PointLabel pointLabel66;
  1749. private PointLabel pointLabel67;
  1750. private PointLabel pointLabel68;
  1751. private PointLabel pointLabel63;
  1752. private PointLabel pointLabel64;
  1753. private PointLabel pointLabel65;
  1754. private PointLabel pointLabel60;
  1755. private PointLabel pointLabel61;
  1756. private PointLabel pointLabel62;
  1757. private PointLabel pointLabel57;
  1758. private PointLabel pointLabel58;
  1759. private PointLabel pointLabel59;
  1760. private PointLabel pointLabel54;
  1761. private PointLabel pointLabel55;
  1762. private PointLabel pointLabel56;
  1763. private PointLabel pointLabel51;
  1764. private PointLabel pointLabel52;
  1765. private PointLabel pointLabel53;
  1766. private PointLabel pointLabel48;
  1767. private PointLabel pointLabel49;
  1768. private PointLabel pointLabel50;
  1769. private PointLabel pointLabel45;
  1770. private PointLabel pointLabel46;
  1771. private PointLabel pointLabel47;
  1772. private PointLabel pointLabel42;
  1773. private PointLabel pointLabel43;
  1774. private PointLabel pointLabel44;
  1775. private HandCart_f handCart_f2;
  1776. private HandCart_f handCart_f1;
  1777. private SwitchUpSmall switchUpSmall2;
  1778. private SwitchUpSmall switchUpSmall1;
  1779. private SwitchRightSmall switchRightSmall1;
  1780. private SwitchLeft switchLeft2;
  1781. private SwitchLeft switchLeft1;
  1782. private Breaker breaker1;
  1783. private SwitchUpSmall switchUpSmall5;
  1784. private Breaker breaker4;
  1785. private Breaker breaker3;
  1786. private Breaker breaker2;
  1787. private SwitchLeft switchLeft4;
  1788. private SwitchLeft switchLeft3;
  1789. private SwitchRightSmall switchRightSmall3;
  1790. private SwitchRightSmall switchRightSmall2;
  1791. private SwitchUpSmall switchUpSmall4;
  1792. private SwitchUpSmall switchUpSmall3;
  1793. }
  1794. }