ZM_NSS.Designer.cs 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151
  1. namespace IntelligentControlForsx.MyControls.zm
  2. {
  3. partial class ZM_NSS
  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. this.components = new System.ComponentModel.Container();
  29. this.pnlTop = new System.Windows.Forms.Panel();
  30. this.pnlCurve = new System.Windows.Forms.Panel();
  31. this.stationPowerLine1 = new IntelligentControlForsx.MyControls.StationPowerLine();
  32. this.pnlLink = new System.Windows.Forms.Panel();
  33. this.btnMap = new System.Windows.Forms.Button();
  34. this.btnSYZ = new System.Windows.Forms.Button();
  35. this.lblDate = new System.Windows.Forms.Label();
  36. this.lblTime = new IntelligentControlForsx.MyControls.WebfontLable();
  37. this.pnlStat = new System.Windows.Forms.Panel();
  38. this.label18 = new System.Windows.Forms.Label();
  39. this.lblCntLX = new IntelligentControlForsx.MyControls.WebfontLable();
  40. this.label19 = new System.Windows.Forms.Label();
  41. this.label20 = new System.Windows.Forms.Label();
  42. this.lblCntGZ = new IntelligentControlForsx.MyControls.WebfontLable();
  43. this.label21 = new System.Windows.Forms.Label();
  44. this.label22 = new System.Windows.Forms.Label();
  45. this.lblCntWH = new IntelligentControlForsx.MyControls.WebfontLable();
  46. this.label23 = new System.Windows.Forms.Label();
  47. this.label24 = new System.Windows.Forms.Label();
  48. this.lblCntTJ = new IntelligentControlForsx.MyControls.WebfontLable();
  49. this.label25 = new System.Windows.Forms.Label();
  50. this.label8 = new System.Windows.Forms.Label();
  51. this.lblCntSD = new IntelligentControlForsx.MyControls.WebfontLable();
  52. this.label11 = new System.Windows.Forms.Label();
  53. this.label12 = new System.Windows.Forms.Label();
  54. this.lblCntQD = new IntelligentControlForsx.MyControls.WebfontLable();
  55. this.label13 = new System.Windows.Forms.Label();
  56. this.label14 = new System.Windows.Forms.Label();
  57. this.lblCntDJ = new IntelligentControlForsx.MyControls.WebfontLable();
  58. this.label15 = new System.Windows.Forms.Label();
  59. this.label16 = new System.Windows.Forms.Label();
  60. this.lblCntBW = new IntelligentControlForsx.MyControls.WebfontLable();
  61. this.label17 = new System.Windows.Forms.Label();
  62. this.label6 = new System.Windows.Forms.Label();
  63. this.lblPower = new IntelligentControlForsx.MyControls.WebfontLable();
  64. this.label7 = new System.Windows.Forms.Label();
  65. this.label4 = new System.Windows.Forms.Label();
  66. this.lblWindspeed = new IntelligentControlForsx.MyControls.WebfontLable();
  67. this.label5 = new System.Windows.Forms.Label();
  68. this.label2 = new System.Windows.Forms.Label();
  69. this.lblCntAll = new IntelligentControlForsx.MyControls.WebfontLable();
  70. this.label3 = new System.Windows.Forms.Label();
  71. this.label1 = new System.Windows.Forms.Label();
  72. this.lblCapacity = new IntelligentControlForsx.MyControls.WebfontLable();
  73. this.label10 = new System.Windows.Forms.Label();
  74. this.label9 = new System.Windows.Forms.Label();
  75. this.panel15 = new System.Windows.Forms.Panel();
  76. this.timer1 = new System.Windows.Forms.Timer(this.components);
  77. this.timer2 = new System.Windows.Forms.Timer(this.components);
  78. this.pnlLine = new System.Windows.Forms.Panel();
  79. this.windturbineIconNG01_89 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  80. this.windturbineIconNG01_88 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  81. this.windturbineIconNG01_87 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  82. this.windturbineIconNG01_86 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  83. this.windturbineIconNG01_85 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  84. this.windturbineIconNG01_84 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  85. this.windturbineIconNG01_83 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  86. this.windturbineIconNG01_82 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  87. this.windturbineIconNG01_81 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  88. this.windturbineIconNG01_80 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  89. this.windturbineIconNG01_33 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  90. this.windturbineIconNG01_32 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  91. this.windturbineIconNG01_31 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  92. this.windturbineIconNG01_30 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  93. this.windturbineIconNG01_29 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  94. this.windturbineIconNG01_28 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  95. this.windturbineIconNG01_27 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  96. this.windturbineIconNG01_26 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  97. this.windturbineIconNG01_25 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  98. this.windturbineIconNG01_24 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  99. this.windturbineIconNG01_99 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  100. this.windturbineIconNG01_98 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  101. this.windturbineIconNG01_97 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  102. this.windturbineIconNG01_96 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  103. this.windturbineIconNG01_95 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  104. this.windturbineIconNG01_94 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  105. this.windturbineIconNG01_93 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  106. this.windturbineIconNG01_92 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  107. this.windturbineIconNG01_91 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  108. this.windturbineIconNG01_90 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  109. this.windturbineIconNG01_73 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  110. this.windturbineIconNG01_77 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  111. this.windturbineIconNG01_56 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  112. this.windturbineIconNG01_78 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  113. this.windturbineIconNG01_76 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  114. this.windturbineIconNG01_70 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  115. this.windturbineIconNG01_74 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  116. this.windturbineIconNG01_71 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  117. this.windturbineIconNG01_75 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  118. this.windturbineIconNG01_72 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  119. this.windturbineIconNG01_69 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  120. this.windturbineIconNG01_68 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  121. this.windturbineIconNG01_62 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  122. this.windturbineIconNG01_67 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  123. this.windturbineIconNG01_66 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  124. this.windturbineIconNG01_79 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  125. this.windturbineIconNG01_65 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  126. this.windturbineIconNG01_59 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  127. this.windturbineIconNG01_63 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  128. this.windturbineIconNG01_60 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  129. this.windturbineIconNG01_64 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  130. this.windturbineIconNG01_61 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  131. this.windturbineIconNG01_58 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  132. this.windturbineIconNG01_57 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  133. this.windturbineIconNG01_50 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  134. this.windturbineIconNG01_54 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  135. this.windturbineIconNG01_55 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  136. this.windturbineIconNG01_53 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  137. this.windturbineIconNG01_47 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  138. this.windturbineIconNG01_51 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  139. this.windturbineIconNG01_48 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  140. this.windturbineIconNG01_52 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  141. this.windturbineIconNG01_49 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  142. this.windturbineIconNG01_46 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  143. this.windturbineIconNG01_45 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  144. this.windturbineIconNG01_44 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  145. this.windturbineIconNG01_43 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  146. this.windturbineIconNG01_42 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  147. this.windturbineIconNG01_41 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  148. this.windturbineIconNG01_40 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  149. this.windturbineIconNG01_39 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  150. this.windturbineIconNG01_38 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  151. this.windturbineIconNG01_37 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  152. this.windturbineIconNG01_36 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  153. this.windturbineIconNG01_35 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  154. this.windturbineIconNG01_34 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  155. this.windturbineIconNG01_23 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  156. this.windturbineIconNG01_12 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  157. this.windturbineIconNG01_13 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  158. this.windturbineIconNG01_14 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  159. this.windturbineIconNG01_15 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  160. this.windturbineIconNG01_16 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  161. this.windturbineIconNG01_19 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  162. this.windturbineIconNG01_20 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  163. this.windturbineIconNG01_17 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  164. this.windturbineIconNG01_18 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  165. this.windturbineIconNG01_21 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  166. this.windturbineIconNG01_22 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  167. this.windturbineIconNG01_06 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  168. this.windturbineIconNG01_10 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  169. this.windturbineIconNG01_11 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  170. this.windturbineIconNG01_09 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  171. this.windturbineIconNG01_03 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  172. this.windturbineIconNG01_07 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  173. this.windturbineIconNG01_04 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  174. this.windturbineIconNG01_08 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  175. this.windturbineIconNG01_05 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  176. this.windturbineIconNG01_02 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  177. this.windturbineIconNG01_01 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  178. this.pnlTop.SuspendLayout();
  179. this.pnlCurve.SuspendLayout();
  180. this.pnlLink.SuspendLayout();
  181. this.pnlStat.SuspendLayout();
  182. this.pnlLine.SuspendLayout();
  183. this.SuspendLayout();
  184. //
  185. // pnlTop
  186. //
  187. this.pnlTop.BackColor = System.Drawing.Color.Transparent;
  188. this.pnlTop.Controls.Add(this.pnlCurve);
  189. this.pnlTop.Controls.Add(this.pnlLink);
  190. this.pnlTop.Controls.Add(this.pnlStat);
  191. this.pnlTop.Dock = System.Windows.Forms.DockStyle.Top;
  192. this.pnlTop.Location = new System.Drawing.Point(0, 0);
  193. this.pnlTop.Name = "pnlTop";
  194. this.pnlTop.Size = new System.Drawing.Size(1920, 230);
  195. this.pnlTop.TabIndex = 0;
  196. //
  197. // pnlCurve
  198. //
  199. this.pnlCurve.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(4)))), ((int)(((byte)(24)))), ((int)(((byte)(49)))));
  200. this.pnlCurve.Controls.Add(this.stationPowerLine1);
  201. this.pnlCurve.Location = new System.Drawing.Point(941, 18);
  202. this.pnlCurve.Name = "pnlCurve";
  203. this.pnlCurve.Size = new System.Drawing.Size(743, 206);
  204. this.pnlCurve.TabIndex = 5;
  205. //
  206. // stationPowerLine1
  207. //
  208. this.stationPowerLine1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(4)))), ((int)(((byte)(24)))), ((int)(((byte)(49)))));
  209. this.stationPowerLine1.FactPowerPoint = "NSSFCJSFW.NX_GD_NSSF_XX_XX_XXX_XXX_CI0135";
  210. this.stationPowerLine1.Location = new System.Drawing.Point(1, 1);
  211. this.stationPowerLine1.Name = "stationPowerLine1";
  212. this.stationPowerLine1.Size = new System.Drawing.Size(741, 204);
  213. this.stationPowerLine1.StationId = null;
  214. this.stationPowerLine1.TabIndex = 0;
  215. //
  216. // pnlLink
  217. //
  218. this.pnlLink.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(4)))), ((int)(((byte)(24)))), ((int)(((byte)(49)))));
  219. this.pnlLink.Controls.Add(this.btnSYZ);
  220. this.pnlLink.Controls.Add(this.btnMap);
  221. this.pnlLink.Controls.Add(this.lblDate);
  222. this.pnlLink.Controls.Add(this.lblTime);
  223. this.pnlLink.Location = new System.Drawing.Point(1717, 18);
  224. this.pnlLink.Name = "pnlLink";
  225. this.pnlLink.Size = new System.Drawing.Size(190, 206);
  226. this.pnlLink.TabIndex = 4;
  227. //
  228. // btnMap
  229. //
  230. this.btnMap.BackColor = System.Drawing.Color.Transparent;
  231. this.btnMap.FlatAppearance.BorderSize = 0;
  232. this.btnMap.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
  233. this.btnMap.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
  234. this.btnMap.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  235. this.btnMap.Font = new System.Drawing.Font("微软雅黑", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  236. this.btnMap.ForeColor = System.Drawing.Color.White;
  237. this.btnMap.Image = global::IntelligentControlForsx.Properties.Resources.B02;
  238. this.btnMap.Location = new System.Drawing.Point(43, 147);
  239. this.btnMap.Name = "btnMap";
  240. this.btnMap.Size = new System.Drawing.Size(105, 34);
  241. this.btnMap.TabIndex = 32;
  242. this.btnMap.Text = "风机排布图";
  243. this.btnMap.UseVisualStyleBackColor = false;
  244. this.btnMap.Click += new System.EventHandler(this.btnMap_Click);
  245. this.btnMap.MouseLeave += new System.EventHandler(this.btnMap_MouseLeave);
  246. this.btnMap.MouseHover += new System.EventHandler(this.btnMap_MouseHover);
  247. //
  248. // btnSYZ
  249. //
  250. this.btnSYZ.BackColor = System.Drawing.Color.Transparent;
  251. this.btnSYZ.FlatAppearance.BorderSize = 0;
  252. this.btnSYZ.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
  253. this.btnSYZ.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
  254. this.btnSYZ.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  255. this.btnSYZ.Font = new System.Drawing.Font("微软雅黑", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  256. this.btnSYZ.ForeColor = System.Drawing.Color.White;
  257. this.btnSYZ.Image = global::IntelligentControlForsx.Properties.Resources.B02;
  258. this.btnSYZ.Location = new System.Drawing.Point(43, 101);
  259. this.btnSYZ.Name = "btnSYZ";
  260. this.btnSYZ.Size = new System.Drawing.Size(105, 34);
  261. this.btnSYZ.TabIndex = 31;
  262. this.btnSYZ.Text = "升压站";
  263. this.btnSYZ.UseVisualStyleBackColor = false;
  264. this.btnSYZ.Click += new System.EventHandler(this.btnSYZ_Click);
  265. this.btnSYZ.MouseLeave += new System.EventHandler(this.btnSYZ_MouseLeave);
  266. this.btnSYZ.MouseHover += new System.EventHandler(this.btnSYZ_MouseHover);
  267. //
  268. // lblDate
  269. //
  270. this.lblDate.Font = new System.Drawing.Font("微软雅黑", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  271. this.lblDate.ForeColor = System.Drawing.Color.MediumSpringGreen;
  272. this.lblDate.Location = new System.Drawing.Point(6, 21);
  273. this.lblDate.Name = "lblDate";
  274. this.lblDate.Size = new System.Drawing.Size(181, 22);
  275. this.lblDate.TabIndex = 29;
  276. this.lblDate.Text = "2019-12-18";
  277. this.lblDate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  278. //
  279. // lblTime
  280. //
  281. this.lblTime.BackColor = System.Drawing.Color.Transparent;
  282. this.lblTime.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  283. this.lblTime.LableShowType = 0;
  284. this.lblTime.LableText = "08:30:00";
  285. this.lblTime.LableType = 0;
  286. this.lblTime.Location = new System.Drawing.Point(39, 54);
  287. this.lblTime.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  288. this.lblTime.MyEmSize = 21.75F;
  289. this.lblTime.MyLabelDock = System.Windows.Forms.DockStyle.Fill;
  290. this.lblTime.MyLabelTextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  291. this.lblTime.Name = "lblTime";
  292. this.lblTime.Size = new System.Drawing.Size(109, 23);
  293. this.lblTime.TabIndex = 28;
  294. this.lblTime.TestPointId = null;
  295. this.lblTime.UniformCode = null;
  296. this.lblTime.WindPowerId = null;
  297. this.lblTime.WindTurbineId = null;
  298. //
  299. // pnlStat
  300. //
  301. this.pnlStat.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(4)))), ((int)(((byte)(24)))), ((int)(((byte)(49)))));
  302. this.pnlStat.Controls.Add(this.label18);
  303. this.pnlStat.Controls.Add(this.lblCntLX);
  304. this.pnlStat.Controls.Add(this.label19);
  305. this.pnlStat.Controls.Add(this.label20);
  306. this.pnlStat.Controls.Add(this.lblCntGZ);
  307. this.pnlStat.Controls.Add(this.label21);
  308. this.pnlStat.Controls.Add(this.label22);
  309. this.pnlStat.Controls.Add(this.lblCntWH);
  310. this.pnlStat.Controls.Add(this.label23);
  311. this.pnlStat.Controls.Add(this.label24);
  312. this.pnlStat.Controls.Add(this.lblCntTJ);
  313. this.pnlStat.Controls.Add(this.label25);
  314. this.pnlStat.Controls.Add(this.label8);
  315. this.pnlStat.Controls.Add(this.lblCntSD);
  316. this.pnlStat.Controls.Add(this.label11);
  317. this.pnlStat.Controls.Add(this.label12);
  318. this.pnlStat.Controls.Add(this.lblCntQD);
  319. this.pnlStat.Controls.Add(this.label13);
  320. this.pnlStat.Controls.Add(this.label14);
  321. this.pnlStat.Controls.Add(this.lblCntDJ);
  322. this.pnlStat.Controls.Add(this.label15);
  323. this.pnlStat.Controls.Add(this.label16);
  324. this.pnlStat.Controls.Add(this.lblCntBW);
  325. this.pnlStat.Controls.Add(this.label17);
  326. this.pnlStat.Controls.Add(this.label6);
  327. this.pnlStat.Controls.Add(this.lblPower);
  328. this.pnlStat.Controls.Add(this.label7);
  329. this.pnlStat.Controls.Add(this.label4);
  330. this.pnlStat.Controls.Add(this.lblWindspeed);
  331. this.pnlStat.Controls.Add(this.label5);
  332. this.pnlStat.Controls.Add(this.label2);
  333. this.pnlStat.Controls.Add(this.lblCntAll);
  334. this.pnlStat.Controls.Add(this.label3);
  335. this.pnlStat.Controls.Add(this.label1);
  336. this.pnlStat.Controls.Add(this.lblCapacity);
  337. this.pnlStat.Controls.Add(this.label10);
  338. this.pnlStat.Controls.Add(this.label9);
  339. this.pnlStat.Controls.Add(this.panel15);
  340. this.pnlStat.Location = new System.Drawing.Point(3, 18);
  341. this.pnlStat.Name = "pnlStat";
  342. this.pnlStat.Size = new System.Drawing.Size(931, 206);
  343. this.pnlStat.TabIndex = 3;
  344. //
  345. // label18
  346. //
  347. this.label18.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  348. this.label18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  349. this.label18.Location = new System.Drawing.Point(654, 168);
  350. this.label18.Name = "label18";
  351. this.label18.Size = new System.Drawing.Size(89, 22);
  352. this.label18.TabIndex = 37;
  353. this.label18.Text = "离线台数:";
  354. this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  355. //
  356. // lblCntLX
  357. //
  358. this.lblCntLX.BackColor = System.Drawing.Color.Transparent;
  359. this.lblCntLX.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  360. this.lblCntLX.LableShowType = 0;
  361. this.lblCntLX.LableText = "000000";
  362. this.lblCntLX.LableType = 0;
  363. this.lblCntLX.Location = new System.Drawing.Point(748, 167);
  364. this.lblCntLX.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  365. this.lblCntLX.MyEmSize = 21.75F;
  366. this.lblCntLX.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  367. this.lblCntLX.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  368. this.lblCntLX.Name = "lblCntLX";
  369. this.lblCntLX.Size = new System.Drawing.Size(100, 23);
  370. this.lblCntLX.TabIndex = 36;
  371. this.lblCntLX.TestPointId = null;
  372. this.lblCntLX.UniformCode = null;
  373. this.lblCntLX.WindPowerId = null;
  374. this.lblCntLX.WindTurbineId = null;
  375. //
  376. // label19
  377. //
  378. this.label19.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  379. this.label19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  380. this.label19.Location = new System.Drawing.Point(845, 168);
  381. this.label19.Name = "label19";
  382. this.label19.Size = new System.Drawing.Size(47, 22);
  383. this.label19.TabIndex = 35;
  384. this.label19.Text = "台";
  385. this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  386. //
  387. // label20
  388. //
  389. this.label20.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  390. this.label20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  391. this.label20.Location = new System.Drawing.Point(654, 133);
  392. this.label20.Name = "label20";
  393. this.label20.Size = new System.Drawing.Size(89, 22);
  394. this.label20.TabIndex = 34;
  395. this.label20.Text = "故障台数:";
  396. this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  397. //
  398. // lblCntGZ
  399. //
  400. this.lblCntGZ.BackColor = System.Drawing.Color.Transparent;
  401. this.lblCntGZ.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  402. this.lblCntGZ.LableShowType = 0;
  403. this.lblCntGZ.LableText = "000000";
  404. this.lblCntGZ.LableType = 0;
  405. this.lblCntGZ.Location = new System.Drawing.Point(748, 132);
  406. this.lblCntGZ.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  407. this.lblCntGZ.MyEmSize = 21.75F;
  408. this.lblCntGZ.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  409. this.lblCntGZ.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  410. this.lblCntGZ.Name = "lblCntGZ";
  411. this.lblCntGZ.Size = new System.Drawing.Size(100, 23);
  412. this.lblCntGZ.TabIndex = 33;
  413. this.lblCntGZ.TestPointId = null;
  414. this.lblCntGZ.UniformCode = null;
  415. this.lblCntGZ.WindPowerId = null;
  416. this.lblCntGZ.WindTurbineId = null;
  417. //
  418. // label21
  419. //
  420. this.label21.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  421. this.label21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  422. this.label21.Location = new System.Drawing.Point(845, 133);
  423. this.label21.Name = "label21";
  424. this.label21.Size = new System.Drawing.Size(47, 22);
  425. this.label21.TabIndex = 32;
  426. this.label21.Text = "台";
  427. this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  428. //
  429. // label22
  430. //
  431. this.label22.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  432. this.label22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  433. this.label22.Location = new System.Drawing.Point(654, 98);
  434. this.label22.Name = "label22";
  435. this.label22.Size = new System.Drawing.Size(89, 22);
  436. this.label22.TabIndex = 31;
  437. this.label22.Text = "维护台数:";
  438. this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  439. //
  440. // lblCntWH
  441. //
  442. this.lblCntWH.BackColor = System.Drawing.Color.Transparent;
  443. this.lblCntWH.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  444. this.lblCntWH.LableShowType = 0;
  445. this.lblCntWH.LableText = "000000";
  446. this.lblCntWH.LableType = 0;
  447. this.lblCntWH.Location = new System.Drawing.Point(748, 97);
  448. this.lblCntWH.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  449. this.lblCntWH.MyEmSize = 21.75F;
  450. this.lblCntWH.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  451. this.lblCntWH.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  452. this.lblCntWH.Name = "lblCntWH";
  453. this.lblCntWH.Size = new System.Drawing.Size(100, 23);
  454. this.lblCntWH.TabIndex = 30;
  455. this.lblCntWH.TestPointId = null;
  456. this.lblCntWH.UniformCode = null;
  457. this.lblCntWH.WindPowerId = null;
  458. this.lblCntWH.WindTurbineId = null;
  459. //
  460. // label23
  461. //
  462. this.label23.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  463. this.label23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  464. this.label23.Location = new System.Drawing.Point(845, 98);
  465. this.label23.Name = "label23";
  466. this.label23.Size = new System.Drawing.Size(47, 22);
  467. this.label23.TabIndex = 29;
  468. this.label23.Text = "台";
  469. this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  470. //
  471. // label24
  472. //
  473. this.label24.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  474. this.label24.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  475. this.label24.Location = new System.Drawing.Point(654, 62);
  476. this.label24.Name = "label24";
  477. this.label24.Size = new System.Drawing.Size(89, 22);
  478. this.label24.TabIndex = 28;
  479. this.label24.Text = "停机台数:";
  480. this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  481. //
  482. // lblCntTJ
  483. //
  484. this.lblCntTJ.BackColor = System.Drawing.Color.Transparent;
  485. this.lblCntTJ.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  486. this.lblCntTJ.LableShowType = 0;
  487. this.lblCntTJ.LableText = "000000";
  488. this.lblCntTJ.LableType = 0;
  489. this.lblCntTJ.Location = new System.Drawing.Point(748, 61);
  490. this.lblCntTJ.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  491. this.lblCntTJ.MyEmSize = 21.75F;
  492. this.lblCntTJ.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  493. this.lblCntTJ.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  494. this.lblCntTJ.Name = "lblCntTJ";
  495. this.lblCntTJ.Size = new System.Drawing.Size(100, 23);
  496. this.lblCntTJ.TabIndex = 27;
  497. this.lblCntTJ.TestPointId = null;
  498. this.lblCntTJ.UniformCode = null;
  499. this.lblCntTJ.WindPowerId = null;
  500. this.lblCntTJ.WindTurbineId = null;
  501. //
  502. // label25
  503. //
  504. this.label25.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  505. this.label25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  506. this.label25.Location = new System.Drawing.Point(845, 62);
  507. this.label25.Name = "label25";
  508. this.label25.Size = new System.Drawing.Size(47, 22);
  509. this.label25.TabIndex = 26;
  510. this.label25.Text = "台";
  511. this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  512. //
  513. // label8
  514. //
  515. this.label8.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  516. this.label8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  517. this.label8.Location = new System.Drawing.Point(345, 168);
  518. this.label8.Name = "label8";
  519. this.label8.Size = new System.Drawing.Size(89, 22);
  520. this.label8.TabIndex = 25;
  521. this.label8.Text = "上电台数:";
  522. this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  523. //
  524. // lblCntSD
  525. //
  526. this.lblCntSD.BackColor = System.Drawing.Color.Transparent;
  527. this.lblCntSD.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  528. this.lblCntSD.LableShowType = 0;
  529. this.lblCntSD.LableText = "000000";
  530. this.lblCntSD.LableType = 0;
  531. this.lblCntSD.Location = new System.Drawing.Point(439, 167);
  532. this.lblCntSD.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  533. this.lblCntSD.MyEmSize = 21.75F;
  534. this.lblCntSD.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  535. this.lblCntSD.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  536. this.lblCntSD.Name = "lblCntSD";
  537. this.lblCntSD.Size = new System.Drawing.Size(100, 23);
  538. this.lblCntSD.TabIndex = 24;
  539. this.lblCntSD.TestPointId = null;
  540. this.lblCntSD.UniformCode = null;
  541. this.lblCntSD.WindPowerId = null;
  542. this.lblCntSD.WindTurbineId = null;
  543. //
  544. // label11
  545. //
  546. this.label11.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  547. this.label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  548. this.label11.Location = new System.Drawing.Point(536, 168);
  549. this.label11.Name = "label11";
  550. this.label11.Size = new System.Drawing.Size(47, 22);
  551. this.label11.TabIndex = 23;
  552. this.label11.Text = "台";
  553. this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  554. //
  555. // label12
  556. //
  557. this.label12.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  558. this.label12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  559. this.label12.Location = new System.Drawing.Point(345, 133);
  560. this.label12.Name = "label12";
  561. this.label12.Size = new System.Drawing.Size(89, 22);
  562. this.label12.TabIndex = 22;
  563. this.label12.Text = "启动台数:";
  564. this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  565. //
  566. // lblCntQD
  567. //
  568. this.lblCntQD.BackColor = System.Drawing.Color.Transparent;
  569. this.lblCntQD.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  570. this.lblCntQD.LableShowType = 0;
  571. this.lblCntQD.LableText = "000000";
  572. this.lblCntQD.LableType = 0;
  573. this.lblCntQD.Location = new System.Drawing.Point(439, 132);
  574. this.lblCntQD.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  575. this.lblCntQD.MyEmSize = 21.75F;
  576. this.lblCntQD.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  577. this.lblCntQD.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  578. this.lblCntQD.Name = "lblCntQD";
  579. this.lblCntQD.Size = new System.Drawing.Size(100, 23);
  580. this.lblCntQD.TabIndex = 21;
  581. this.lblCntQD.TestPointId = null;
  582. this.lblCntQD.UniformCode = null;
  583. this.lblCntQD.WindPowerId = null;
  584. this.lblCntQD.WindTurbineId = null;
  585. //
  586. // label13
  587. //
  588. this.label13.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  589. this.label13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  590. this.label13.Location = new System.Drawing.Point(536, 133);
  591. this.label13.Name = "label13";
  592. this.label13.Size = new System.Drawing.Size(47, 22);
  593. this.label13.TabIndex = 20;
  594. this.label13.Text = "台";
  595. this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  596. //
  597. // label14
  598. //
  599. this.label14.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  600. this.label14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  601. this.label14.Location = new System.Drawing.Point(345, 98);
  602. this.label14.Name = "label14";
  603. this.label14.Size = new System.Drawing.Size(89, 22);
  604. this.label14.TabIndex = 19;
  605. this.label14.Text = "待机台数:";
  606. this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  607. //
  608. // lblCntDJ
  609. //
  610. this.lblCntDJ.BackColor = System.Drawing.Color.Transparent;
  611. this.lblCntDJ.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  612. this.lblCntDJ.LableShowType = 0;
  613. this.lblCntDJ.LableText = "000000";
  614. this.lblCntDJ.LableType = 0;
  615. this.lblCntDJ.Location = new System.Drawing.Point(439, 97);
  616. this.lblCntDJ.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  617. this.lblCntDJ.MyEmSize = 21.75F;
  618. this.lblCntDJ.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  619. this.lblCntDJ.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  620. this.lblCntDJ.Name = "lblCntDJ";
  621. this.lblCntDJ.Size = new System.Drawing.Size(100, 23);
  622. this.lblCntDJ.TabIndex = 18;
  623. this.lblCntDJ.TestPointId = null;
  624. this.lblCntDJ.UniformCode = null;
  625. this.lblCntDJ.WindPowerId = null;
  626. this.lblCntDJ.WindTurbineId = null;
  627. //
  628. // label15
  629. //
  630. this.label15.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  631. this.label15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  632. this.label15.Location = new System.Drawing.Point(536, 98);
  633. this.label15.Name = "label15";
  634. this.label15.Size = new System.Drawing.Size(47, 22);
  635. this.label15.TabIndex = 17;
  636. this.label15.Text = "台";
  637. this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  638. //
  639. // label16
  640. //
  641. this.label16.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  642. this.label16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  643. this.label16.Location = new System.Drawing.Point(345, 62);
  644. this.label16.Name = "label16";
  645. this.label16.Size = new System.Drawing.Size(89, 22);
  646. this.label16.TabIndex = 16;
  647. this.label16.Text = "并网台数:";
  648. this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  649. //
  650. // lblCntBW
  651. //
  652. this.lblCntBW.BackColor = System.Drawing.Color.Transparent;
  653. this.lblCntBW.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  654. this.lblCntBW.LableShowType = 0;
  655. this.lblCntBW.LableText = "000000";
  656. this.lblCntBW.LableType = 0;
  657. this.lblCntBW.Location = new System.Drawing.Point(439, 61);
  658. this.lblCntBW.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  659. this.lblCntBW.MyEmSize = 21.75F;
  660. this.lblCntBW.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  661. this.lblCntBW.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  662. this.lblCntBW.Name = "lblCntBW";
  663. this.lblCntBW.Size = new System.Drawing.Size(100, 23);
  664. this.lblCntBW.TabIndex = 15;
  665. this.lblCntBW.TestPointId = null;
  666. this.lblCntBW.UniformCode = null;
  667. this.lblCntBW.WindPowerId = null;
  668. this.lblCntBW.WindTurbineId = null;
  669. //
  670. // label17
  671. //
  672. this.label17.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  673. this.label17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  674. this.label17.Location = new System.Drawing.Point(536, 62);
  675. this.label17.Name = "label17";
  676. this.label17.Size = new System.Drawing.Size(47, 22);
  677. this.label17.TabIndex = 14;
  678. this.label17.Text = "台";
  679. this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  680. //
  681. // label6
  682. //
  683. this.label6.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  684. this.label6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  685. this.label6.Location = new System.Drawing.Point(23, 168);
  686. this.label6.Name = "label6";
  687. this.label6.Size = new System.Drawing.Size(89, 22);
  688. this.label6.TabIndex = 13;
  689. this.label6.Text = "实时功率:";
  690. this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  691. //
  692. // lblPower
  693. //
  694. this.lblPower.BackColor = System.Drawing.Color.Transparent;
  695. this.lblPower.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  696. this.lblPower.LableShowType = 0;
  697. this.lblPower.LableText = "000000";
  698. this.lblPower.LableType = 0;
  699. this.lblPower.Location = new System.Drawing.Point(117, 167);
  700. this.lblPower.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  701. this.lblPower.MyEmSize = 21.75F;
  702. this.lblPower.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  703. this.lblPower.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  704. this.lblPower.Name = "lblPower";
  705. this.lblPower.Size = new System.Drawing.Size(100, 23);
  706. this.lblPower.TabIndex = 12;
  707. this.lblPower.TestPointId = null;
  708. this.lblPower.UniformCode = null;
  709. this.lblPower.WindPowerId = null;
  710. this.lblPower.WindTurbineId = null;
  711. //
  712. // label7
  713. //
  714. this.label7.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  715. this.label7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  716. this.label7.Location = new System.Drawing.Point(214, 168);
  717. this.label7.Name = "label7";
  718. this.label7.Size = new System.Drawing.Size(47, 22);
  719. this.label7.TabIndex = 11;
  720. this.label7.Text = "MW";
  721. this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  722. //
  723. // label4
  724. //
  725. this.label4.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  726. this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  727. this.label4.Location = new System.Drawing.Point(23, 133);
  728. this.label4.Name = "label4";
  729. this.label4.Size = new System.Drawing.Size(89, 22);
  730. this.label4.TabIndex = 10;
  731. this.label4.Text = "平均风速:";
  732. this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  733. //
  734. // lblWindspeed
  735. //
  736. this.lblWindspeed.BackColor = System.Drawing.Color.Transparent;
  737. this.lblWindspeed.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  738. this.lblWindspeed.LableShowType = 0;
  739. this.lblWindspeed.LableText = "000000";
  740. this.lblWindspeed.LableType = 0;
  741. this.lblWindspeed.Location = new System.Drawing.Point(117, 132);
  742. this.lblWindspeed.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  743. this.lblWindspeed.MyEmSize = 21.75F;
  744. this.lblWindspeed.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  745. this.lblWindspeed.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  746. this.lblWindspeed.Name = "lblWindspeed";
  747. this.lblWindspeed.Size = new System.Drawing.Size(100, 23);
  748. this.lblWindspeed.TabIndex = 9;
  749. this.lblWindspeed.TestPointId = null;
  750. this.lblWindspeed.UniformCode = null;
  751. this.lblWindspeed.WindPowerId = null;
  752. this.lblWindspeed.WindTurbineId = null;
  753. //
  754. // label5
  755. //
  756. this.label5.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  757. this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  758. this.label5.Location = new System.Drawing.Point(214, 133);
  759. this.label5.Name = "label5";
  760. this.label5.Size = new System.Drawing.Size(47, 22);
  761. this.label5.TabIndex = 8;
  762. this.label5.Text = "m/s";
  763. this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  764. //
  765. // label2
  766. //
  767. this.label2.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  768. this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  769. this.label2.Location = new System.Drawing.Point(23, 98);
  770. this.label2.Name = "label2";
  771. this.label2.Size = new System.Drawing.Size(89, 22);
  772. this.label2.TabIndex = 7;
  773. this.label2.Text = "装机台数:";
  774. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  775. //
  776. // lblCntAll
  777. //
  778. this.lblCntAll.BackColor = System.Drawing.Color.Transparent;
  779. this.lblCntAll.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  780. this.lblCntAll.LableShowType = 0;
  781. this.lblCntAll.LableText = "000000";
  782. this.lblCntAll.LableType = 0;
  783. this.lblCntAll.Location = new System.Drawing.Point(117, 97);
  784. this.lblCntAll.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  785. this.lblCntAll.MyEmSize = 21.75F;
  786. this.lblCntAll.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  787. this.lblCntAll.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  788. this.lblCntAll.Name = "lblCntAll";
  789. this.lblCntAll.Size = new System.Drawing.Size(100, 23);
  790. this.lblCntAll.TabIndex = 6;
  791. this.lblCntAll.TestPointId = null;
  792. this.lblCntAll.UniformCode = null;
  793. this.lblCntAll.WindPowerId = null;
  794. this.lblCntAll.WindTurbineId = null;
  795. //
  796. // label3
  797. //
  798. this.label3.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  799. this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  800. this.label3.Location = new System.Drawing.Point(214, 98);
  801. this.label3.Name = "label3";
  802. this.label3.Size = new System.Drawing.Size(47, 22);
  803. this.label3.TabIndex = 5;
  804. this.label3.Text = "台";
  805. this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  806. //
  807. // label1
  808. //
  809. this.label1.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  810. this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  811. this.label1.Location = new System.Drawing.Point(23, 62);
  812. this.label1.Name = "label1";
  813. this.label1.Size = new System.Drawing.Size(89, 22);
  814. this.label1.TabIndex = 4;
  815. this.label1.Text = "装机容量:";
  816. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  817. //
  818. // lblCapacity
  819. //
  820. this.lblCapacity.BackColor = System.Drawing.Color.Transparent;
  821. this.lblCapacity.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  822. this.lblCapacity.LableShowType = 0;
  823. this.lblCapacity.LableText = "000000";
  824. this.lblCapacity.LableType = 0;
  825. this.lblCapacity.Location = new System.Drawing.Point(117, 61);
  826. this.lblCapacity.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  827. this.lblCapacity.MyEmSize = 21.75F;
  828. this.lblCapacity.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  829. this.lblCapacity.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  830. this.lblCapacity.Name = "lblCapacity";
  831. this.lblCapacity.Size = new System.Drawing.Size(100, 23);
  832. this.lblCapacity.TabIndex = 3;
  833. this.lblCapacity.TestPointId = null;
  834. this.lblCapacity.UniformCode = null;
  835. this.lblCapacity.WindPowerId = null;
  836. this.lblCapacity.WindTurbineId = null;
  837. //
  838. // label10
  839. //
  840. this.label10.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  841. this.label10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  842. this.label10.Location = new System.Drawing.Point(214, 62);
  843. this.label10.Name = "label10";
  844. this.label10.Size = new System.Drawing.Size(47, 22);
  845. this.label10.TabIndex = 2;
  846. this.label10.Text = "MW";
  847. this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  848. //
  849. // label9
  850. //
  851. this.label9.Font = new System.Drawing.Font("微软雅黑", 16F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  852. this.label9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  853. this.label9.Location = new System.Drawing.Point(13, 5);
  854. this.label9.Name = "label9";
  855. this.label9.Size = new System.Drawing.Size(904, 37);
  856. this.label9.TabIndex = 2;
  857. this.label9.Text = "牛首山风电场总貌图";
  858. this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  859. //
  860. // panel15
  861. //
  862. this.panel15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(47)))), ((int)(((byte)(107)))));
  863. this.panel15.Location = new System.Drawing.Point(2, 47);
  864. this.panel15.Name = "panel15";
  865. this.panel15.Size = new System.Drawing.Size(930, 1);
  866. this.panel15.TabIndex = 0;
  867. //
  868. // timer1
  869. //
  870. this.timer1.Interval = 5000;
  871. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  872. //
  873. // timer2
  874. //
  875. this.timer2.Interval = 1000;
  876. this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
  877. //
  878. // pnlLine
  879. //
  880. this.pnlLine.BackgroundImage = global::IntelligentControlForsx.Properties.Resources.zm_nss1;
  881. this.pnlLine.Controls.Add(this.windturbineIconNG01_89);
  882. this.pnlLine.Controls.Add(this.windturbineIconNG01_88);
  883. this.pnlLine.Controls.Add(this.windturbineIconNG01_87);
  884. this.pnlLine.Controls.Add(this.windturbineIconNG01_86);
  885. this.pnlLine.Controls.Add(this.windturbineIconNG01_85);
  886. this.pnlLine.Controls.Add(this.windturbineIconNG01_84);
  887. this.pnlLine.Controls.Add(this.windturbineIconNG01_83);
  888. this.pnlLine.Controls.Add(this.windturbineIconNG01_82);
  889. this.pnlLine.Controls.Add(this.windturbineIconNG01_81);
  890. this.pnlLine.Controls.Add(this.windturbineIconNG01_80);
  891. this.pnlLine.Controls.Add(this.windturbineIconNG01_33);
  892. this.pnlLine.Controls.Add(this.windturbineIconNG01_32);
  893. this.pnlLine.Controls.Add(this.windturbineIconNG01_31);
  894. this.pnlLine.Controls.Add(this.windturbineIconNG01_30);
  895. this.pnlLine.Controls.Add(this.windturbineIconNG01_29);
  896. this.pnlLine.Controls.Add(this.windturbineIconNG01_28);
  897. this.pnlLine.Controls.Add(this.windturbineIconNG01_27);
  898. this.pnlLine.Controls.Add(this.windturbineIconNG01_26);
  899. this.pnlLine.Controls.Add(this.windturbineIconNG01_25);
  900. this.pnlLine.Controls.Add(this.windturbineIconNG01_24);
  901. this.pnlLine.Controls.Add(this.windturbineIconNG01_99);
  902. this.pnlLine.Controls.Add(this.windturbineIconNG01_98);
  903. this.pnlLine.Controls.Add(this.windturbineIconNG01_97);
  904. this.pnlLine.Controls.Add(this.windturbineIconNG01_96);
  905. this.pnlLine.Controls.Add(this.windturbineIconNG01_95);
  906. this.pnlLine.Controls.Add(this.windturbineIconNG01_94);
  907. this.pnlLine.Controls.Add(this.windturbineIconNG01_93);
  908. this.pnlLine.Controls.Add(this.windturbineIconNG01_92);
  909. this.pnlLine.Controls.Add(this.windturbineIconNG01_91);
  910. this.pnlLine.Controls.Add(this.windturbineIconNG01_90);
  911. this.pnlLine.Controls.Add(this.windturbineIconNG01_73);
  912. this.pnlLine.Controls.Add(this.windturbineIconNG01_77);
  913. this.pnlLine.Controls.Add(this.windturbineIconNG01_56);
  914. this.pnlLine.Controls.Add(this.windturbineIconNG01_78);
  915. this.pnlLine.Controls.Add(this.windturbineIconNG01_76);
  916. this.pnlLine.Controls.Add(this.windturbineIconNG01_70);
  917. this.pnlLine.Controls.Add(this.windturbineIconNG01_74);
  918. this.pnlLine.Controls.Add(this.windturbineIconNG01_71);
  919. this.pnlLine.Controls.Add(this.windturbineIconNG01_75);
  920. this.pnlLine.Controls.Add(this.windturbineIconNG01_72);
  921. this.pnlLine.Controls.Add(this.windturbineIconNG01_69);
  922. this.pnlLine.Controls.Add(this.windturbineIconNG01_68);
  923. this.pnlLine.Controls.Add(this.windturbineIconNG01_62);
  924. this.pnlLine.Controls.Add(this.windturbineIconNG01_67);
  925. this.pnlLine.Controls.Add(this.windturbineIconNG01_66);
  926. this.pnlLine.Controls.Add(this.windturbineIconNG01_79);
  927. this.pnlLine.Controls.Add(this.windturbineIconNG01_65);
  928. this.pnlLine.Controls.Add(this.windturbineIconNG01_59);
  929. this.pnlLine.Controls.Add(this.windturbineIconNG01_63);
  930. this.pnlLine.Controls.Add(this.windturbineIconNG01_60);
  931. this.pnlLine.Controls.Add(this.windturbineIconNG01_64);
  932. this.pnlLine.Controls.Add(this.windturbineIconNG01_61);
  933. this.pnlLine.Controls.Add(this.windturbineIconNG01_58);
  934. this.pnlLine.Controls.Add(this.windturbineIconNG01_57);
  935. this.pnlLine.Controls.Add(this.windturbineIconNG01_50);
  936. this.pnlLine.Controls.Add(this.windturbineIconNG01_54);
  937. this.pnlLine.Controls.Add(this.windturbineIconNG01_55);
  938. this.pnlLine.Controls.Add(this.windturbineIconNG01_53);
  939. this.pnlLine.Controls.Add(this.windturbineIconNG01_47);
  940. this.pnlLine.Controls.Add(this.windturbineIconNG01_51);
  941. this.pnlLine.Controls.Add(this.windturbineIconNG01_48);
  942. this.pnlLine.Controls.Add(this.windturbineIconNG01_52);
  943. this.pnlLine.Controls.Add(this.windturbineIconNG01_49);
  944. this.pnlLine.Controls.Add(this.windturbineIconNG01_46);
  945. this.pnlLine.Controls.Add(this.windturbineIconNG01_45);
  946. this.pnlLine.Controls.Add(this.windturbineIconNG01_44);
  947. this.pnlLine.Controls.Add(this.windturbineIconNG01_43);
  948. this.pnlLine.Controls.Add(this.windturbineIconNG01_42);
  949. this.pnlLine.Controls.Add(this.windturbineIconNG01_41);
  950. this.pnlLine.Controls.Add(this.windturbineIconNG01_40);
  951. this.pnlLine.Controls.Add(this.windturbineIconNG01_39);
  952. this.pnlLine.Controls.Add(this.windturbineIconNG01_38);
  953. this.pnlLine.Controls.Add(this.windturbineIconNG01_37);
  954. this.pnlLine.Controls.Add(this.windturbineIconNG01_36);
  955. this.pnlLine.Controls.Add(this.windturbineIconNG01_35);
  956. this.pnlLine.Controls.Add(this.windturbineIconNG01_34);
  957. this.pnlLine.Controls.Add(this.windturbineIconNG01_23);
  958. this.pnlLine.Controls.Add(this.windturbineIconNG01_12);
  959. this.pnlLine.Controls.Add(this.windturbineIconNG01_13);
  960. this.pnlLine.Controls.Add(this.windturbineIconNG01_14);
  961. this.pnlLine.Controls.Add(this.windturbineIconNG01_15);
  962. this.pnlLine.Controls.Add(this.windturbineIconNG01_16);
  963. this.pnlLine.Controls.Add(this.windturbineIconNG01_19);
  964. this.pnlLine.Controls.Add(this.windturbineIconNG01_20);
  965. this.pnlLine.Controls.Add(this.windturbineIconNG01_17);
  966. this.pnlLine.Controls.Add(this.windturbineIconNG01_18);
  967. this.pnlLine.Controls.Add(this.windturbineIconNG01_21);
  968. this.pnlLine.Controls.Add(this.windturbineIconNG01_22);
  969. this.pnlLine.Controls.Add(this.windturbineIconNG01_06);
  970. this.pnlLine.Controls.Add(this.windturbineIconNG01_10);
  971. this.pnlLine.Controls.Add(this.windturbineIconNG01_11);
  972. this.pnlLine.Controls.Add(this.windturbineIconNG01_09);
  973. this.pnlLine.Controls.Add(this.windturbineIconNG01_03);
  974. this.pnlLine.Controls.Add(this.windturbineIconNG01_07);
  975. this.pnlLine.Controls.Add(this.windturbineIconNG01_04);
  976. this.pnlLine.Controls.Add(this.windturbineIconNG01_08);
  977. this.pnlLine.Controls.Add(this.windturbineIconNG01_05);
  978. this.pnlLine.Controls.Add(this.windturbineIconNG01_02);
  979. this.pnlLine.Controls.Add(this.windturbineIconNG01_01);
  980. this.pnlLine.Dock = System.Windows.Forms.DockStyle.Fill;
  981. this.pnlLine.Location = new System.Drawing.Point(0, 230);
  982. this.pnlLine.Name = "pnlLine";
  983. this.pnlLine.Size = new System.Drawing.Size(1920, 730);
  984. this.pnlLine.TabIndex = 1;
  985. //
  986. // windturbineIconNG01_89
  987. //
  988. this.windturbineIconNG01_89.BackColor = System.Drawing.Color.Transparent;
  989. this.windturbineIconNG01_89.Location = new System.Drawing.Point(1330, 4);
  990. this.windturbineIconNG01_89.Name = "windturbineIconNG01_89";
  991. this.windturbineIconNG01_89.Size = new System.Drawing.Size(50, 85);
  992. this.windturbineIconNG01_89.Status = 1;
  993. this.windturbineIconNG01_89.TabIndex = 164;
  994. this.windturbineIconNG01_89.WindturbineId = "NG01_89";
  995. //
  996. // windturbineIconNG01_88
  997. //
  998. this.windturbineIconNG01_88.BackColor = System.Drawing.Color.Transparent;
  999. this.windturbineIconNG01_88.Location = new System.Drawing.Point(1262, 4);
  1000. this.windturbineIconNG01_88.Name = "windturbineIconNG01_88";
  1001. this.windturbineIconNG01_88.Size = new System.Drawing.Size(50, 85);
  1002. this.windturbineIconNG01_88.Status = 1;
  1003. this.windturbineIconNG01_88.TabIndex = 163;
  1004. this.windturbineIconNG01_88.WindturbineId = "NG01_88";
  1005. //
  1006. // windturbineIconNG01_87
  1007. //
  1008. this.windturbineIconNG01_87.BackColor = System.Drawing.Color.Transparent;
  1009. this.windturbineIconNG01_87.Location = new System.Drawing.Point(1194, 4);
  1010. this.windturbineIconNG01_87.Name = "windturbineIconNG01_87";
  1011. this.windturbineIconNG01_87.Size = new System.Drawing.Size(50, 85);
  1012. this.windturbineIconNG01_87.Status = 1;
  1013. this.windturbineIconNG01_87.TabIndex = 162;
  1014. this.windturbineIconNG01_87.WindturbineId = "NG01_87";
  1015. //
  1016. // windturbineIconNG01_86
  1017. //
  1018. this.windturbineIconNG01_86.BackColor = System.Drawing.Color.Transparent;
  1019. this.windturbineIconNG01_86.Location = new System.Drawing.Point(1126, 4);
  1020. this.windturbineIconNG01_86.Name = "windturbineIconNG01_86";
  1021. this.windturbineIconNG01_86.Size = new System.Drawing.Size(50, 85);
  1022. this.windturbineIconNG01_86.Status = 1;
  1023. this.windturbineIconNG01_86.TabIndex = 161;
  1024. this.windturbineIconNG01_86.WindturbineId = "NG01_86";
  1025. //
  1026. // windturbineIconNG01_85
  1027. //
  1028. this.windturbineIconNG01_85.BackColor = System.Drawing.Color.Transparent;
  1029. this.windturbineIconNG01_85.Location = new System.Drawing.Point(1058, 4);
  1030. this.windturbineIconNG01_85.Name = "windturbineIconNG01_85";
  1031. this.windturbineIconNG01_85.Size = new System.Drawing.Size(50, 85);
  1032. this.windturbineIconNG01_85.Status = 1;
  1033. this.windturbineIconNG01_85.TabIndex = 160;
  1034. this.windturbineIconNG01_85.WindturbineId = "NG01_85";
  1035. //
  1036. // windturbineIconNG01_84
  1037. //
  1038. this.windturbineIconNG01_84.BackColor = System.Drawing.Color.Transparent;
  1039. this.windturbineIconNG01_84.Location = new System.Drawing.Point(990, 4);
  1040. this.windturbineIconNG01_84.Name = "windturbineIconNG01_84";
  1041. this.windturbineIconNG01_84.Size = new System.Drawing.Size(50, 85);
  1042. this.windturbineIconNG01_84.Status = 1;
  1043. this.windturbineIconNG01_84.TabIndex = 159;
  1044. this.windturbineIconNG01_84.WindturbineId = "NG01_84";
  1045. //
  1046. // windturbineIconNG01_83
  1047. //
  1048. this.windturbineIconNG01_83.BackColor = System.Drawing.Color.Transparent;
  1049. this.windturbineIconNG01_83.Location = new System.Drawing.Point(922, 4);
  1050. this.windturbineIconNG01_83.Name = "windturbineIconNG01_83";
  1051. this.windturbineIconNG01_83.Size = new System.Drawing.Size(50, 85);
  1052. this.windturbineIconNG01_83.Status = 1;
  1053. this.windturbineIconNG01_83.TabIndex = 158;
  1054. this.windturbineIconNG01_83.WindturbineId = "NG01_83";
  1055. //
  1056. // windturbineIconNG01_82
  1057. //
  1058. this.windturbineIconNG01_82.BackColor = System.Drawing.Color.Transparent;
  1059. this.windturbineIconNG01_82.Location = new System.Drawing.Point(854, 4);
  1060. this.windturbineIconNG01_82.Name = "windturbineIconNG01_82";
  1061. this.windturbineIconNG01_82.Size = new System.Drawing.Size(50, 85);
  1062. this.windturbineIconNG01_82.Status = 1;
  1063. this.windturbineIconNG01_82.TabIndex = 157;
  1064. this.windturbineIconNG01_82.WindturbineId = "NG01_82";
  1065. //
  1066. // windturbineIconNG01_81
  1067. //
  1068. this.windturbineIconNG01_81.BackColor = System.Drawing.Color.Transparent;
  1069. this.windturbineIconNG01_81.Location = new System.Drawing.Point(786, 4);
  1070. this.windturbineIconNG01_81.Name = "windturbineIconNG01_81";
  1071. this.windturbineIconNG01_81.Size = new System.Drawing.Size(50, 85);
  1072. this.windturbineIconNG01_81.Status = 1;
  1073. this.windturbineIconNG01_81.TabIndex = 156;
  1074. this.windturbineIconNG01_81.WindturbineId = "NG01_81";
  1075. //
  1076. // windturbineIconNG01_80
  1077. //
  1078. this.windturbineIconNG01_80.BackColor = System.Drawing.Color.Transparent;
  1079. this.windturbineIconNG01_80.Location = new System.Drawing.Point(718, 4);
  1080. this.windturbineIconNG01_80.Name = "windturbineIconNG01_80";
  1081. this.windturbineIconNG01_80.Size = new System.Drawing.Size(50, 85);
  1082. this.windturbineIconNG01_80.Status = 1;
  1083. this.windturbineIconNG01_80.TabIndex = 155;
  1084. this.windturbineIconNG01_80.WindturbineId = "NG01_80";
  1085. //
  1086. // windturbineIconNG01_33
  1087. //
  1088. this.windturbineIconNG01_33.BackColor = System.Drawing.Color.Transparent;
  1089. this.windturbineIconNG01_33.Location = new System.Drawing.Point(1330, 249);
  1090. this.windturbineIconNG01_33.Name = "windturbineIconNG01_33";
  1091. this.windturbineIconNG01_33.Size = new System.Drawing.Size(50, 85);
  1092. this.windturbineIconNG01_33.Status = 1;
  1093. this.windturbineIconNG01_33.TabIndex = 110;
  1094. this.windturbineIconNG01_33.WindturbineId = "NG01_33";
  1095. //
  1096. // windturbineIconNG01_32
  1097. //
  1098. this.windturbineIconNG01_32.BackColor = System.Drawing.Color.Transparent;
  1099. this.windturbineIconNG01_32.Location = new System.Drawing.Point(1262, 249);
  1100. this.windturbineIconNG01_32.Name = "windturbineIconNG01_32";
  1101. this.windturbineIconNG01_32.Size = new System.Drawing.Size(50, 85);
  1102. this.windturbineIconNG01_32.Status = 1;
  1103. this.windturbineIconNG01_32.TabIndex = 109;
  1104. this.windturbineIconNG01_32.WindturbineId = "NG01_32";
  1105. //
  1106. // windturbineIconNG01_31
  1107. //
  1108. this.windturbineIconNG01_31.BackColor = System.Drawing.Color.Transparent;
  1109. this.windturbineIconNG01_31.Location = new System.Drawing.Point(1194, 249);
  1110. this.windturbineIconNG01_31.Name = "windturbineIconNG01_31";
  1111. this.windturbineIconNG01_31.Size = new System.Drawing.Size(50, 85);
  1112. this.windturbineIconNG01_31.Status = 1;
  1113. this.windturbineIconNG01_31.TabIndex = 108;
  1114. this.windturbineIconNG01_31.WindturbineId = "NG01_31";
  1115. //
  1116. // windturbineIconNG01_30
  1117. //
  1118. this.windturbineIconNG01_30.BackColor = System.Drawing.Color.Transparent;
  1119. this.windturbineIconNG01_30.Location = new System.Drawing.Point(1126, 249);
  1120. this.windturbineIconNG01_30.Name = "windturbineIconNG01_30";
  1121. this.windturbineIconNG01_30.Size = new System.Drawing.Size(50, 85);
  1122. this.windturbineIconNG01_30.Status = 1;
  1123. this.windturbineIconNG01_30.TabIndex = 107;
  1124. this.windturbineIconNG01_30.WindturbineId = "NG01_30";
  1125. //
  1126. // windturbineIconNG01_29
  1127. //
  1128. this.windturbineIconNG01_29.BackColor = System.Drawing.Color.Transparent;
  1129. this.windturbineIconNG01_29.Location = new System.Drawing.Point(1058, 249);
  1130. this.windturbineIconNG01_29.Name = "windturbineIconNG01_29";
  1131. this.windturbineIconNG01_29.Size = new System.Drawing.Size(50, 85);
  1132. this.windturbineIconNG01_29.Status = 1;
  1133. this.windturbineIconNG01_29.TabIndex = 106;
  1134. this.windturbineIconNG01_29.WindturbineId = "NG01_29";
  1135. //
  1136. // windturbineIconNG01_28
  1137. //
  1138. this.windturbineIconNG01_28.BackColor = System.Drawing.Color.Transparent;
  1139. this.windturbineIconNG01_28.Location = new System.Drawing.Point(990, 249);
  1140. this.windturbineIconNG01_28.Name = "windturbineIconNG01_28";
  1141. this.windturbineIconNG01_28.Size = new System.Drawing.Size(50, 85);
  1142. this.windturbineIconNG01_28.Status = 1;
  1143. this.windturbineIconNG01_28.TabIndex = 105;
  1144. this.windturbineIconNG01_28.WindturbineId = "NG01_28";
  1145. //
  1146. // windturbineIconNG01_27
  1147. //
  1148. this.windturbineIconNG01_27.BackColor = System.Drawing.Color.Transparent;
  1149. this.windturbineIconNG01_27.Location = new System.Drawing.Point(922, 249);
  1150. this.windturbineIconNG01_27.Name = "windturbineIconNG01_27";
  1151. this.windturbineIconNG01_27.Size = new System.Drawing.Size(50, 85);
  1152. this.windturbineIconNG01_27.Status = 1;
  1153. this.windturbineIconNG01_27.TabIndex = 104;
  1154. this.windturbineIconNG01_27.WindturbineId = "NG01_27";
  1155. //
  1156. // windturbineIconNG01_26
  1157. //
  1158. this.windturbineIconNG01_26.BackColor = System.Drawing.Color.Transparent;
  1159. this.windturbineIconNG01_26.Location = new System.Drawing.Point(854, 249);
  1160. this.windturbineIconNG01_26.Name = "windturbineIconNG01_26";
  1161. this.windturbineIconNG01_26.Size = new System.Drawing.Size(50, 85);
  1162. this.windturbineIconNG01_26.Status = 1;
  1163. this.windturbineIconNG01_26.TabIndex = 103;
  1164. this.windturbineIconNG01_26.WindturbineId = "NG01_26";
  1165. //
  1166. // windturbineIconNG01_25
  1167. //
  1168. this.windturbineIconNG01_25.BackColor = System.Drawing.Color.Transparent;
  1169. this.windturbineIconNG01_25.Location = new System.Drawing.Point(786, 249);
  1170. this.windturbineIconNG01_25.Name = "windturbineIconNG01_25";
  1171. this.windturbineIconNG01_25.Size = new System.Drawing.Size(50, 85);
  1172. this.windturbineIconNG01_25.Status = 1;
  1173. this.windturbineIconNG01_25.TabIndex = 102;
  1174. this.windturbineIconNG01_25.WindturbineId = "NG01_25";
  1175. //
  1176. // windturbineIconNG01_24
  1177. //
  1178. this.windturbineIconNG01_24.BackColor = System.Drawing.Color.Transparent;
  1179. this.windturbineIconNG01_24.Location = new System.Drawing.Point(718, 249);
  1180. this.windturbineIconNG01_24.Name = "windturbineIconNG01_24";
  1181. this.windturbineIconNG01_24.Size = new System.Drawing.Size(50, 85);
  1182. this.windturbineIconNG01_24.Status = 1;
  1183. this.windturbineIconNG01_24.TabIndex = 101;
  1184. this.windturbineIconNG01_24.WindturbineId = "NG01_24";
  1185. //
  1186. // windturbineIconNG01_99
  1187. //
  1188. this.windturbineIconNG01_99.BackColor = System.Drawing.Color.Transparent;
  1189. this.windturbineIconNG01_99.Location = new System.Drawing.Point(1330, 84);
  1190. this.windturbineIconNG01_99.Name = "windturbineIconNG01_99";
  1191. this.windturbineIconNG01_99.Size = new System.Drawing.Size(50, 85);
  1192. this.windturbineIconNG01_99.Status = 1;
  1193. this.windturbineIconNG01_99.TabIndex = 174;
  1194. this.windturbineIconNG01_99.WindturbineId = "NG01_99";
  1195. //
  1196. // windturbineIconNG01_98
  1197. //
  1198. this.windturbineIconNG01_98.BackColor = System.Drawing.Color.Transparent;
  1199. this.windturbineIconNG01_98.Location = new System.Drawing.Point(1262, 84);
  1200. this.windturbineIconNG01_98.Name = "windturbineIconNG01_98";
  1201. this.windturbineIconNG01_98.Size = new System.Drawing.Size(50, 85);
  1202. this.windturbineIconNG01_98.Status = 1;
  1203. this.windturbineIconNG01_98.TabIndex = 173;
  1204. this.windturbineIconNG01_98.WindturbineId = "NG01_98";
  1205. //
  1206. // windturbineIconNG01_97
  1207. //
  1208. this.windturbineIconNG01_97.BackColor = System.Drawing.Color.Transparent;
  1209. this.windturbineIconNG01_97.Location = new System.Drawing.Point(1194, 84);
  1210. this.windturbineIconNG01_97.Name = "windturbineIconNG01_97";
  1211. this.windturbineIconNG01_97.Size = new System.Drawing.Size(50, 85);
  1212. this.windturbineIconNG01_97.Status = 1;
  1213. this.windturbineIconNG01_97.TabIndex = 172;
  1214. this.windturbineIconNG01_97.WindturbineId = "NG01_97";
  1215. //
  1216. // windturbineIconNG01_96
  1217. //
  1218. this.windturbineIconNG01_96.BackColor = System.Drawing.Color.Transparent;
  1219. this.windturbineIconNG01_96.Location = new System.Drawing.Point(1126, 84);
  1220. this.windturbineIconNG01_96.Name = "windturbineIconNG01_96";
  1221. this.windturbineIconNG01_96.Size = new System.Drawing.Size(50, 85);
  1222. this.windturbineIconNG01_96.Status = 1;
  1223. this.windturbineIconNG01_96.TabIndex = 171;
  1224. this.windturbineIconNG01_96.WindturbineId = "NG01_96";
  1225. //
  1226. // windturbineIconNG01_95
  1227. //
  1228. this.windturbineIconNG01_95.BackColor = System.Drawing.Color.Transparent;
  1229. this.windturbineIconNG01_95.Location = new System.Drawing.Point(1058, 84);
  1230. this.windturbineIconNG01_95.Name = "windturbineIconNG01_95";
  1231. this.windturbineIconNG01_95.Size = new System.Drawing.Size(50, 85);
  1232. this.windturbineIconNG01_95.Status = 1;
  1233. this.windturbineIconNG01_95.TabIndex = 170;
  1234. this.windturbineIconNG01_95.WindturbineId = "NG01_95";
  1235. //
  1236. // windturbineIconNG01_94
  1237. //
  1238. this.windturbineIconNG01_94.BackColor = System.Drawing.Color.Transparent;
  1239. this.windturbineIconNG01_94.Location = new System.Drawing.Point(990, 84);
  1240. this.windturbineIconNG01_94.Name = "windturbineIconNG01_94";
  1241. this.windturbineIconNG01_94.Size = new System.Drawing.Size(50, 85);
  1242. this.windturbineIconNG01_94.Status = 1;
  1243. this.windturbineIconNG01_94.TabIndex = 169;
  1244. this.windturbineIconNG01_94.WindturbineId = "NG01_94";
  1245. //
  1246. // windturbineIconNG01_93
  1247. //
  1248. this.windturbineIconNG01_93.BackColor = System.Drawing.Color.Transparent;
  1249. this.windturbineIconNG01_93.Location = new System.Drawing.Point(922, 84);
  1250. this.windturbineIconNG01_93.Name = "windturbineIconNG01_93";
  1251. this.windturbineIconNG01_93.Size = new System.Drawing.Size(50, 85);
  1252. this.windturbineIconNG01_93.Status = 1;
  1253. this.windturbineIconNG01_93.TabIndex = 168;
  1254. this.windturbineIconNG01_93.WindturbineId = "NG01_93";
  1255. //
  1256. // windturbineIconNG01_92
  1257. //
  1258. this.windturbineIconNG01_92.BackColor = System.Drawing.Color.Transparent;
  1259. this.windturbineIconNG01_92.Location = new System.Drawing.Point(854, 84);
  1260. this.windturbineIconNG01_92.Name = "windturbineIconNG01_92";
  1261. this.windturbineIconNG01_92.Size = new System.Drawing.Size(50, 85);
  1262. this.windturbineIconNG01_92.Status = 1;
  1263. this.windturbineIconNG01_92.TabIndex = 167;
  1264. this.windturbineIconNG01_92.WindturbineId = "NG01_92";
  1265. //
  1266. // windturbineIconNG01_91
  1267. //
  1268. this.windturbineIconNG01_91.BackColor = System.Drawing.Color.Transparent;
  1269. this.windturbineIconNG01_91.Location = new System.Drawing.Point(786, 84);
  1270. this.windturbineIconNG01_91.Name = "windturbineIconNG01_91";
  1271. this.windturbineIconNG01_91.Size = new System.Drawing.Size(50, 85);
  1272. this.windturbineIconNG01_91.Status = 1;
  1273. this.windturbineIconNG01_91.TabIndex = 166;
  1274. this.windturbineIconNG01_91.WindturbineId = "NG01_91";
  1275. //
  1276. // windturbineIconNG01_90
  1277. //
  1278. this.windturbineIconNG01_90.BackColor = System.Drawing.Color.Transparent;
  1279. this.windturbineIconNG01_90.Location = new System.Drawing.Point(718, 84);
  1280. this.windturbineIconNG01_90.Name = "windturbineIconNG01_90";
  1281. this.windturbineIconNG01_90.Size = new System.Drawing.Size(50, 85);
  1282. this.windturbineIconNG01_90.Status = 1;
  1283. this.windturbineIconNG01_90.TabIndex = 165;
  1284. this.windturbineIconNG01_90.WindturbineId = "NG01_90";
  1285. //
  1286. // windturbineIconNG01_73
  1287. //
  1288. this.windturbineIconNG01_73.BackColor = System.Drawing.Color.Transparent;
  1289. this.windturbineIconNG01_73.Location = new System.Drawing.Point(1058, 325);
  1290. this.windturbineIconNG01_73.Name = "windturbineIconNG01_73";
  1291. this.windturbineIconNG01_73.Size = new System.Drawing.Size(50, 85);
  1292. this.windturbineIconNG01_73.Status = 1;
  1293. this.windturbineIconNG01_73.TabIndex = 154;
  1294. this.windturbineIconNG01_73.WindturbineId = "NG01_73";
  1295. //
  1296. // windturbineIconNG01_77
  1297. //
  1298. this.windturbineIconNG01_77.BackColor = System.Drawing.Color.Transparent;
  1299. this.windturbineIconNG01_77.Location = new System.Drawing.Point(1330, 325);
  1300. this.windturbineIconNG01_77.Name = "windturbineIconNG01_77";
  1301. this.windturbineIconNG01_77.Size = new System.Drawing.Size(50, 85);
  1302. this.windturbineIconNG01_77.Status = 1;
  1303. this.windturbineIconNG01_77.TabIndex = 153;
  1304. this.windturbineIconNG01_77.WindturbineId = "NG01_77";
  1305. //
  1306. // windturbineIconNG01_56
  1307. //
  1308. this.windturbineIconNG01_56.BackColor = System.Drawing.Color.Transparent;
  1309. this.windturbineIconNG01_56.Location = new System.Drawing.Point(1467, 325);
  1310. this.windturbineIconNG01_56.Name = "windturbineIconNG01_56";
  1311. this.windturbineIconNG01_56.Size = new System.Drawing.Size(50, 85);
  1312. this.windturbineIconNG01_56.Status = 1;
  1313. this.windturbineIconNG01_56.TabIndex = 152;
  1314. this.windturbineIconNG01_56.WindturbineId = "NG01_56";
  1315. //
  1316. // windturbineIconNG01_78
  1317. //
  1318. this.windturbineIconNG01_78.BackColor = System.Drawing.Color.Transparent;
  1319. this.windturbineIconNG01_78.Location = new System.Drawing.Point(1398, 325);
  1320. this.windturbineIconNG01_78.Name = "windturbineIconNG01_78";
  1321. this.windturbineIconNG01_78.Size = new System.Drawing.Size(50, 85);
  1322. this.windturbineIconNG01_78.Status = 1;
  1323. this.windturbineIconNG01_78.TabIndex = 152;
  1324. this.windturbineIconNG01_78.WindturbineId = "NG01_78";
  1325. //
  1326. // windturbineIconNG01_76
  1327. //
  1328. this.windturbineIconNG01_76.BackColor = System.Drawing.Color.Transparent;
  1329. this.windturbineIconNG01_76.Location = new System.Drawing.Point(1262, 325);
  1330. this.windturbineIconNG01_76.Name = "windturbineIconNG01_76";
  1331. this.windturbineIconNG01_76.Size = new System.Drawing.Size(50, 85);
  1332. this.windturbineIconNG01_76.Status = 1;
  1333. this.windturbineIconNG01_76.TabIndex = 151;
  1334. this.windturbineIconNG01_76.WindturbineId = "NG01_76";
  1335. //
  1336. // windturbineIconNG01_70
  1337. //
  1338. this.windturbineIconNG01_70.BackColor = System.Drawing.Color.Transparent;
  1339. this.windturbineIconNG01_70.Location = new System.Drawing.Point(854, 325);
  1340. this.windturbineIconNG01_70.Name = "windturbineIconNG01_70";
  1341. this.windturbineIconNG01_70.Size = new System.Drawing.Size(50, 85);
  1342. this.windturbineIconNG01_70.Status = 1;
  1343. this.windturbineIconNG01_70.TabIndex = 150;
  1344. this.windturbineIconNG01_70.WindturbineId = "NG01_70";
  1345. //
  1346. // windturbineIconNG01_74
  1347. //
  1348. this.windturbineIconNG01_74.BackColor = System.Drawing.Color.Transparent;
  1349. this.windturbineIconNG01_74.Location = new System.Drawing.Point(1126, 325);
  1350. this.windturbineIconNG01_74.Name = "windturbineIconNG01_74";
  1351. this.windturbineIconNG01_74.Size = new System.Drawing.Size(50, 85);
  1352. this.windturbineIconNG01_74.Status = 1;
  1353. this.windturbineIconNG01_74.TabIndex = 149;
  1354. this.windturbineIconNG01_74.WindturbineId = "NG01_74";
  1355. //
  1356. // windturbineIconNG01_71
  1357. //
  1358. this.windturbineIconNG01_71.BackColor = System.Drawing.Color.Transparent;
  1359. this.windturbineIconNG01_71.Location = new System.Drawing.Point(922, 325);
  1360. this.windturbineIconNG01_71.Name = "windturbineIconNG01_71";
  1361. this.windturbineIconNG01_71.Size = new System.Drawing.Size(50, 85);
  1362. this.windturbineIconNG01_71.Status = 1;
  1363. this.windturbineIconNG01_71.TabIndex = 148;
  1364. this.windturbineIconNG01_71.WindturbineId = "NG01_71";
  1365. //
  1366. // windturbineIconNG01_75
  1367. //
  1368. this.windturbineIconNG01_75.BackColor = System.Drawing.Color.Transparent;
  1369. this.windturbineIconNG01_75.Location = new System.Drawing.Point(1194, 325);
  1370. this.windturbineIconNG01_75.Name = "windturbineIconNG01_75";
  1371. this.windturbineIconNG01_75.Size = new System.Drawing.Size(50, 85);
  1372. this.windturbineIconNG01_75.Status = 1;
  1373. this.windturbineIconNG01_75.TabIndex = 147;
  1374. this.windturbineIconNG01_75.WindturbineId = "NG01_75";
  1375. //
  1376. // windturbineIconNG01_72
  1377. //
  1378. this.windturbineIconNG01_72.BackColor = System.Drawing.Color.Transparent;
  1379. this.windturbineIconNG01_72.Location = new System.Drawing.Point(990, 325);
  1380. this.windturbineIconNG01_72.Name = "windturbineIconNG01_72";
  1381. this.windturbineIconNG01_72.Size = new System.Drawing.Size(50, 85);
  1382. this.windturbineIconNG01_72.Status = 1;
  1383. this.windturbineIconNG01_72.TabIndex = 146;
  1384. this.windturbineIconNG01_72.WindturbineId = "NG01_72";
  1385. //
  1386. // windturbineIconNG01_69
  1387. //
  1388. this.windturbineIconNG01_69.BackColor = System.Drawing.Color.Transparent;
  1389. this.windturbineIconNG01_69.Location = new System.Drawing.Point(786, 325);
  1390. this.windturbineIconNG01_69.Name = "windturbineIconNG01_69";
  1391. this.windturbineIconNG01_69.Size = new System.Drawing.Size(50, 85);
  1392. this.windturbineIconNG01_69.Status = 1;
  1393. this.windturbineIconNG01_69.TabIndex = 145;
  1394. this.windturbineIconNG01_69.WindturbineId = "NG01_69";
  1395. //
  1396. // windturbineIconNG01_68
  1397. //
  1398. this.windturbineIconNG01_68.BackColor = System.Drawing.Color.Transparent;
  1399. this.windturbineIconNG01_68.Location = new System.Drawing.Point(718, 325);
  1400. this.windturbineIconNG01_68.Name = "windturbineIconNG01_68";
  1401. this.windturbineIconNG01_68.Size = new System.Drawing.Size(50, 85);
  1402. this.windturbineIconNG01_68.Status = 1;
  1403. this.windturbineIconNG01_68.TabIndex = 144;
  1404. this.windturbineIconNG01_68.WindturbineId = "NG01_68";
  1405. //
  1406. // windturbineIconNG01_62
  1407. //
  1408. this.windturbineIconNG01_62.BackColor = System.Drawing.Color.Transparent;
  1409. this.windturbineIconNG01_62.Location = new System.Drawing.Point(1058, 407);
  1410. this.windturbineIconNG01_62.Name = "windturbineIconNG01_62";
  1411. this.windturbineIconNG01_62.Size = new System.Drawing.Size(50, 85);
  1412. this.windturbineIconNG01_62.Status = 1;
  1413. this.windturbineIconNG01_62.TabIndex = 143;
  1414. this.windturbineIconNG01_62.WindturbineId = "NG01_62";
  1415. //
  1416. // windturbineIconNG01_67
  1417. //
  1418. this.windturbineIconNG01_67.BackColor = System.Drawing.Color.Transparent;
  1419. this.windturbineIconNG01_67.Location = new System.Drawing.Point(1398, 407);
  1420. this.windturbineIconNG01_67.Name = "windturbineIconNG01_67";
  1421. this.windturbineIconNG01_67.Size = new System.Drawing.Size(50, 85);
  1422. this.windturbineIconNG01_67.Status = 1;
  1423. this.windturbineIconNG01_67.TabIndex = 142;
  1424. this.windturbineIconNG01_67.WindturbineId = "NG01_67";
  1425. //
  1426. // windturbineIconNG01_66
  1427. //
  1428. this.windturbineIconNG01_66.BackColor = System.Drawing.Color.Transparent;
  1429. this.windturbineIconNG01_66.Location = new System.Drawing.Point(1330, 407);
  1430. this.windturbineIconNG01_66.Name = "windturbineIconNG01_66";
  1431. this.windturbineIconNG01_66.Size = new System.Drawing.Size(50, 85);
  1432. this.windturbineIconNG01_66.Status = 1;
  1433. this.windturbineIconNG01_66.TabIndex = 142;
  1434. this.windturbineIconNG01_66.WindturbineId = "NG01_66";
  1435. //
  1436. // windturbineIconNG01_79
  1437. //
  1438. this.windturbineIconNG01_79.BackColor = System.Drawing.Color.Transparent;
  1439. this.windturbineIconNG01_79.Location = new System.Drawing.Point(1467, 407);
  1440. this.windturbineIconNG01_79.Name = "windturbineIconNG01_79";
  1441. this.windturbineIconNG01_79.Size = new System.Drawing.Size(50, 85);
  1442. this.windturbineIconNG01_79.Status = 1;
  1443. this.windturbineIconNG01_79.TabIndex = 141;
  1444. this.windturbineIconNG01_79.WindturbineId = "NG01_79";
  1445. //
  1446. // windturbineIconNG01_65
  1447. //
  1448. this.windturbineIconNG01_65.BackColor = System.Drawing.Color.Transparent;
  1449. this.windturbineIconNG01_65.Location = new System.Drawing.Point(1262, 407);
  1450. this.windturbineIconNG01_65.Name = "windturbineIconNG01_65";
  1451. this.windturbineIconNG01_65.Size = new System.Drawing.Size(50, 85);
  1452. this.windturbineIconNG01_65.Status = 1;
  1453. this.windturbineIconNG01_65.TabIndex = 140;
  1454. this.windturbineIconNG01_65.WindturbineId = "NG01_65";
  1455. //
  1456. // windturbineIconNG01_59
  1457. //
  1458. this.windturbineIconNG01_59.BackColor = System.Drawing.Color.Transparent;
  1459. this.windturbineIconNG01_59.Location = new System.Drawing.Point(854, 407);
  1460. this.windturbineIconNG01_59.Name = "windturbineIconNG01_59";
  1461. this.windturbineIconNG01_59.Size = new System.Drawing.Size(50, 85);
  1462. this.windturbineIconNG01_59.Status = 1;
  1463. this.windturbineIconNG01_59.TabIndex = 139;
  1464. this.windturbineIconNG01_59.WindturbineId = "NG01_59";
  1465. //
  1466. // windturbineIconNG01_63
  1467. //
  1468. this.windturbineIconNG01_63.BackColor = System.Drawing.Color.Transparent;
  1469. this.windturbineIconNG01_63.Location = new System.Drawing.Point(1126, 407);
  1470. this.windturbineIconNG01_63.Name = "windturbineIconNG01_63";
  1471. this.windturbineIconNG01_63.Size = new System.Drawing.Size(50, 85);
  1472. this.windturbineIconNG01_63.Status = 1;
  1473. this.windturbineIconNG01_63.TabIndex = 138;
  1474. this.windturbineIconNG01_63.WindturbineId = "NG01_63";
  1475. //
  1476. // windturbineIconNG01_60
  1477. //
  1478. this.windturbineIconNG01_60.BackColor = System.Drawing.Color.Transparent;
  1479. this.windturbineIconNG01_60.Location = new System.Drawing.Point(922, 407);
  1480. this.windturbineIconNG01_60.Name = "windturbineIconNG01_60";
  1481. this.windturbineIconNG01_60.Size = new System.Drawing.Size(50, 85);
  1482. this.windturbineIconNG01_60.Status = 1;
  1483. this.windturbineIconNG01_60.TabIndex = 137;
  1484. this.windturbineIconNG01_60.WindturbineId = "NG01_60";
  1485. //
  1486. // windturbineIconNG01_64
  1487. //
  1488. this.windturbineIconNG01_64.BackColor = System.Drawing.Color.Transparent;
  1489. this.windturbineIconNG01_64.Location = new System.Drawing.Point(1194, 407);
  1490. this.windturbineIconNG01_64.Name = "windturbineIconNG01_64";
  1491. this.windturbineIconNG01_64.Size = new System.Drawing.Size(50, 85);
  1492. this.windturbineIconNG01_64.Status = 1;
  1493. this.windturbineIconNG01_64.TabIndex = 136;
  1494. this.windturbineIconNG01_64.WindturbineId = "NG01_64";
  1495. //
  1496. // windturbineIconNG01_61
  1497. //
  1498. this.windturbineIconNG01_61.BackColor = System.Drawing.Color.Transparent;
  1499. this.windturbineIconNG01_61.Location = new System.Drawing.Point(990, 407);
  1500. this.windturbineIconNG01_61.Name = "windturbineIconNG01_61";
  1501. this.windturbineIconNG01_61.Size = new System.Drawing.Size(50, 85);
  1502. this.windturbineIconNG01_61.Status = 1;
  1503. this.windturbineIconNG01_61.TabIndex = 135;
  1504. this.windturbineIconNG01_61.WindturbineId = "NG01_61";
  1505. //
  1506. // windturbineIconNG01_58
  1507. //
  1508. this.windturbineIconNG01_58.BackColor = System.Drawing.Color.Transparent;
  1509. this.windturbineIconNG01_58.Location = new System.Drawing.Point(786, 407);
  1510. this.windturbineIconNG01_58.Name = "windturbineIconNG01_58";
  1511. this.windturbineIconNG01_58.Size = new System.Drawing.Size(50, 85);
  1512. this.windturbineIconNG01_58.Status = 1;
  1513. this.windturbineIconNG01_58.TabIndex = 134;
  1514. this.windturbineIconNG01_58.WindturbineId = "NG01_58";
  1515. //
  1516. // windturbineIconNG01_57
  1517. //
  1518. this.windturbineIconNG01_57.BackColor = System.Drawing.Color.Transparent;
  1519. this.windturbineIconNG01_57.Location = new System.Drawing.Point(718, 407);
  1520. this.windturbineIconNG01_57.Name = "windturbineIconNG01_57";
  1521. this.windturbineIconNG01_57.Size = new System.Drawing.Size(50, 85);
  1522. this.windturbineIconNG01_57.Status = 1;
  1523. this.windturbineIconNG01_57.TabIndex = 133;
  1524. this.windturbineIconNG01_57.WindturbineId = "NG01_57";
  1525. //
  1526. // windturbineIconNG01_50
  1527. //
  1528. this.windturbineIconNG01_50.BackColor = System.Drawing.Color.Transparent;
  1529. this.windturbineIconNG01_50.Location = new System.Drawing.Point(1058, 487);
  1530. this.windturbineIconNG01_50.Name = "windturbineIconNG01_50";
  1531. this.windturbineIconNG01_50.Size = new System.Drawing.Size(50, 85);
  1532. this.windturbineIconNG01_50.Status = 1;
  1533. this.windturbineIconNG01_50.TabIndex = 132;
  1534. this.windturbineIconNG01_50.WindturbineId = "NG01_50";
  1535. //
  1536. // windturbineIconNG01_54
  1537. //
  1538. this.windturbineIconNG01_54.BackColor = System.Drawing.Color.Transparent;
  1539. this.windturbineIconNG01_54.Location = new System.Drawing.Point(1330, 487);
  1540. this.windturbineIconNG01_54.Name = "windturbineIconNG01_54";
  1541. this.windturbineIconNG01_54.Size = new System.Drawing.Size(50, 85);
  1542. this.windturbineIconNG01_54.Status = 1;
  1543. this.windturbineIconNG01_54.TabIndex = 131;
  1544. this.windturbineIconNG01_54.WindturbineId = "NG01_54";
  1545. //
  1546. // windturbineIconNG01_55
  1547. //
  1548. this.windturbineIconNG01_55.BackColor = System.Drawing.Color.Transparent;
  1549. this.windturbineIconNG01_55.Location = new System.Drawing.Point(1398, 487);
  1550. this.windturbineIconNG01_55.Name = "windturbineIconNG01_55";
  1551. this.windturbineIconNG01_55.Size = new System.Drawing.Size(50, 85);
  1552. this.windturbineIconNG01_55.Status = 1;
  1553. this.windturbineIconNG01_55.TabIndex = 130;
  1554. this.windturbineIconNG01_55.WindturbineId = "NG01_55";
  1555. //
  1556. // windturbineIconNG01_53
  1557. //
  1558. this.windturbineIconNG01_53.BackColor = System.Drawing.Color.Transparent;
  1559. this.windturbineIconNG01_53.Location = new System.Drawing.Point(1262, 487);
  1560. this.windturbineIconNG01_53.Name = "windturbineIconNG01_53";
  1561. this.windturbineIconNG01_53.Size = new System.Drawing.Size(50, 85);
  1562. this.windturbineIconNG01_53.Status = 1;
  1563. this.windturbineIconNG01_53.TabIndex = 129;
  1564. this.windturbineIconNG01_53.WindturbineId = "NG01_53";
  1565. //
  1566. // windturbineIconNG01_47
  1567. //
  1568. this.windturbineIconNG01_47.BackColor = System.Drawing.Color.Transparent;
  1569. this.windturbineIconNG01_47.Location = new System.Drawing.Point(854, 487);
  1570. this.windturbineIconNG01_47.Name = "windturbineIconNG01_47";
  1571. this.windturbineIconNG01_47.Size = new System.Drawing.Size(50, 85);
  1572. this.windturbineIconNG01_47.Status = 1;
  1573. this.windturbineIconNG01_47.TabIndex = 128;
  1574. this.windturbineIconNG01_47.WindturbineId = "NG01_47";
  1575. //
  1576. // windturbineIconNG01_51
  1577. //
  1578. this.windturbineIconNG01_51.BackColor = System.Drawing.Color.Transparent;
  1579. this.windturbineIconNG01_51.Location = new System.Drawing.Point(1126, 487);
  1580. this.windturbineIconNG01_51.Name = "windturbineIconNG01_51";
  1581. this.windturbineIconNG01_51.Size = new System.Drawing.Size(50, 85);
  1582. this.windturbineIconNG01_51.Status = 1;
  1583. this.windturbineIconNG01_51.TabIndex = 127;
  1584. this.windturbineIconNG01_51.WindturbineId = "NG01_51";
  1585. //
  1586. // windturbineIconNG01_48
  1587. //
  1588. this.windturbineIconNG01_48.BackColor = System.Drawing.Color.Transparent;
  1589. this.windturbineIconNG01_48.Location = new System.Drawing.Point(922, 487);
  1590. this.windturbineIconNG01_48.Name = "windturbineIconNG01_48";
  1591. this.windturbineIconNG01_48.Size = new System.Drawing.Size(50, 85);
  1592. this.windturbineIconNG01_48.Status = 1;
  1593. this.windturbineIconNG01_48.TabIndex = 126;
  1594. this.windturbineIconNG01_48.WindturbineId = "NG01_48";
  1595. //
  1596. // windturbineIconNG01_52
  1597. //
  1598. this.windturbineIconNG01_52.BackColor = System.Drawing.Color.Transparent;
  1599. this.windturbineIconNG01_52.Location = new System.Drawing.Point(1194, 487);
  1600. this.windturbineIconNG01_52.Name = "windturbineIconNG01_52";
  1601. this.windturbineIconNG01_52.Size = new System.Drawing.Size(50, 85);
  1602. this.windturbineIconNG01_52.Status = 1;
  1603. this.windturbineIconNG01_52.TabIndex = 125;
  1604. this.windturbineIconNG01_52.WindturbineId = "NG01_52";
  1605. //
  1606. // windturbineIconNG01_49
  1607. //
  1608. this.windturbineIconNG01_49.BackColor = System.Drawing.Color.Transparent;
  1609. this.windturbineIconNG01_49.Location = new System.Drawing.Point(990, 487);
  1610. this.windturbineIconNG01_49.Name = "windturbineIconNG01_49";
  1611. this.windturbineIconNG01_49.Size = new System.Drawing.Size(50, 85);
  1612. this.windturbineIconNG01_49.Status = 1;
  1613. this.windturbineIconNG01_49.TabIndex = 124;
  1614. this.windturbineIconNG01_49.WindturbineId = "NG01_49";
  1615. //
  1616. // windturbineIconNG01_46
  1617. //
  1618. this.windturbineIconNG01_46.BackColor = System.Drawing.Color.Transparent;
  1619. this.windturbineIconNG01_46.Location = new System.Drawing.Point(786, 487);
  1620. this.windturbineIconNG01_46.Name = "windturbineIconNG01_46";
  1621. this.windturbineIconNG01_46.Size = new System.Drawing.Size(50, 85);
  1622. this.windturbineIconNG01_46.Status = 1;
  1623. this.windturbineIconNG01_46.TabIndex = 123;
  1624. this.windturbineIconNG01_46.WindturbineId = "NG01_46";
  1625. //
  1626. // windturbineIconNG01_45
  1627. //
  1628. this.windturbineIconNG01_45.BackColor = System.Drawing.Color.Transparent;
  1629. this.windturbineIconNG01_45.Location = new System.Drawing.Point(718, 487);
  1630. this.windturbineIconNG01_45.Name = "windturbineIconNG01_45";
  1631. this.windturbineIconNG01_45.Size = new System.Drawing.Size(50, 85);
  1632. this.windturbineIconNG01_45.Status = 1;
  1633. this.windturbineIconNG01_45.TabIndex = 122;
  1634. this.windturbineIconNG01_45.WindturbineId = "NG01_45";
  1635. //
  1636. // windturbineIconNG01_44
  1637. //
  1638. this.windturbineIconNG01_44.BackColor = System.Drawing.Color.Transparent;
  1639. this.windturbineIconNG01_44.Location = new System.Drawing.Point(1398, 167);
  1640. this.windturbineIconNG01_44.Name = "windturbineIconNG01_44";
  1641. this.windturbineIconNG01_44.Size = new System.Drawing.Size(50, 85);
  1642. this.windturbineIconNG01_44.Status = 1;
  1643. this.windturbineIconNG01_44.TabIndex = 121;
  1644. this.windturbineIconNG01_44.WindturbineId = "NG01_44";
  1645. //
  1646. // windturbineIconNG01_43
  1647. //
  1648. this.windturbineIconNG01_43.BackColor = System.Drawing.Color.Transparent;
  1649. this.windturbineIconNG01_43.Location = new System.Drawing.Point(1330, 167);
  1650. this.windturbineIconNG01_43.Name = "windturbineIconNG01_43";
  1651. this.windturbineIconNG01_43.Size = new System.Drawing.Size(50, 85);
  1652. this.windturbineIconNG01_43.Status = 1;
  1653. this.windturbineIconNG01_43.TabIndex = 120;
  1654. this.windturbineIconNG01_43.WindturbineId = "NG01_43";
  1655. //
  1656. // windturbineIconNG01_42
  1657. //
  1658. this.windturbineIconNG01_42.BackColor = System.Drawing.Color.Transparent;
  1659. this.windturbineIconNG01_42.Location = new System.Drawing.Point(1262, 167);
  1660. this.windturbineIconNG01_42.Name = "windturbineIconNG01_42";
  1661. this.windturbineIconNG01_42.Size = new System.Drawing.Size(50, 85);
  1662. this.windturbineIconNG01_42.Status = 1;
  1663. this.windturbineIconNG01_42.TabIndex = 119;
  1664. this.windturbineIconNG01_42.WindturbineId = "NG01_42";
  1665. //
  1666. // windturbineIconNG01_41
  1667. //
  1668. this.windturbineIconNG01_41.BackColor = System.Drawing.Color.Transparent;
  1669. this.windturbineIconNG01_41.Location = new System.Drawing.Point(1194, 167);
  1670. this.windturbineIconNG01_41.Name = "windturbineIconNG01_41";
  1671. this.windturbineIconNG01_41.Size = new System.Drawing.Size(50, 85);
  1672. this.windturbineIconNG01_41.Status = 1;
  1673. this.windturbineIconNG01_41.TabIndex = 118;
  1674. this.windturbineIconNG01_41.WindturbineId = "NG01_41";
  1675. //
  1676. // windturbineIconNG01_40
  1677. //
  1678. this.windturbineIconNG01_40.BackColor = System.Drawing.Color.Transparent;
  1679. this.windturbineIconNG01_40.Location = new System.Drawing.Point(1126, 167);
  1680. this.windturbineIconNG01_40.Name = "windturbineIconNG01_40";
  1681. this.windturbineIconNG01_40.Size = new System.Drawing.Size(50, 85);
  1682. this.windturbineIconNG01_40.Status = 1;
  1683. this.windturbineIconNG01_40.TabIndex = 117;
  1684. this.windturbineIconNG01_40.WindturbineId = "NG01_40";
  1685. //
  1686. // windturbineIconNG01_39
  1687. //
  1688. this.windturbineIconNG01_39.BackColor = System.Drawing.Color.Transparent;
  1689. this.windturbineIconNG01_39.Location = new System.Drawing.Point(1058, 167);
  1690. this.windturbineIconNG01_39.Name = "windturbineIconNG01_39";
  1691. this.windturbineIconNG01_39.Size = new System.Drawing.Size(50, 85);
  1692. this.windturbineIconNG01_39.Status = 1;
  1693. this.windturbineIconNG01_39.TabIndex = 116;
  1694. this.windturbineIconNG01_39.WindturbineId = "NG01_39";
  1695. //
  1696. // windturbineIconNG01_38
  1697. //
  1698. this.windturbineIconNG01_38.BackColor = System.Drawing.Color.Transparent;
  1699. this.windturbineIconNG01_38.Location = new System.Drawing.Point(990, 167);
  1700. this.windturbineIconNG01_38.Name = "windturbineIconNG01_38";
  1701. this.windturbineIconNG01_38.Size = new System.Drawing.Size(50, 85);
  1702. this.windturbineIconNG01_38.Status = 1;
  1703. this.windturbineIconNG01_38.TabIndex = 115;
  1704. this.windturbineIconNG01_38.WindturbineId = "NG01_38";
  1705. //
  1706. // windturbineIconNG01_37
  1707. //
  1708. this.windturbineIconNG01_37.BackColor = System.Drawing.Color.Transparent;
  1709. this.windturbineIconNG01_37.Location = new System.Drawing.Point(922, 167);
  1710. this.windturbineIconNG01_37.Name = "windturbineIconNG01_37";
  1711. this.windturbineIconNG01_37.Size = new System.Drawing.Size(50, 85);
  1712. this.windturbineIconNG01_37.Status = 1;
  1713. this.windturbineIconNG01_37.TabIndex = 114;
  1714. this.windturbineIconNG01_37.WindturbineId = "NG01_37";
  1715. //
  1716. // windturbineIconNG01_36
  1717. //
  1718. this.windturbineIconNG01_36.BackColor = System.Drawing.Color.Transparent;
  1719. this.windturbineIconNG01_36.Location = new System.Drawing.Point(854, 167);
  1720. this.windturbineIconNG01_36.Name = "windturbineIconNG01_36";
  1721. this.windturbineIconNG01_36.Size = new System.Drawing.Size(50, 85);
  1722. this.windturbineIconNG01_36.Status = 1;
  1723. this.windturbineIconNG01_36.TabIndex = 113;
  1724. this.windturbineIconNG01_36.WindturbineId = "NG01_36";
  1725. //
  1726. // windturbineIconNG01_35
  1727. //
  1728. this.windturbineIconNG01_35.BackColor = System.Drawing.Color.Transparent;
  1729. this.windturbineIconNG01_35.Location = new System.Drawing.Point(786, 167);
  1730. this.windturbineIconNG01_35.Name = "windturbineIconNG01_35";
  1731. this.windturbineIconNG01_35.Size = new System.Drawing.Size(50, 85);
  1732. this.windturbineIconNG01_35.Status = 1;
  1733. this.windturbineIconNG01_35.TabIndex = 112;
  1734. this.windturbineIconNG01_35.WindturbineId = "NG01_35";
  1735. //
  1736. // windturbineIconNG01_34
  1737. //
  1738. this.windturbineIconNG01_34.BackColor = System.Drawing.Color.Transparent;
  1739. this.windturbineIconNG01_34.Location = new System.Drawing.Point(718, 167);
  1740. this.windturbineIconNG01_34.Name = "windturbineIconNG01_34";
  1741. this.windturbineIconNG01_34.Size = new System.Drawing.Size(50, 85);
  1742. this.windturbineIconNG01_34.Status = 1;
  1743. this.windturbineIconNG01_34.TabIndex = 111;
  1744. this.windturbineIconNG01_34.WindturbineId = "NG01_34";
  1745. //
  1746. // windturbineIconNG01_23
  1747. //
  1748. this.windturbineIconNG01_23.BackColor = System.Drawing.Color.Transparent;
  1749. this.windturbineIconNG01_23.Location = new System.Drawing.Point(1467, 568);
  1750. this.windturbineIconNG01_23.Name = "windturbineIconNG01_23";
  1751. this.windturbineIconNG01_23.Size = new System.Drawing.Size(50, 85);
  1752. this.windturbineIconNG01_23.Status = 1;
  1753. this.windturbineIconNG01_23.TabIndex = 100;
  1754. this.windturbineIconNG01_23.WindturbineId = "NG01_23";
  1755. //
  1756. // windturbineIconNG01_12
  1757. //
  1758. this.windturbineIconNG01_12.BackColor = System.Drawing.Color.Transparent;
  1759. this.windturbineIconNG01_12.Location = new System.Drawing.Point(718, 568);
  1760. this.windturbineIconNG01_12.Name = "windturbineIconNG01_12";
  1761. this.windturbineIconNG01_12.Size = new System.Drawing.Size(50, 85);
  1762. this.windturbineIconNG01_12.Status = 1;
  1763. this.windturbineIconNG01_12.TabIndex = 99;
  1764. this.windturbineIconNG01_12.WindturbineId = "NG01_12";
  1765. //
  1766. // windturbineIconNG01_13
  1767. //
  1768. this.windturbineIconNG01_13.BackColor = System.Drawing.Color.Transparent;
  1769. this.windturbineIconNG01_13.Location = new System.Drawing.Point(786, 568);
  1770. this.windturbineIconNG01_13.Name = "windturbineIconNG01_13";
  1771. this.windturbineIconNG01_13.Size = new System.Drawing.Size(50, 85);
  1772. this.windturbineIconNG01_13.Status = 1;
  1773. this.windturbineIconNG01_13.TabIndex = 98;
  1774. this.windturbineIconNG01_13.WindturbineId = "NG01_13";
  1775. //
  1776. // windturbineIconNG01_14
  1777. //
  1778. this.windturbineIconNG01_14.BackColor = System.Drawing.Color.Transparent;
  1779. this.windturbineIconNG01_14.Location = new System.Drawing.Point(854, 568);
  1780. this.windturbineIconNG01_14.Name = "windturbineIconNG01_14";
  1781. this.windturbineIconNG01_14.Size = new System.Drawing.Size(50, 85);
  1782. this.windturbineIconNG01_14.Status = 1;
  1783. this.windturbineIconNG01_14.TabIndex = 97;
  1784. this.windturbineIconNG01_14.WindturbineId = "NG01_14";
  1785. //
  1786. // windturbineIconNG01_15
  1787. //
  1788. this.windturbineIconNG01_15.BackColor = System.Drawing.Color.Transparent;
  1789. this.windturbineIconNG01_15.Location = new System.Drawing.Point(922, 568);
  1790. this.windturbineIconNG01_15.Name = "windturbineIconNG01_15";
  1791. this.windturbineIconNG01_15.Size = new System.Drawing.Size(50, 85);
  1792. this.windturbineIconNG01_15.Status = 1;
  1793. this.windturbineIconNG01_15.TabIndex = 96;
  1794. this.windturbineIconNG01_15.WindturbineId = "NG01_15";
  1795. //
  1796. // windturbineIconNG01_16
  1797. //
  1798. this.windturbineIconNG01_16.BackColor = System.Drawing.Color.Transparent;
  1799. this.windturbineIconNG01_16.Location = new System.Drawing.Point(990, 568);
  1800. this.windturbineIconNG01_16.Name = "windturbineIconNG01_16";
  1801. this.windturbineIconNG01_16.Size = new System.Drawing.Size(50, 85);
  1802. this.windturbineIconNG01_16.Status = 1;
  1803. this.windturbineIconNG01_16.TabIndex = 95;
  1804. this.windturbineIconNG01_16.WindturbineId = "NG01_16";
  1805. //
  1806. // windturbineIconNG01_19
  1807. //
  1808. this.windturbineIconNG01_19.BackColor = System.Drawing.Color.Transparent;
  1809. this.windturbineIconNG01_19.Location = new System.Drawing.Point(1194, 568);
  1810. this.windturbineIconNG01_19.Name = "windturbineIconNG01_19";
  1811. this.windturbineIconNG01_19.Size = new System.Drawing.Size(50, 85);
  1812. this.windturbineIconNG01_19.Status = 1;
  1813. this.windturbineIconNG01_19.TabIndex = 94;
  1814. this.windturbineIconNG01_19.WindturbineId = "NG01_19";
  1815. //
  1816. // windturbineIconNG01_20
  1817. //
  1818. this.windturbineIconNG01_20.BackColor = System.Drawing.Color.Transparent;
  1819. this.windturbineIconNG01_20.Location = new System.Drawing.Point(1262, 568);
  1820. this.windturbineIconNG01_20.Name = "windturbineIconNG01_20";
  1821. this.windturbineIconNG01_20.Size = new System.Drawing.Size(50, 85);
  1822. this.windturbineIconNG01_20.Status = 1;
  1823. this.windturbineIconNG01_20.TabIndex = 93;
  1824. this.windturbineIconNG01_20.WindturbineId = "NG01_20";
  1825. //
  1826. // windturbineIconNG01_17
  1827. //
  1828. this.windturbineIconNG01_17.BackColor = System.Drawing.Color.Transparent;
  1829. this.windturbineIconNG01_17.Location = new System.Drawing.Point(1058, 568);
  1830. this.windturbineIconNG01_17.Name = "windturbineIconNG01_17";
  1831. this.windturbineIconNG01_17.Size = new System.Drawing.Size(50, 85);
  1832. this.windturbineIconNG01_17.Status = 1;
  1833. this.windturbineIconNG01_17.TabIndex = 92;
  1834. this.windturbineIconNG01_17.WindturbineId = "NG01_17";
  1835. //
  1836. // windturbineIconNG01_18
  1837. //
  1838. this.windturbineIconNG01_18.BackColor = System.Drawing.Color.Transparent;
  1839. this.windturbineIconNG01_18.Location = new System.Drawing.Point(1126, 568);
  1840. this.windturbineIconNG01_18.Name = "windturbineIconNG01_18";
  1841. this.windturbineIconNG01_18.Size = new System.Drawing.Size(50, 85);
  1842. this.windturbineIconNG01_18.Status = 1;
  1843. this.windturbineIconNG01_18.TabIndex = 91;
  1844. this.windturbineIconNG01_18.WindturbineId = "NG01_18";
  1845. //
  1846. // windturbineIconNG01_21
  1847. //
  1848. this.windturbineIconNG01_21.BackColor = System.Drawing.Color.Transparent;
  1849. this.windturbineIconNG01_21.Location = new System.Drawing.Point(1330, 568);
  1850. this.windturbineIconNG01_21.Name = "windturbineIconNG01_21";
  1851. this.windturbineIconNG01_21.Size = new System.Drawing.Size(50, 85);
  1852. this.windturbineIconNG01_21.Status = 1;
  1853. this.windturbineIconNG01_21.TabIndex = 90;
  1854. this.windturbineIconNG01_21.WindturbineId = "NG01_21";
  1855. //
  1856. // windturbineIconNG01_22
  1857. //
  1858. this.windturbineIconNG01_22.BackColor = System.Drawing.Color.Transparent;
  1859. this.windturbineIconNG01_22.Location = new System.Drawing.Point(1398, 568);
  1860. this.windturbineIconNG01_22.Name = "windturbineIconNG01_22";
  1861. this.windturbineIconNG01_22.Size = new System.Drawing.Size(50, 85);
  1862. this.windturbineIconNG01_22.Status = 1;
  1863. this.windturbineIconNG01_22.TabIndex = 89;
  1864. this.windturbineIconNG01_22.WindturbineId = "NG01_22";
  1865. //
  1866. // windturbineIconNG01_06
  1867. //
  1868. this.windturbineIconNG01_06.BackColor = System.Drawing.Color.Transparent;
  1869. this.windturbineIconNG01_06.Location = new System.Drawing.Point(1058, 645);
  1870. this.windturbineIconNG01_06.Name = "windturbineIconNG01_06";
  1871. this.windturbineIconNG01_06.Size = new System.Drawing.Size(50, 85);
  1872. this.windturbineIconNG01_06.Status = 1;
  1873. this.windturbineIconNG01_06.TabIndex = 88;
  1874. this.windturbineIconNG01_06.WindturbineId = "NG01_06";
  1875. //
  1876. // windturbineIconNG01_10
  1877. //
  1878. this.windturbineIconNG01_10.BackColor = System.Drawing.Color.Transparent;
  1879. this.windturbineIconNG01_10.Location = new System.Drawing.Point(1330, 645);
  1880. this.windturbineIconNG01_10.Name = "windturbineIconNG01_10";
  1881. this.windturbineIconNG01_10.Size = new System.Drawing.Size(50, 85);
  1882. this.windturbineIconNG01_10.Status = 1;
  1883. this.windturbineIconNG01_10.TabIndex = 87;
  1884. this.windturbineIconNG01_10.WindturbineId = "NG01_10";
  1885. //
  1886. // windturbineIconNG01_11
  1887. //
  1888. this.windturbineIconNG01_11.BackColor = System.Drawing.Color.Transparent;
  1889. this.windturbineIconNG01_11.Location = new System.Drawing.Point(1398, 645);
  1890. this.windturbineIconNG01_11.Name = "windturbineIconNG01_11";
  1891. this.windturbineIconNG01_11.Size = new System.Drawing.Size(50, 85);
  1892. this.windturbineIconNG01_11.Status = 1;
  1893. this.windturbineIconNG01_11.TabIndex = 86;
  1894. this.windturbineIconNG01_11.WindturbineId = "NG01_11";
  1895. //
  1896. // windturbineIconNG01_09
  1897. //
  1898. this.windturbineIconNG01_09.BackColor = System.Drawing.Color.Transparent;
  1899. this.windturbineIconNG01_09.Location = new System.Drawing.Point(1262, 645);
  1900. this.windturbineIconNG01_09.Name = "windturbineIconNG01_09";
  1901. this.windturbineIconNG01_09.Size = new System.Drawing.Size(50, 85);
  1902. this.windturbineIconNG01_09.Status = 1;
  1903. this.windturbineIconNG01_09.TabIndex = 85;
  1904. this.windturbineIconNG01_09.WindturbineId = "NG01_09";
  1905. //
  1906. // windturbineIconNG01_03
  1907. //
  1908. this.windturbineIconNG01_03.BackColor = System.Drawing.Color.Transparent;
  1909. this.windturbineIconNG01_03.Location = new System.Drawing.Point(854, 645);
  1910. this.windturbineIconNG01_03.Name = "windturbineIconNG01_03";
  1911. this.windturbineIconNG01_03.Size = new System.Drawing.Size(50, 85);
  1912. this.windturbineIconNG01_03.Status = 1;
  1913. this.windturbineIconNG01_03.TabIndex = 84;
  1914. this.windturbineIconNG01_03.WindturbineId = "NG01_03";
  1915. //
  1916. // windturbineIconNG01_07
  1917. //
  1918. this.windturbineIconNG01_07.BackColor = System.Drawing.Color.Transparent;
  1919. this.windturbineIconNG01_07.Location = new System.Drawing.Point(1126, 645);
  1920. this.windturbineIconNG01_07.Name = "windturbineIconNG01_07";
  1921. this.windturbineIconNG01_07.Size = new System.Drawing.Size(50, 85);
  1922. this.windturbineIconNG01_07.Status = 1;
  1923. this.windturbineIconNG01_07.TabIndex = 83;
  1924. this.windturbineIconNG01_07.WindturbineId = "NG01_07";
  1925. //
  1926. // windturbineIconNG01_04
  1927. //
  1928. this.windturbineIconNG01_04.BackColor = System.Drawing.Color.Transparent;
  1929. this.windturbineIconNG01_04.Location = new System.Drawing.Point(922, 645);
  1930. this.windturbineIconNG01_04.Name = "windturbineIconNG01_04";
  1931. this.windturbineIconNG01_04.Size = new System.Drawing.Size(50, 85);
  1932. this.windturbineIconNG01_04.Status = 1;
  1933. this.windturbineIconNG01_04.TabIndex = 82;
  1934. this.windturbineIconNG01_04.WindturbineId = "NG01_04";
  1935. //
  1936. // windturbineIconNG01_08
  1937. //
  1938. this.windturbineIconNG01_08.BackColor = System.Drawing.Color.Transparent;
  1939. this.windturbineIconNG01_08.Location = new System.Drawing.Point(1194, 645);
  1940. this.windturbineIconNG01_08.Name = "windturbineIconNG01_08";
  1941. this.windturbineIconNG01_08.Size = new System.Drawing.Size(50, 85);
  1942. this.windturbineIconNG01_08.Status = 1;
  1943. this.windturbineIconNG01_08.TabIndex = 81;
  1944. this.windturbineIconNG01_08.WindturbineId = "NG01_08";
  1945. //
  1946. // windturbineIconNG01_05
  1947. //
  1948. this.windturbineIconNG01_05.BackColor = System.Drawing.Color.Transparent;
  1949. this.windturbineIconNG01_05.Location = new System.Drawing.Point(990, 645);
  1950. this.windturbineIconNG01_05.Name = "windturbineIconNG01_05";
  1951. this.windturbineIconNG01_05.Size = new System.Drawing.Size(50, 85);
  1952. this.windturbineIconNG01_05.Status = 1;
  1953. this.windturbineIconNG01_05.TabIndex = 80;
  1954. this.windturbineIconNG01_05.WindturbineId = "NG01_05";
  1955. //
  1956. // windturbineIconNG01_02
  1957. //
  1958. this.windturbineIconNG01_02.BackColor = System.Drawing.Color.Transparent;
  1959. this.windturbineIconNG01_02.Location = new System.Drawing.Point(786, 645);
  1960. this.windturbineIconNG01_02.Name = "windturbineIconNG01_02";
  1961. this.windturbineIconNG01_02.Size = new System.Drawing.Size(50, 85);
  1962. this.windturbineIconNG01_02.Status = 1;
  1963. this.windturbineIconNG01_02.TabIndex = 79;
  1964. this.windturbineIconNG01_02.WindturbineId = "NG01_02";
  1965. //
  1966. // windturbineIconNG01_01
  1967. //
  1968. this.windturbineIconNG01_01.BackColor = System.Drawing.Color.Transparent;
  1969. this.windturbineIconNG01_01.Location = new System.Drawing.Point(718, 645);
  1970. this.windturbineIconNG01_01.Name = "windturbineIconNG01_01";
  1971. this.windturbineIconNG01_01.Size = new System.Drawing.Size(50, 85);
  1972. this.windturbineIconNG01_01.Status = 1;
  1973. this.windturbineIconNG01_01.TabIndex = 78;
  1974. this.windturbineIconNG01_01.WindturbineId = "NG01_01";
  1975. //
  1976. // ZM_NSS
  1977. //
  1978. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1979. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1980. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  1981. this.Controls.Add(this.pnlLine);
  1982. this.Controls.Add(this.pnlTop);
  1983. this.ForeColor = System.Drawing.Color.Black;
  1984. this.Name = "ZM_NSS";
  1985. this.Size = new System.Drawing.Size(1920, 960);
  1986. this.Load += new System.EventHandler(this.MHS_Load);
  1987. this.pnlTop.ResumeLayout(false);
  1988. this.pnlCurve.ResumeLayout(false);
  1989. this.pnlLink.ResumeLayout(false);
  1990. this.pnlStat.ResumeLayout(false);
  1991. this.pnlLine.ResumeLayout(false);
  1992. this.ResumeLayout(false);
  1993. }
  1994. #endregion
  1995. private System.Windows.Forms.Panel pnlTop;
  1996. private System.Windows.Forms.Panel pnlLine;
  1997. private System.Windows.Forms.Panel pnlStat;
  1998. private System.Windows.Forms.Label label18;
  1999. private WebfontLable lblCntLX;
  2000. private System.Windows.Forms.Label label19;
  2001. private System.Windows.Forms.Label label20;
  2002. private WebfontLable lblCntGZ;
  2003. private System.Windows.Forms.Label label21;
  2004. private System.Windows.Forms.Label label22;
  2005. private WebfontLable lblCntWH;
  2006. private System.Windows.Forms.Label label23;
  2007. private System.Windows.Forms.Label label24;
  2008. private WebfontLable lblCntTJ;
  2009. private System.Windows.Forms.Label label25;
  2010. private System.Windows.Forms.Label label8;
  2011. private WebfontLable lblCntSD;
  2012. private System.Windows.Forms.Label label11;
  2013. private System.Windows.Forms.Label label12;
  2014. private WebfontLable lblCntQD;
  2015. private System.Windows.Forms.Label label13;
  2016. private System.Windows.Forms.Label label14;
  2017. private WebfontLable lblCntDJ;
  2018. private System.Windows.Forms.Label label15;
  2019. private System.Windows.Forms.Label label16;
  2020. private WebfontLable lblCntBW;
  2021. private System.Windows.Forms.Label label17;
  2022. private System.Windows.Forms.Label label6;
  2023. private WebfontLable lblPower;
  2024. private System.Windows.Forms.Label label7;
  2025. private System.Windows.Forms.Label label4;
  2026. private WebfontLable lblWindspeed;
  2027. private System.Windows.Forms.Label label5;
  2028. private System.Windows.Forms.Label label2;
  2029. private WebfontLable lblCntAll;
  2030. private System.Windows.Forms.Label label3;
  2031. private System.Windows.Forms.Label label1;
  2032. private WebfontLable lblCapacity;
  2033. private System.Windows.Forms.Label label10;
  2034. private System.Windows.Forms.Label label9;
  2035. private System.Windows.Forms.Panel panel15;
  2036. private System.Windows.Forms.Panel pnlLink;
  2037. private System.Windows.Forms.Button btnMap;
  2038. private System.Windows.Forms.Button btnSYZ;
  2039. private System.Windows.Forms.Label lblDate;
  2040. private WebfontLable lblTime;
  2041. private System.Windows.Forms.Panel pnlCurve;
  2042. private StationPowerLine stationPowerLine1;
  2043. private System.Windows.Forms.Timer timer1;
  2044. private System.Windows.Forms.Timer timer2;
  2045. private WindturbineIcon windturbineIconNG01_50;
  2046. private WindturbineIcon windturbineIconNG01_54;
  2047. private WindturbineIcon windturbineIconNG01_55;
  2048. private WindturbineIcon windturbineIconNG01_53;
  2049. private WindturbineIcon windturbineIconNG01_47;
  2050. private WindturbineIcon windturbineIconNG01_51;
  2051. private WindturbineIcon windturbineIconNG01_48;
  2052. private WindturbineIcon windturbineIconNG01_52;
  2053. private WindturbineIcon windturbineIconNG01_49;
  2054. private WindturbineIcon windturbineIconNG01_46;
  2055. private WindturbineIcon windturbineIconNG01_45;
  2056. private WindturbineIcon windturbineIconNG01_44;
  2057. private WindturbineIcon windturbineIconNG01_43;
  2058. private WindturbineIcon windturbineIconNG01_42;
  2059. private WindturbineIcon windturbineIconNG01_41;
  2060. private WindturbineIcon windturbineIconNG01_40;
  2061. private WindturbineIcon windturbineIconNG01_39;
  2062. private WindturbineIcon windturbineIconNG01_38;
  2063. private WindturbineIcon windturbineIconNG01_37;
  2064. private WindturbineIcon windturbineIconNG01_36;
  2065. private WindturbineIcon windturbineIconNG01_35;
  2066. private WindturbineIcon windturbineIconNG01_34;
  2067. private WindturbineIcon windturbineIconNG01_33;
  2068. private WindturbineIcon windturbineIconNG01_32;
  2069. private WindturbineIcon windturbineIconNG01_31;
  2070. private WindturbineIcon windturbineIconNG01_30;
  2071. private WindturbineIcon windturbineIconNG01_29;
  2072. private WindturbineIcon windturbineIconNG01_28;
  2073. private WindturbineIcon windturbineIconNG01_27;
  2074. private WindturbineIcon windturbineIconNG01_26;
  2075. private WindturbineIcon windturbineIconNG01_25;
  2076. private WindturbineIcon windturbineIconNG01_24;
  2077. private WindturbineIcon windturbineIconNG01_23;
  2078. private WindturbineIcon windturbineIconNG01_12;
  2079. private WindturbineIcon windturbineIconNG01_13;
  2080. private WindturbineIcon windturbineIconNG01_14;
  2081. private WindturbineIcon windturbineIconNG01_15;
  2082. private WindturbineIcon windturbineIconNG01_16;
  2083. private WindturbineIcon windturbineIconNG01_19;
  2084. private WindturbineIcon windturbineIconNG01_20;
  2085. private WindturbineIcon windturbineIconNG01_17;
  2086. private WindturbineIcon windturbineIconNG01_18;
  2087. private WindturbineIcon windturbineIconNG01_21;
  2088. private WindturbineIcon windturbineIconNG01_22;
  2089. private WindturbineIcon windturbineIconNG01_06;
  2090. private WindturbineIcon windturbineIconNG01_10;
  2091. private WindturbineIcon windturbineIconNG01_11;
  2092. private WindturbineIcon windturbineIconNG01_09;
  2093. private WindturbineIcon windturbineIconNG01_03;
  2094. private WindturbineIcon windturbineIconNG01_07;
  2095. private WindturbineIcon windturbineIconNG01_04;
  2096. private WindturbineIcon windturbineIconNG01_08;
  2097. private WindturbineIcon windturbineIconNG01_05;
  2098. private WindturbineIcon windturbineIconNG01_02;
  2099. private WindturbineIcon windturbineIconNG01_01;
  2100. private WindturbineIcon windturbineIconNG01_73;
  2101. private WindturbineIcon windturbineIconNG01_77;
  2102. private WindturbineIcon windturbineIconNG01_78;
  2103. private WindturbineIcon windturbineIconNG01_76;
  2104. private WindturbineIcon windturbineIconNG01_70;
  2105. private WindturbineIcon windturbineIconNG01_74;
  2106. private WindturbineIcon windturbineIconNG01_71;
  2107. private WindturbineIcon windturbineIconNG01_75;
  2108. private WindturbineIcon windturbineIconNG01_72;
  2109. private WindturbineIcon windturbineIconNG01_69;
  2110. private WindturbineIcon windturbineIconNG01_68;
  2111. private WindturbineIcon windturbineIconNG01_62;
  2112. private WindturbineIcon windturbineIconNG01_66;
  2113. private WindturbineIcon windturbineIconNG01_79;
  2114. private WindturbineIcon windturbineIconNG01_65;
  2115. private WindturbineIcon windturbineIconNG01_59;
  2116. private WindturbineIcon windturbineIconNG01_63;
  2117. private WindturbineIcon windturbineIconNG01_60;
  2118. private WindturbineIcon windturbineIconNG01_64;
  2119. private WindturbineIcon windturbineIconNG01_61;
  2120. private WindturbineIcon windturbineIconNG01_58;
  2121. private WindturbineIcon windturbineIconNG01_57;
  2122. private WindturbineIcon windturbineIconNG01_89;
  2123. private WindturbineIcon windturbineIconNG01_88;
  2124. private WindturbineIcon windturbineIconNG01_87;
  2125. private WindturbineIcon windturbineIconNG01_86;
  2126. private WindturbineIcon windturbineIconNG01_85;
  2127. private WindturbineIcon windturbineIconNG01_84;
  2128. private WindturbineIcon windturbineIconNG01_83;
  2129. private WindturbineIcon windturbineIconNG01_82;
  2130. private WindturbineIcon windturbineIconNG01_81;
  2131. private WindturbineIcon windturbineIconNG01_80;
  2132. private WindturbineIcon windturbineIconNG01_99;
  2133. private WindturbineIcon windturbineIconNG01_98;
  2134. private WindturbineIcon windturbineIconNG01_97;
  2135. private WindturbineIcon windturbineIconNG01_96;
  2136. private WindturbineIcon windturbineIconNG01_95;
  2137. private WindturbineIcon windturbineIconNG01_94;
  2138. private WindturbineIcon windturbineIconNG01_93;
  2139. private WindturbineIcon windturbineIconNG01_92;
  2140. private WindturbineIcon windturbineIconNG01_91;
  2141. private WindturbineIcon windturbineIconNG01_90;
  2142. private WindturbineIcon windturbineIconNG01_67;
  2143. private WindturbineIcon windturbineIconNG01_56;
  2144. }
  2145. }