ZM_SBQ.Designer.cs 143 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493
  1. namespace IntelligentControlForsx.MyControls.zm
  2. {
  3. partial class ZM_SBQ
  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.pnlLink = new System.Windows.Forms.Panel();
  31. this.btnMap = new System.Windows.Forms.Button();
  32. this.btnSYZ = new System.Windows.Forms.Button();
  33. this.lblDate = new System.Windows.Forms.Label();
  34. this.lblTime = new IntelligentControlForsx.MyControls.WebfontLable();
  35. this.pnlCurve = new System.Windows.Forms.Panel();
  36. this.stationPowerLine1 = new IntelligentControlForsx.MyControls.StationPowerLine();
  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.windturbineIcon118 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  80. this.windturbineIcon79 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  81. this.windturbineIcon89 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  82. this.windturbineIcon90 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  83. this.windturbineIcon100 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  84. this.windturbineIcon101 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  85. this.windturbineIcon111 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  86. this.windturbineIcon112 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  87. this.windturbineIcon113 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  88. this.windturbineIcon114 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  89. this.windturbineIcon115 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  90. this.windturbineIcon116 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  91. this.windturbineIcon117 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  92. this.windturbineIcon78 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  93. this.windturbineIcon80 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  94. this.windturbineIcon81 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  95. this.windturbineIcon82 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  96. this.windturbineIcon83 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  97. this.windturbineIcon84 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  98. this.windturbineIcon85 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  99. this.windturbineIcon86 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  100. this.windturbineIcon87 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  101. this.windturbineIcon88 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  102. this.windturbineIcon92 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  103. this.windturbineIcon93 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  104. this.windturbineIcon94 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  105. this.windturbineIcon95 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  106. this.windturbineIcon96 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  107. this.windturbineIcon97 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  108. this.windturbineIcon98 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  109. this.windturbineIcon99 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  110. this.windturbineIcon103 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  111. this.windturbineIcon104 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  112. this.windturbineIcon105 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  113. this.windturbineIcon106 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  114. this.windturbineIcon107 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  115. this.windturbineIcon108 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  116. this.windturbineIcon109 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  117. this.windturbineIcon110 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  118. this.windturbineIcon67 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  119. this.windturbineIcon68 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  120. this.windturbineIcon69 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  121. this.windturbineIcon70 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  122. this.windturbineIcon71 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  123. this.windturbineIcon72 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  124. this.windturbineIcon73 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  125. this.windturbineIcon74 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  126. this.windturbineIcon75 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  127. this.windturbineIcon76 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  128. this.windturbineIcon77 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  129. this.windturbineIcon56 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  130. this.windturbineIcon57 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  131. this.windturbineIcon58 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  132. this.windturbineIcon59 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  133. this.windturbineIcon60 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  134. this.windturbineIcon61 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  135. this.windturbineIcon62 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  136. this.windturbineIcon63 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  137. this.windturbineIcon64 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  138. this.windturbineIcon65 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  139. this.windturbineIcon66 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  140. this.windturbineIcon45 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  141. this.windturbineIcon46 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  142. this.windturbineIcon47 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  143. this.windturbineIcon48 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  144. this.windturbineIcon49 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  145. this.windturbineIcon50 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  146. this.windturbineIcon51 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  147. this.windturbineIcon52 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  148. this.windturbineIcon53 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  149. this.windturbineIcon54 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  150. this.windturbineIcon55 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  151. this.windturbineIcon34 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  152. this.windturbineIcon35 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  153. this.windturbineIcon36 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  154. this.windturbineIcon37 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  155. this.windturbineIcon38 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  156. this.windturbineIcon39 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  157. this.windturbineIcon40 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  158. this.windturbineIcon41 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  159. this.windturbineIcon42 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  160. this.windturbineIcon43 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  161. this.windturbineIcon44 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  162. this.windturbineIcon23 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  163. this.windturbineIcon24 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  164. this.windturbineIcon25 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  165. this.windturbineIcon26 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  166. this.windturbineIcon27 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  167. this.windturbineIcon28 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  168. this.windturbineIcon29 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  169. this.windturbineIcon30 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  170. this.windturbineIcon31 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  171. this.windturbineIcon32 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  172. this.windturbineIcon33 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  173. this.windturbineIcon9 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  174. this.windturbineIcon10 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  175. this.windturbineIcon11 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  176. this.windturbineIcon12 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  177. this.windturbineIcon13 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  178. this.windturbineIcon14 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  179. this.windturbineIcon15 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  180. this.windturbineIcon16 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  181. this.windturbineIcon20 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  182. this.windturbineIcon21 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  183. this.windturbineIcon22 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  184. this.windturbineIcon19 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  185. this.windturbineIcon17 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  186. this.windturbineIcon18 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  187. this.windturbineIcon5 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  188. this.windturbineIcon6 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  189. this.windturbineIcon7 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  190. this.windturbineIcon8 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  191. this.windturbineIcon3 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  192. this.windturbineIcon4 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  193. this.windturbineIcon2 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  194. this.windturbineIcon1 = new IntelligentControlForsx.MyControls.WindturbineIcon();
  195. this.pnlTop.SuspendLayout();
  196. this.pnlLink.SuspendLayout();
  197. this.pnlCurve.SuspendLayout();
  198. this.pnlStat.SuspendLayout();
  199. this.pnlLine.SuspendLayout();
  200. this.SuspendLayout();
  201. //
  202. // pnlTop
  203. //
  204. this.pnlTop.BackColor = System.Drawing.Color.Transparent;
  205. this.pnlTop.Controls.Add(this.pnlLink);
  206. this.pnlTop.Controls.Add(this.pnlCurve);
  207. this.pnlTop.Controls.Add(this.pnlStat);
  208. this.pnlTop.Dock = System.Windows.Forms.DockStyle.Top;
  209. this.pnlTop.Location = new System.Drawing.Point(0, 0);
  210. this.pnlTop.Name = "pnlTop";
  211. this.pnlTop.Size = new System.Drawing.Size(1920, 230);
  212. this.pnlTop.TabIndex = 3;
  213. //
  214. // pnlLink
  215. //
  216. this.pnlLink.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(4)))), ((int)(((byte)(24)))), ((int)(((byte)(49)))));
  217. this.pnlLink.Controls.Add(this.btnMap);
  218. this.pnlLink.Controls.Add(this.btnSYZ);
  219. this.pnlLink.Controls.Add(this.lblDate);
  220. this.pnlLink.Controls.Add(this.lblTime);
  221. this.pnlLink.Location = new System.Drawing.Point(1705, 18);
  222. this.pnlLink.Name = "pnlLink";
  223. this.pnlLink.Size = new System.Drawing.Size(190, 206);
  224. this.pnlLink.TabIndex = 3;
  225. this.pnlLink.Paint += new System.Windows.Forms.PaintEventHandler(this.pnlLink_Paint);
  226. //
  227. // btnMap
  228. //
  229. this.btnMap.BackColor = System.Drawing.Color.Transparent;
  230. this.btnMap.FlatAppearance.BorderSize = 0;
  231. this.btnMap.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
  232. this.btnMap.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
  233. this.btnMap.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  234. this.btnMap.Font = new System.Drawing.Font("微软雅黑", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  235. this.btnMap.ForeColor = System.Drawing.Color.White;
  236. this.btnMap.Image = global::IntelligentControlForsx.Properties.Resources.B02;
  237. this.btnMap.Location = new System.Drawing.Point(43, 147);
  238. this.btnMap.Name = "btnMap";
  239. this.btnMap.Size = new System.Drawing.Size(105, 34);
  240. this.btnMap.TabIndex = 32;
  241. this.btnMap.Text = "风机排布图";
  242. this.btnMap.UseVisualStyleBackColor = false;
  243. this.btnMap.Click += new System.EventHandler(this.btnMap_Click);
  244. this.btnMap.MouseLeave += new System.EventHandler(this.btnMap_MouseLeave);
  245. this.btnMap.MouseHover += new System.EventHandler(this.btnMap_MouseHover);
  246. //
  247. // btnSYZ
  248. //
  249. this.btnSYZ.BackColor = System.Drawing.Color.Transparent;
  250. this.btnSYZ.FlatAppearance.BorderSize = 0;
  251. this.btnSYZ.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
  252. this.btnSYZ.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
  253. this.btnSYZ.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  254. this.btnSYZ.Font = new System.Drawing.Font("微软雅黑", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  255. this.btnSYZ.ForeColor = System.Drawing.Color.White;
  256. this.btnSYZ.Image = global::IntelligentControlForsx.Properties.Resources.B02;
  257. this.btnSYZ.Location = new System.Drawing.Point(43, 101);
  258. this.btnSYZ.Name = "btnSYZ";
  259. this.btnSYZ.Size = new System.Drawing.Size(105, 34);
  260. this.btnSYZ.TabIndex = 31;
  261. this.btnSYZ.Text = "升压站";
  262. this.btnSYZ.UseVisualStyleBackColor = false;
  263. this.btnSYZ.Click += new System.EventHandler(this.btnSYZ_Click);
  264. this.btnSYZ.MouseLeave += new System.EventHandler(this.btnSYZ_MouseLeave);
  265. this.btnSYZ.MouseHover += new System.EventHandler(this.btnSYZ_MouseHover);
  266. //
  267. // lblDate
  268. //
  269. this.lblDate.Font = new System.Drawing.Font("微软雅黑", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  270. this.lblDate.ForeColor = System.Drawing.Color.MediumSpringGreen;
  271. this.lblDate.Location = new System.Drawing.Point(6, 21);
  272. this.lblDate.Name = "lblDate";
  273. this.lblDate.Size = new System.Drawing.Size(181, 22);
  274. this.lblDate.TabIndex = 29;
  275. this.lblDate.Text = "2019-12-18";
  276. this.lblDate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  277. //
  278. // lblTime
  279. //
  280. this.lblTime.BackColor = System.Drawing.Color.Transparent;
  281. this.lblTime.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  282. this.lblTime.LableShowType = 0;
  283. this.lblTime.LableText = "08:30:00";
  284. this.lblTime.LableType = 0;
  285. this.lblTime.Location = new System.Drawing.Point(39, 54);
  286. this.lblTime.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  287. this.lblTime.MyEmSize = 21.75F;
  288. this.lblTime.MyLabelDock = System.Windows.Forms.DockStyle.Fill;
  289. this.lblTime.MyLabelTextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  290. this.lblTime.Name = "lblTime";
  291. this.lblTime.Size = new System.Drawing.Size(109, 23);
  292. this.lblTime.TabIndex = 28;
  293. this.lblTime.TestPointId = null;
  294. this.lblTime.UniformCode = null;
  295. this.lblTime.WindPowerId = null;
  296. this.lblTime.WindTurbineId = null;
  297. //
  298. // pnlCurve
  299. //
  300. this.pnlCurve.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(4)))), ((int)(((byte)(24)))), ((int)(((byte)(49)))));
  301. this.pnlCurve.Controls.Add(this.stationPowerLine1);
  302. this.pnlCurve.Location = new System.Drawing.Point(962, 18);
  303. this.pnlCurve.Name = "pnlCurve";
  304. this.pnlCurve.Size = new System.Drawing.Size(743, 206);
  305. this.pnlCurve.TabIndex = 2;
  306. this.pnlCurve.Paint += new System.Windows.Forms.PaintEventHandler(this.pnlCurve_Paint);
  307. //
  308. // stationPowerLine1
  309. //
  310. this.stationPowerLine1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(4)))), ((int)(((byte)(24)))), ((int)(((byte)(49)))));
  311. this.stationPowerLine1.FactPowerPoint = "SBQFCJSFW.NX_GD_SBQF_XX_XX_XXX_XXX_CI0135";
  312. this.stationPowerLine1.Location = new System.Drawing.Point(1, 1);
  313. this.stationPowerLine1.Name = "stationPowerLine1";
  314. this.stationPowerLine1.Size = new System.Drawing.Size(741, 204);
  315. this.stationPowerLine1.StationId = null;
  316. this.stationPowerLine1.TabIndex = 0;
  317. //
  318. // pnlStat
  319. //
  320. this.pnlStat.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(4)))), ((int)(((byte)(24)))), ((int)(((byte)(49)))));
  321. this.pnlStat.Controls.Add(this.label18);
  322. this.pnlStat.Controls.Add(this.lblCntLX);
  323. this.pnlStat.Controls.Add(this.label19);
  324. this.pnlStat.Controls.Add(this.label20);
  325. this.pnlStat.Controls.Add(this.lblCntGZ);
  326. this.pnlStat.Controls.Add(this.label21);
  327. this.pnlStat.Controls.Add(this.label22);
  328. this.pnlStat.Controls.Add(this.lblCntWH);
  329. this.pnlStat.Controls.Add(this.label23);
  330. this.pnlStat.Controls.Add(this.label24);
  331. this.pnlStat.Controls.Add(this.lblCntTJ);
  332. this.pnlStat.Controls.Add(this.label25);
  333. this.pnlStat.Controls.Add(this.label8);
  334. this.pnlStat.Controls.Add(this.lblCntSD);
  335. this.pnlStat.Controls.Add(this.label11);
  336. this.pnlStat.Controls.Add(this.label12);
  337. this.pnlStat.Controls.Add(this.lblCntQD);
  338. this.pnlStat.Controls.Add(this.label13);
  339. this.pnlStat.Controls.Add(this.label14);
  340. this.pnlStat.Controls.Add(this.lblCntDJ);
  341. this.pnlStat.Controls.Add(this.label15);
  342. this.pnlStat.Controls.Add(this.label16);
  343. this.pnlStat.Controls.Add(this.lblCntBW);
  344. this.pnlStat.Controls.Add(this.label17);
  345. this.pnlStat.Controls.Add(this.label6);
  346. this.pnlStat.Controls.Add(this.lblPower);
  347. this.pnlStat.Controls.Add(this.label7);
  348. this.pnlStat.Controls.Add(this.label4);
  349. this.pnlStat.Controls.Add(this.lblWindspeed);
  350. this.pnlStat.Controls.Add(this.label5);
  351. this.pnlStat.Controls.Add(this.label2);
  352. this.pnlStat.Controls.Add(this.lblCntAll);
  353. this.pnlStat.Controls.Add(this.label3);
  354. this.pnlStat.Controls.Add(this.label1);
  355. this.pnlStat.Controls.Add(this.lblCapacity);
  356. this.pnlStat.Controls.Add(this.label10);
  357. this.pnlStat.Controls.Add(this.label9);
  358. this.pnlStat.Controls.Add(this.panel15);
  359. this.pnlStat.Location = new System.Drawing.Point(21, 18);
  360. this.pnlStat.Name = "pnlStat";
  361. this.pnlStat.Size = new System.Drawing.Size(931, 206);
  362. this.pnlStat.TabIndex = 1;
  363. this.pnlStat.Paint += new System.Windows.Forms.PaintEventHandler(this.pnlStat_Paint);
  364. //
  365. // label18
  366. //
  367. this.label18.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  368. this.label18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  369. this.label18.Location = new System.Drawing.Point(654, 168);
  370. this.label18.Name = "label18";
  371. this.label18.Size = new System.Drawing.Size(89, 22);
  372. this.label18.TabIndex = 37;
  373. this.label18.Text = "离线台数:";
  374. this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  375. //
  376. // lblCntLX
  377. //
  378. this.lblCntLX.BackColor = System.Drawing.Color.Transparent;
  379. this.lblCntLX.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  380. this.lblCntLX.LableShowType = 0;
  381. this.lblCntLX.LableText = "000000";
  382. this.lblCntLX.LableType = 0;
  383. this.lblCntLX.Location = new System.Drawing.Point(748, 167);
  384. this.lblCntLX.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  385. this.lblCntLX.MyEmSize = 21.75F;
  386. this.lblCntLX.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  387. this.lblCntLX.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  388. this.lblCntLX.Name = "lblCntLX";
  389. this.lblCntLX.Size = new System.Drawing.Size(100, 23);
  390. this.lblCntLX.TabIndex = 36;
  391. this.lblCntLX.TestPointId = null;
  392. this.lblCntLX.UniformCode = null;
  393. this.lblCntLX.WindPowerId = null;
  394. this.lblCntLX.WindTurbineId = null;
  395. //
  396. // label19
  397. //
  398. this.label19.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  399. this.label19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  400. this.label19.Location = new System.Drawing.Point(845, 168);
  401. this.label19.Name = "label19";
  402. this.label19.Size = new System.Drawing.Size(47, 22);
  403. this.label19.TabIndex = 35;
  404. this.label19.Text = "台";
  405. this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  406. //
  407. // label20
  408. //
  409. this.label20.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  410. this.label20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  411. this.label20.Location = new System.Drawing.Point(654, 133);
  412. this.label20.Name = "label20";
  413. this.label20.Size = new System.Drawing.Size(89, 22);
  414. this.label20.TabIndex = 34;
  415. this.label20.Text = "故障台数:";
  416. this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  417. //
  418. // lblCntGZ
  419. //
  420. this.lblCntGZ.BackColor = System.Drawing.Color.Transparent;
  421. this.lblCntGZ.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  422. this.lblCntGZ.LableShowType = 0;
  423. this.lblCntGZ.LableText = "000000";
  424. this.lblCntGZ.LableType = 0;
  425. this.lblCntGZ.Location = new System.Drawing.Point(748, 132);
  426. this.lblCntGZ.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  427. this.lblCntGZ.MyEmSize = 21.75F;
  428. this.lblCntGZ.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  429. this.lblCntGZ.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  430. this.lblCntGZ.Name = "lblCntGZ";
  431. this.lblCntGZ.Size = new System.Drawing.Size(100, 23);
  432. this.lblCntGZ.TabIndex = 33;
  433. this.lblCntGZ.TestPointId = null;
  434. this.lblCntGZ.UniformCode = null;
  435. this.lblCntGZ.WindPowerId = null;
  436. this.lblCntGZ.WindTurbineId = null;
  437. //
  438. // label21
  439. //
  440. this.label21.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  441. this.label21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  442. this.label21.Location = new System.Drawing.Point(845, 133);
  443. this.label21.Name = "label21";
  444. this.label21.Size = new System.Drawing.Size(47, 22);
  445. this.label21.TabIndex = 32;
  446. this.label21.Text = "台";
  447. this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  448. //
  449. // label22
  450. //
  451. this.label22.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  452. this.label22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  453. this.label22.Location = new System.Drawing.Point(654, 98);
  454. this.label22.Name = "label22";
  455. this.label22.Size = new System.Drawing.Size(89, 22);
  456. this.label22.TabIndex = 31;
  457. this.label22.Text = "维护台数:";
  458. this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  459. //
  460. // lblCntWH
  461. //
  462. this.lblCntWH.BackColor = System.Drawing.Color.Transparent;
  463. this.lblCntWH.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  464. this.lblCntWH.LableShowType = 0;
  465. this.lblCntWH.LableText = "000000";
  466. this.lblCntWH.LableType = 0;
  467. this.lblCntWH.Location = new System.Drawing.Point(748, 97);
  468. this.lblCntWH.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  469. this.lblCntWH.MyEmSize = 21.75F;
  470. this.lblCntWH.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  471. this.lblCntWH.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  472. this.lblCntWH.Name = "lblCntWH";
  473. this.lblCntWH.Size = new System.Drawing.Size(100, 23);
  474. this.lblCntWH.TabIndex = 30;
  475. this.lblCntWH.TestPointId = null;
  476. this.lblCntWH.UniformCode = null;
  477. this.lblCntWH.WindPowerId = null;
  478. this.lblCntWH.WindTurbineId = null;
  479. //
  480. // label23
  481. //
  482. this.label23.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  483. this.label23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  484. this.label23.Location = new System.Drawing.Point(845, 98);
  485. this.label23.Name = "label23";
  486. this.label23.Size = new System.Drawing.Size(47, 22);
  487. this.label23.TabIndex = 29;
  488. this.label23.Text = "台";
  489. this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  490. //
  491. // label24
  492. //
  493. this.label24.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  494. this.label24.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  495. this.label24.Location = new System.Drawing.Point(654, 62);
  496. this.label24.Name = "label24";
  497. this.label24.Size = new System.Drawing.Size(89, 22);
  498. this.label24.TabIndex = 28;
  499. this.label24.Text = "停机台数:";
  500. this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  501. //
  502. // lblCntTJ
  503. //
  504. this.lblCntTJ.BackColor = System.Drawing.Color.Transparent;
  505. this.lblCntTJ.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  506. this.lblCntTJ.LableShowType = 0;
  507. this.lblCntTJ.LableText = "000000";
  508. this.lblCntTJ.LableType = 0;
  509. this.lblCntTJ.Location = new System.Drawing.Point(748, 61);
  510. this.lblCntTJ.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  511. this.lblCntTJ.MyEmSize = 21.75F;
  512. this.lblCntTJ.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  513. this.lblCntTJ.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  514. this.lblCntTJ.Name = "lblCntTJ";
  515. this.lblCntTJ.Size = new System.Drawing.Size(100, 23);
  516. this.lblCntTJ.TabIndex = 27;
  517. this.lblCntTJ.TestPointId = null;
  518. this.lblCntTJ.UniformCode = null;
  519. this.lblCntTJ.WindPowerId = null;
  520. this.lblCntTJ.WindTurbineId = null;
  521. //
  522. // label25
  523. //
  524. this.label25.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  525. this.label25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  526. this.label25.Location = new System.Drawing.Point(845, 62);
  527. this.label25.Name = "label25";
  528. this.label25.Size = new System.Drawing.Size(47, 22);
  529. this.label25.TabIndex = 26;
  530. this.label25.Text = "台";
  531. this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  532. //
  533. // label8
  534. //
  535. this.label8.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  536. this.label8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  537. this.label8.Location = new System.Drawing.Point(345, 168);
  538. this.label8.Name = "label8";
  539. this.label8.Size = new System.Drawing.Size(89, 22);
  540. this.label8.TabIndex = 25;
  541. this.label8.Text = "上电台数:";
  542. this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  543. //
  544. // lblCntSD
  545. //
  546. this.lblCntSD.BackColor = System.Drawing.Color.Transparent;
  547. this.lblCntSD.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  548. this.lblCntSD.LableShowType = 0;
  549. this.lblCntSD.LableText = "000000";
  550. this.lblCntSD.LableType = 0;
  551. this.lblCntSD.Location = new System.Drawing.Point(439, 167);
  552. this.lblCntSD.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  553. this.lblCntSD.MyEmSize = 21.75F;
  554. this.lblCntSD.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  555. this.lblCntSD.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  556. this.lblCntSD.Name = "lblCntSD";
  557. this.lblCntSD.Size = new System.Drawing.Size(100, 23);
  558. this.lblCntSD.TabIndex = 24;
  559. this.lblCntSD.TestPointId = null;
  560. this.lblCntSD.UniformCode = null;
  561. this.lblCntSD.WindPowerId = null;
  562. this.lblCntSD.WindTurbineId = null;
  563. //
  564. // label11
  565. //
  566. this.label11.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  567. this.label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  568. this.label11.Location = new System.Drawing.Point(536, 168);
  569. this.label11.Name = "label11";
  570. this.label11.Size = new System.Drawing.Size(47, 22);
  571. this.label11.TabIndex = 23;
  572. this.label11.Text = "台";
  573. this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  574. //
  575. // label12
  576. //
  577. this.label12.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  578. this.label12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  579. this.label12.Location = new System.Drawing.Point(345, 133);
  580. this.label12.Name = "label12";
  581. this.label12.Size = new System.Drawing.Size(89, 22);
  582. this.label12.TabIndex = 22;
  583. this.label12.Text = "启动台数:";
  584. this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  585. //
  586. // lblCntQD
  587. //
  588. this.lblCntQD.BackColor = System.Drawing.Color.Transparent;
  589. this.lblCntQD.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  590. this.lblCntQD.LableShowType = 0;
  591. this.lblCntQD.LableText = "000000";
  592. this.lblCntQD.LableType = 0;
  593. this.lblCntQD.Location = new System.Drawing.Point(439, 132);
  594. this.lblCntQD.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  595. this.lblCntQD.MyEmSize = 21.75F;
  596. this.lblCntQD.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  597. this.lblCntQD.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  598. this.lblCntQD.Name = "lblCntQD";
  599. this.lblCntQD.Size = new System.Drawing.Size(100, 23);
  600. this.lblCntQD.TabIndex = 21;
  601. this.lblCntQD.TestPointId = null;
  602. this.lblCntQD.UniformCode = null;
  603. this.lblCntQD.WindPowerId = null;
  604. this.lblCntQD.WindTurbineId = null;
  605. //
  606. // label13
  607. //
  608. this.label13.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  609. this.label13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  610. this.label13.Location = new System.Drawing.Point(536, 133);
  611. this.label13.Name = "label13";
  612. this.label13.Size = new System.Drawing.Size(47, 22);
  613. this.label13.TabIndex = 20;
  614. this.label13.Text = "台";
  615. this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  616. //
  617. // label14
  618. //
  619. this.label14.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  620. this.label14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  621. this.label14.Location = new System.Drawing.Point(345, 98);
  622. this.label14.Name = "label14";
  623. this.label14.Size = new System.Drawing.Size(89, 22);
  624. this.label14.TabIndex = 19;
  625. this.label14.Text = "待机台数:";
  626. this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  627. //
  628. // lblCntDJ
  629. //
  630. this.lblCntDJ.BackColor = System.Drawing.Color.Transparent;
  631. this.lblCntDJ.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  632. this.lblCntDJ.LableShowType = 0;
  633. this.lblCntDJ.LableText = "000000";
  634. this.lblCntDJ.LableType = 0;
  635. this.lblCntDJ.Location = new System.Drawing.Point(439, 97);
  636. this.lblCntDJ.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  637. this.lblCntDJ.MyEmSize = 21.75F;
  638. this.lblCntDJ.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  639. this.lblCntDJ.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  640. this.lblCntDJ.Name = "lblCntDJ";
  641. this.lblCntDJ.Size = new System.Drawing.Size(100, 23);
  642. this.lblCntDJ.TabIndex = 18;
  643. this.lblCntDJ.TestPointId = null;
  644. this.lblCntDJ.UniformCode = null;
  645. this.lblCntDJ.WindPowerId = null;
  646. this.lblCntDJ.WindTurbineId = null;
  647. //
  648. // label15
  649. //
  650. this.label15.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  651. this.label15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  652. this.label15.Location = new System.Drawing.Point(536, 98);
  653. this.label15.Name = "label15";
  654. this.label15.Size = new System.Drawing.Size(47, 22);
  655. this.label15.TabIndex = 17;
  656. this.label15.Text = "台";
  657. this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  658. //
  659. // label16
  660. //
  661. this.label16.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  662. this.label16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  663. this.label16.Location = new System.Drawing.Point(345, 62);
  664. this.label16.Name = "label16";
  665. this.label16.Size = new System.Drawing.Size(89, 22);
  666. this.label16.TabIndex = 16;
  667. this.label16.Text = "并网台数:";
  668. this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  669. //
  670. // lblCntBW
  671. //
  672. this.lblCntBW.BackColor = System.Drawing.Color.Transparent;
  673. this.lblCntBW.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  674. this.lblCntBW.LableShowType = 0;
  675. this.lblCntBW.LableText = "000000";
  676. this.lblCntBW.LableType = 0;
  677. this.lblCntBW.Location = new System.Drawing.Point(439, 61);
  678. this.lblCntBW.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  679. this.lblCntBW.MyEmSize = 21.75F;
  680. this.lblCntBW.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  681. this.lblCntBW.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  682. this.lblCntBW.Name = "lblCntBW";
  683. this.lblCntBW.Size = new System.Drawing.Size(100, 23);
  684. this.lblCntBW.TabIndex = 15;
  685. this.lblCntBW.TestPointId = null;
  686. this.lblCntBW.UniformCode = null;
  687. this.lblCntBW.WindPowerId = null;
  688. this.lblCntBW.WindTurbineId = null;
  689. //
  690. // label17
  691. //
  692. this.label17.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  693. this.label17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  694. this.label17.Location = new System.Drawing.Point(536, 62);
  695. this.label17.Name = "label17";
  696. this.label17.Size = new System.Drawing.Size(47, 22);
  697. this.label17.TabIndex = 14;
  698. this.label17.Text = "台";
  699. this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  700. //
  701. // label6
  702. //
  703. this.label6.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  704. this.label6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  705. this.label6.Location = new System.Drawing.Point(23, 168);
  706. this.label6.Name = "label6";
  707. this.label6.Size = new System.Drawing.Size(89, 22);
  708. this.label6.TabIndex = 13;
  709. this.label6.Text = "实时功率:";
  710. this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  711. //
  712. // lblPower
  713. //
  714. this.lblPower.BackColor = System.Drawing.Color.Transparent;
  715. this.lblPower.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  716. this.lblPower.LableShowType = 0;
  717. this.lblPower.LableText = "000000";
  718. this.lblPower.LableType = 0;
  719. this.lblPower.Location = new System.Drawing.Point(117, 167);
  720. this.lblPower.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  721. this.lblPower.MyEmSize = 21.75F;
  722. this.lblPower.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  723. this.lblPower.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  724. this.lblPower.Name = "lblPower";
  725. this.lblPower.Size = new System.Drawing.Size(100, 23);
  726. this.lblPower.TabIndex = 12;
  727. this.lblPower.TestPointId = null;
  728. this.lblPower.UniformCode = null;
  729. this.lblPower.WindPowerId = null;
  730. this.lblPower.WindTurbineId = null;
  731. //
  732. // label7
  733. //
  734. this.label7.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  735. this.label7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  736. this.label7.Location = new System.Drawing.Point(214, 168);
  737. this.label7.Name = "label7";
  738. this.label7.Size = new System.Drawing.Size(47, 22);
  739. this.label7.TabIndex = 11;
  740. this.label7.Text = "MW";
  741. this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  742. //
  743. // label4
  744. //
  745. this.label4.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  746. this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  747. this.label4.Location = new System.Drawing.Point(23, 133);
  748. this.label4.Name = "label4";
  749. this.label4.Size = new System.Drawing.Size(89, 22);
  750. this.label4.TabIndex = 10;
  751. this.label4.Text = "平均风速:";
  752. this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  753. //
  754. // lblWindspeed
  755. //
  756. this.lblWindspeed.BackColor = System.Drawing.Color.Transparent;
  757. this.lblWindspeed.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  758. this.lblWindspeed.LableShowType = 0;
  759. this.lblWindspeed.LableText = "000000";
  760. this.lblWindspeed.LableType = 0;
  761. this.lblWindspeed.Location = new System.Drawing.Point(117, 132);
  762. this.lblWindspeed.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  763. this.lblWindspeed.MyEmSize = 21.75F;
  764. this.lblWindspeed.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  765. this.lblWindspeed.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  766. this.lblWindspeed.Name = "lblWindspeed";
  767. this.lblWindspeed.Size = new System.Drawing.Size(100, 23);
  768. this.lblWindspeed.TabIndex = 9;
  769. this.lblWindspeed.TestPointId = null;
  770. this.lblWindspeed.UniformCode = null;
  771. this.lblWindspeed.WindPowerId = null;
  772. this.lblWindspeed.WindTurbineId = null;
  773. //
  774. // label5
  775. //
  776. this.label5.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  777. this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  778. this.label5.Location = new System.Drawing.Point(214, 133);
  779. this.label5.Name = "label5";
  780. this.label5.Size = new System.Drawing.Size(47, 22);
  781. this.label5.TabIndex = 8;
  782. this.label5.Text = "m/s";
  783. this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  784. //
  785. // label2
  786. //
  787. this.label2.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  788. this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  789. this.label2.Location = new System.Drawing.Point(23, 98);
  790. this.label2.Name = "label2";
  791. this.label2.Size = new System.Drawing.Size(89, 22);
  792. this.label2.TabIndex = 7;
  793. this.label2.Text = "装机台数:";
  794. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  795. //
  796. // lblCntAll
  797. //
  798. this.lblCntAll.BackColor = System.Drawing.Color.Transparent;
  799. this.lblCntAll.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  800. this.lblCntAll.LableShowType = 0;
  801. this.lblCntAll.LableText = "000000";
  802. this.lblCntAll.LableType = 0;
  803. this.lblCntAll.Location = new System.Drawing.Point(117, 97);
  804. this.lblCntAll.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  805. this.lblCntAll.MyEmSize = 21.75F;
  806. this.lblCntAll.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  807. this.lblCntAll.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  808. this.lblCntAll.Name = "lblCntAll";
  809. this.lblCntAll.Size = new System.Drawing.Size(100, 23);
  810. this.lblCntAll.TabIndex = 6;
  811. this.lblCntAll.TestPointId = null;
  812. this.lblCntAll.UniformCode = null;
  813. this.lblCntAll.WindPowerId = null;
  814. this.lblCntAll.WindTurbineId = null;
  815. //
  816. // label3
  817. //
  818. this.label3.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  819. this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  820. this.label3.Location = new System.Drawing.Point(214, 98);
  821. this.label3.Name = "label3";
  822. this.label3.Size = new System.Drawing.Size(47, 22);
  823. this.label3.TabIndex = 5;
  824. this.label3.Text = "台";
  825. this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  826. //
  827. // label1
  828. //
  829. this.label1.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  830. this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  831. this.label1.Location = new System.Drawing.Point(23, 62);
  832. this.label1.Name = "label1";
  833. this.label1.Size = new System.Drawing.Size(89, 22);
  834. this.label1.TabIndex = 4;
  835. this.label1.Text = "装机容量:";
  836. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  837. //
  838. // lblCapacity
  839. //
  840. this.lblCapacity.BackColor = System.Drawing.Color.Transparent;
  841. this.lblCapacity.Font = new System.Drawing.Font("宋体", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  842. this.lblCapacity.LableShowType = 0;
  843. this.lblCapacity.LableText = "000000";
  844. this.lblCapacity.LableType = 0;
  845. this.lblCapacity.Location = new System.Drawing.Point(117, 61);
  846. this.lblCapacity.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  847. this.lblCapacity.MyEmSize = 21.75F;
  848. this.lblCapacity.MyLabelDock = System.Windows.Forms.DockStyle.Right;
  849. this.lblCapacity.MyLabelTextAlign = System.Drawing.ContentAlignment.TopLeft;
  850. this.lblCapacity.Name = "lblCapacity";
  851. this.lblCapacity.Size = new System.Drawing.Size(100, 23);
  852. this.lblCapacity.TabIndex = 3;
  853. this.lblCapacity.TestPointId = null;
  854. this.lblCapacity.UniformCode = null;
  855. this.lblCapacity.WindPowerId = null;
  856. this.lblCapacity.WindTurbineId = null;
  857. //
  858. // label10
  859. //
  860. this.label10.Font = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  861. this.label10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  862. this.label10.Location = new System.Drawing.Point(214, 62);
  863. this.label10.Name = "label10";
  864. this.label10.Size = new System.Drawing.Size(47, 22);
  865. this.label10.TabIndex = 2;
  866. this.label10.Text = "MW";
  867. this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  868. //
  869. // label9
  870. //
  871. this.label9.Font = new System.Drawing.Font("微软雅黑", 16F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  872. this.label9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(185)))), ((int)(((byte)(251)))));
  873. this.label9.Location = new System.Drawing.Point(13, 5);
  874. this.label9.Name = "label9";
  875. this.label9.Size = new System.Drawing.Size(904, 37);
  876. this.label9.TabIndex = 2;
  877. this.label9.Text = "石板泉风电场总貌图";
  878. this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  879. //
  880. // panel15
  881. //
  882. this.panel15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(16)))), ((int)(((byte)(47)))), ((int)(((byte)(107)))));
  883. this.panel15.Location = new System.Drawing.Point(2, 47);
  884. this.panel15.Name = "panel15";
  885. this.panel15.Size = new System.Drawing.Size(930, 1);
  886. this.panel15.TabIndex = 0;
  887. //
  888. // timer1
  889. //
  890. this.timer1.Enabled = true;
  891. this.timer1.Interval = 5000;
  892. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  893. //
  894. // timer2
  895. //
  896. this.timer2.Enabled = true;
  897. this.timer2.Interval = 1000;
  898. this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
  899. //
  900. // pnlLine
  901. //
  902. this.pnlLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  903. this.pnlLine.BackgroundImage = global::IntelligentControlForsx.Properties.Resources.zm_sbq;
  904. this.pnlLine.Controls.Add(this.windturbineIcon118);
  905. this.pnlLine.Controls.Add(this.windturbineIcon79);
  906. this.pnlLine.Controls.Add(this.windturbineIcon89);
  907. this.pnlLine.Controls.Add(this.windturbineIcon90);
  908. this.pnlLine.Controls.Add(this.windturbineIcon100);
  909. this.pnlLine.Controls.Add(this.windturbineIcon101);
  910. this.pnlLine.Controls.Add(this.windturbineIcon111);
  911. this.pnlLine.Controls.Add(this.windturbineIcon112);
  912. this.pnlLine.Controls.Add(this.windturbineIcon113);
  913. this.pnlLine.Controls.Add(this.windturbineIcon114);
  914. this.pnlLine.Controls.Add(this.windturbineIcon115);
  915. this.pnlLine.Controls.Add(this.windturbineIcon116);
  916. this.pnlLine.Controls.Add(this.windturbineIcon117);
  917. this.pnlLine.Controls.Add(this.windturbineIcon78);
  918. this.pnlLine.Controls.Add(this.windturbineIcon80);
  919. this.pnlLine.Controls.Add(this.windturbineIcon81);
  920. this.pnlLine.Controls.Add(this.windturbineIcon82);
  921. this.pnlLine.Controls.Add(this.windturbineIcon83);
  922. this.pnlLine.Controls.Add(this.windturbineIcon84);
  923. this.pnlLine.Controls.Add(this.windturbineIcon85);
  924. this.pnlLine.Controls.Add(this.windturbineIcon86);
  925. this.pnlLine.Controls.Add(this.windturbineIcon87);
  926. this.pnlLine.Controls.Add(this.windturbineIcon88);
  927. this.pnlLine.Controls.Add(this.windturbineIcon92);
  928. this.pnlLine.Controls.Add(this.windturbineIcon93);
  929. this.pnlLine.Controls.Add(this.windturbineIcon94);
  930. this.pnlLine.Controls.Add(this.windturbineIcon95);
  931. this.pnlLine.Controls.Add(this.windturbineIcon96);
  932. this.pnlLine.Controls.Add(this.windturbineIcon97);
  933. this.pnlLine.Controls.Add(this.windturbineIcon98);
  934. this.pnlLine.Controls.Add(this.windturbineIcon99);
  935. this.pnlLine.Controls.Add(this.windturbineIcon103);
  936. this.pnlLine.Controls.Add(this.windturbineIcon104);
  937. this.pnlLine.Controls.Add(this.windturbineIcon105);
  938. this.pnlLine.Controls.Add(this.windturbineIcon106);
  939. this.pnlLine.Controls.Add(this.windturbineIcon107);
  940. this.pnlLine.Controls.Add(this.windturbineIcon108);
  941. this.pnlLine.Controls.Add(this.windturbineIcon109);
  942. this.pnlLine.Controls.Add(this.windturbineIcon110);
  943. this.pnlLine.Controls.Add(this.windturbineIcon67);
  944. this.pnlLine.Controls.Add(this.windturbineIcon68);
  945. this.pnlLine.Controls.Add(this.windturbineIcon69);
  946. this.pnlLine.Controls.Add(this.windturbineIcon70);
  947. this.pnlLine.Controls.Add(this.windturbineIcon71);
  948. this.pnlLine.Controls.Add(this.windturbineIcon72);
  949. this.pnlLine.Controls.Add(this.windturbineIcon73);
  950. this.pnlLine.Controls.Add(this.windturbineIcon74);
  951. this.pnlLine.Controls.Add(this.windturbineIcon75);
  952. this.pnlLine.Controls.Add(this.windturbineIcon76);
  953. this.pnlLine.Controls.Add(this.windturbineIcon77);
  954. this.pnlLine.Controls.Add(this.windturbineIcon56);
  955. this.pnlLine.Controls.Add(this.windturbineIcon57);
  956. this.pnlLine.Controls.Add(this.windturbineIcon58);
  957. this.pnlLine.Controls.Add(this.windturbineIcon59);
  958. this.pnlLine.Controls.Add(this.windturbineIcon60);
  959. this.pnlLine.Controls.Add(this.windturbineIcon61);
  960. this.pnlLine.Controls.Add(this.windturbineIcon62);
  961. this.pnlLine.Controls.Add(this.windturbineIcon63);
  962. this.pnlLine.Controls.Add(this.windturbineIcon64);
  963. this.pnlLine.Controls.Add(this.windturbineIcon65);
  964. this.pnlLine.Controls.Add(this.windturbineIcon66);
  965. this.pnlLine.Controls.Add(this.windturbineIcon45);
  966. this.pnlLine.Controls.Add(this.windturbineIcon46);
  967. this.pnlLine.Controls.Add(this.windturbineIcon47);
  968. this.pnlLine.Controls.Add(this.windturbineIcon48);
  969. this.pnlLine.Controls.Add(this.windturbineIcon49);
  970. this.pnlLine.Controls.Add(this.windturbineIcon50);
  971. this.pnlLine.Controls.Add(this.windturbineIcon51);
  972. this.pnlLine.Controls.Add(this.windturbineIcon52);
  973. this.pnlLine.Controls.Add(this.windturbineIcon53);
  974. this.pnlLine.Controls.Add(this.windturbineIcon54);
  975. this.pnlLine.Controls.Add(this.windturbineIcon55);
  976. this.pnlLine.Controls.Add(this.windturbineIcon34);
  977. this.pnlLine.Controls.Add(this.windturbineIcon35);
  978. this.pnlLine.Controls.Add(this.windturbineIcon36);
  979. this.pnlLine.Controls.Add(this.windturbineIcon37);
  980. this.pnlLine.Controls.Add(this.windturbineIcon38);
  981. this.pnlLine.Controls.Add(this.windturbineIcon39);
  982. this.pnlLine.Controls.Add(this.windturbineIcon40);
  983. this.pnlLine.Controls.Add(this.windturbineIcon41);
  984. this.pnlLine.Controls.Add(this.windturbineIcon42);
  985. this.pnlLine.Controls.Add(this.windturbineIcon43);
  986. this.pnlLine.Controls.Add(this.windturbineIcon44);
  987. this.pnlLine.Controls.Add(this.windturbineIcon23);
  988. this.pnlLine.Controls.Add(this.windturbineIcon24);
  989. this.pnlLine.Controls.Add(this.windturbineIcon25);
  990. this.pnlLine.Controls.Add(this.windturbineIcon26);
  991. this.pnlLine.Controls.Add(this.windturbineIcon27);
  992. this.pnlLine.Controls.Add(this.windturbineIcon28);
  993. this.pnlLine.Controls.Add(this.windturbineIcon29);
  994. this.pnlLine.Controls.Add(this.windturbineIcon30);
  995. this.pnlLine.Controls.Add(this.windturbineIcon31);
  996. this.pnlLine.Controls.Add(this.windturbineIcon32);
  997. this.pnlLine.Controls.Add(this.windturbineIcon33);
  998. this.pnlLine.Controls.Add(this.windturbineIcon9);
  999. this.pnlLine.Controls.Add(this.windturbineIcon10);
  1000. this.pnlLine.Controls.Add(this.windturbineIcon11);
  1001. this.pnlLine.Controls.Add(this.windturbineIcon12);
  1002. this.pnlLine.Controls.Add(this.windturbineIcon13);
  1003. this.pnlLine.Controls.Add(this.windturbineIcon14);
  1004. this.pnlLine.Controls.Add(this.windturbineIcon15);
  1005. this.pnlLine.Controls.Add(this.windturbineIcon16);
  1006. this.pnlLine.Controls.Add(this.windturbineIcon20);
  1007. this.pnlLine.Controls.Add(this.windturbineIcon21);
  1008. this.pnlLine.Controls.Add(this.windturbineIcon22);
  1009. this.pnlLine.Controls.Add(this.windturbineIcon19);
  1010. this.pnlLine.Controls.Add(this.windturbineIcon17);
  1011. this.pnlLine.Controls.Add(this.windturbineIcon18);
  1012. this.pnlLine.Controls.Add(this.windturbineIcon5);
  1013. this.pnlLine.Controls.Add(this.windturbineIcon6);
  1014. this.pnlLine.Controls.Add(this.windturbineIcon7);
  1015. this.pnlLine.Controls.Add(this.windturbineIcon8);
  1016. this.pnlLine.Controls.Add(this.windturbineIcon3);
  1017. this.pnlLine.Controls.Add(this.windturbineIcon4);
  1018. this.pnlLine.Controls.Add(this.windturbineIcon2);
  1019. this.pnlLine.Controls.Add(this.windturbineIcon1);
  1020. this.pnlLine.Dock = System.Windows.Forms.DockStyle.Fill;
  1021. this.pnlLine.Location = new System.Drawing.Point(0, 230);
  1022. this.pnlLine.Name = "pnlLine";
  1023. this.pnlLine.Size = new System.Drawing.Size(1920, 730);
  1024. this.pnlLine.TabIndex = 4;
  1025. //
  1026. // windturbineIcon118
  1027. //
  1028. this.windturbineIcon118.BackColor = System.Drawing.Color.Transparent;
  1029. this.windturbineIcon118.Location = new System.Drawing.Point(1271, 287);
  1030. this.windturbineIcon118.Name = "windturbineIcon118";
  1031. this.windturbineIcon118.Size = new System.Drawing.Size(50, 85);
  1032. this.windturbineIcon118.Status = 1;
  1033. this.windturbineIcon118.TabIndex = 129;
  1034. this.windturbineIcon118.WindturbineId = "SG01_80";
  1035. this.windturbineIcon118.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1036. //
  1037. // windturbineIcon79
  1038. //
  1039. this.windturbineIcon79.BackColor = System.Drawing.Color.Transparent;
  1040. this.windturbineIcon79.Location = new System.Drawing.Point(1854, 287);
  1041. this.windturbineIcon79.Name = "windturbineIcon79";
  1042. this.windturbineIcon79.Size = new System.Drawing.Size(50, 85);
  1043. this.windturbineIcon79.Status = 1;
  1044. this.windturbineIcon79.TabIndex = 128;
  1045. this.windturbineIcon79.WindturbineId = "SG01_91";
  1046. this.windturbineIcon79.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1047. //
  1048. // windturbineIcon89
  1049. //
  1050. this.windturbineIcon89.BackColor = System.Drawing.Color.Transparent;
  1051. this.windturbineIcon89.Location = new System.Drawing.Point(1748, 287);
  1052. this.windturbineIcon89.Name = "windturbineIcon89";
  1053. this.windturbineIcon89.Size = new System.Drawing.Size(50, 85);
  1054. this.windturbineIcon89.Status = 1;
  1055. this.windturbineIcon89.TabIndex = 127;
  1056. this.windturbineIcon89.WindturbineId = "SG01_89";
  1057. this.windturbineIcon89.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1058. //
  1059. // windturbineIcon90
  1060. //
  1061. this.windturbineIcon90.BackColor = System.Drawing.Color.Transparent;
  1062. this.windturbineIcon90.Location = new System.Drawing.Point(1801, 287);
  1063. this.windturbineIcon90.Name = "windturbineIcon90";
  1064. this.windturbineIcon90.Size = new System.Drawing.Size(50, 85);
  1065. this.windturbineIcon90.Status = 1;
  1066. this.windturbineIcon90.TabIndex = 126;
  1067. this.windturbineIcon90.WindturbineId = "SG01_90";
  1068. this.windturbineIcon90.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1069. //
  1070. // windturbineIcon100
  1071. //
  1072. this.windturbineIcon100.BackColor = System.Drawing.Color.Transparent;
  1073. this.windturbineIcon100.Location = new System.Drawing.Point(1695, 287);
  1074. this.windturbineIcon100.Name = "windturbineIcon100";
  1075. this.windturbineIcon100.Size = new System.Drawing.Size(50, 85);
  1076. this.windturbineIcon100.Status = 1;
  1077. this.windturbineIcon100.TabIndex = 125;
  1078. this.windturbineIcon100.WindturbineId = "SG01_88";
  1079. this.windturbineIcon100.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1080. //
  1081. // windturbineIcon101
  1082. //
  1083. this.windturbineIcon101.BackColor = System.Drawing.Color.Transparent;
  1084. this.windturbineIcon101.Location = new System.Drawing.Point(1642, 287);
  1085. this.windturbineIcon101.Name = "windturbineIcon101";
  1086. this.windturbineIcon101.Size = new System.Drawing.Size(50, 85);
  1087. this.windturbineIcon101.Status = 1;
  1088. this.windturbineIcon101.TabIndex = 124;
  1089. this.windturbineIcon101.WindturbineId = "SG01_87";
  1090. this.windturbineIcon101.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1091. //
  1092. // windturbineIcon111
  1093. //
  1094. this.windturbineIcon111.BackColor = System.Drawing.Color.Transparent;
  1095. this.windturbineIcon111.Location = new System.Drawing.Point(1589, 287);
  1096. this.windturbineIcon111.Name = "windturbineIcon111";
  1097. this.windturbineIcon111.Size = new System.Drawing.Size(50, 85);
  1098. this.windturbineIcon111.Status = 1;
  1099. this.windturbineIcon111.TabIndex = 123;
  1100. this.windturbineIcon111.WindturbineId = "SG01_86";
  1101. this.windturbineIcon111.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1102. //
  1103. // windturbineIcon112
  1104. //
  1105. this.windturbineIcon112.BackColor = System.Drawing.Color.Transparent;
  1106. this.windturbineIcon112.Location = new System.Drawing.Point(1536, 287);
  1107. this.windturbineIcon112.Name = "windturbineIcon112";
  1108. this.windturbineIcon112.Size = new System.Drawing.Size(50, 85);
  1109. this.windturbineIcon112.Status = 1;
  1110. this.windturbineIcon112.TabIndex = 122;
  1111. this.windturbineIcon112.WindturbineId = "SG01_85";
  1112. this.windturbineIcon112.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1113. //
  1114. // windturbineIcon113
  1115. //
  1116. this.windturbineIcon113.BackColor = System.Drawing.Color.Transparent;
  1117. this.windturbineIcon113.Location = new System.Drawing.Point(1483, 287);
  1118. this.windturbineIcon113.Name = "windturbineIcon113";
  1119. this.windturbineIcon113.Size = new System.Drawing.Size(50, 85);
  1120. this.windturbineIcon113.Status = 1;
  1121. this.windturbineIcon113.TabIndex = 121;
  1122. this.windturbineIcon113.WindturbineId = "SG01_84";
  1123. this.windturbineIcon113.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1124. //
  1125. // windturbineIcon114
  1126. //
  1127. this.windturbineIcon114.BackColor = System.Drawing.Color.Transparent;
  1128. this.windturbineIcon114.Location = new System.Drawing.Point(1430, 287);
  1129. this.windturbineIcon114.Name = "windturbineIcon114";
  1130. this.windturbineIcon114.Size = new System.Drawing.Size(50, 85);
  1131. this.windturbineIcon114.Status = 1;
  1132. this.windturbineIcon114.TabIndex = 120;
  1133. this.windturbineIcon114.WindturbineId = "SG01_83";
  1134. this.windturbineIcon114.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1135. //
  1136. // windturbineIcon115
  1137. //
  1138. this.windturbineIcon115.BackColor = System.Drawing.Color.Transparent;
  1139. this.windturbineIcon115.Location = new System.Drawing.Point(1377, 287);
  1140. this.windturbineIcon115.Name = "windturbineIcon115";
  1141. this.windturbineIcon115.Size = new System.Drawing.Size(50, 85);
  1142. this.windturbineIcon115.Status = 1;
  1143. this.windturbineIcon115.TabIndex = 119;
  1144. this.windturbineIcon115.WindturbineId = "SG01_82";
  1145. this.windturbineIcon115.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1146. //
  1147. // windturbineIcon116
  1148. //
  1149. this.windturbineIcon116.BackColor = System.Drawing.Color.Transparent;
  1150. this.windturbineIcon116.Location = new System.Drawing.Point(1324, 287);
  1151. this.windturbineIcon116.Name = "windturbineIcon116";
  1152. this.windturbineIcon116.Size = new System.Drawing.Size(50, 85);
  1153. this.windturbineIcon116.Status = 1;
  1154. this.windturbineIcon116.TabIndex = 118;
  1155. this.windturbineIcon116.WindturbineId = "SG01_81";
  1156. this.windturbineIcon116.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1157. //
  1158. // windturbineIcon117
  1159. //
  1160. this.windturbineIcon117.BackColor = System.Drawing.Color.Transparent;
  1161. this.windturbineIcon117.Location = new System.Drawing.Point(1218, 287);
  1162. this.windturbineIcon117.Name = "windturbineIcon117";
  1163. this.windturbineIcon117.Size = new System.Drawing.Size(50, 85);
  1164. this.windturbineIcon117.Status = 1;
  1165. this.windturbineIcon117.TabIndex = 117;
  1166. this.windturbineIcon117.WindturbineId = "SG01_79";
  1167. this.windturbineIcon117.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1168. //
  1169. // windturbineIcon78
  1170. //
  1171. this.windturbineIcon78.BackColor = System.Drawing.Color.Transparent;
  1172. this.windturbineIcon78.Location = new System.Drawing.Point(1851, 41);
  1173. this.windturbineIcon78.Name = "windturbineIcon78";
  1174. this.windturbineIcon78.Size = new System.Drawing.Size(50, 85);
  1175. this.windturbineIcon78.Status = 1;
  1176. this.windturbineIcon78.TabIndex = 116;
  1177. this.windturbineIcon78.WindturbineId = "SG01_78";
  1178. this.windturbineIcon78.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1179. //
  1180. // windturbineIcon80
  1181. //
  1182. this.windturbineIcon80.BackColor = System.Drawing.Color.Transparent;
  1183. this.windturbineIcon80.Location = new System.Drawing.Point(1731, 642);
  1184. this.windturbineIcon80.Name = "windturbineIcon80";
  1185. this.windturbineIcon80.Size = new System.Drawing.Size(50, 85);
  1186. this.windturbineIcon80.Status = 1;
  1187. this.windturbineIcon80.TabIndex = 115;
  1188. this.windturbineIcon80.WindturbineId = "SG01_100";
  1189. this.windturbineIcon80.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1190. //
  1191. // windturbineIcon81
  1192. //
  1193. this.windturbineIcon81.BackColor = System.Drawing.Color.Transparent;
  1194. this.windturbineIcon81.Location = new System.Drawing.Point(1670, 642);
  1195. this.windturbineIcon81.Name = "windturbineIcon81";
  1196. this.windturbineIcon81.Size = new System.Drawing.Size(50, 85);
  1197. this.windturbineIcon81.Status = 1;
  1198. this.windturbineIcon81.TabIndex = 114;
  1199. this.windturbineIcon81.WindturbineId = "SG01_99";
  1200. this.windturbineIcon81.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1201. //
  1202. // windturbineIcon82
  1203. //
  1204. this.windturbineIcon82.BackColor = System.Drawing.Color.Transparent;
  1205. this.windturbineIcon82.Location = new System.Drawing.Point(1609, 642);
  1206. this.windturbineIcon82.Name = "windturbineIcon82";
  1207. this.windturbineIcon82.Size = new System.Drawing.Size(50, 85);
  1208. this.windturbineIcon82.Status = 1;
  1209. this.windturbineIcon82.TabIndex = 113;
  1210. this.windturbineIcon82.WindturbineId = "SG01_98";
  1211. this.windturbineIcon82.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1212. //
  1213. // windturbineIcon83
  1214. //
  1215. this.windturbineIcon83.BackColor = System.Drawing.Color.Transparent;
  1216. this.windturbineIcon83.Location = new System.Drawing.Point(1548, 642);
  1217. this.windturbineIcon83.Name = "windturbineIcon83";
  1218. this.windturbineIcon83.Size = new System.Drawing.Size(50, 85);
  1219. this.windturbineIcon83.Status = 1;
  1220. this.windturbineIcon83.TabIndex = 112;
  1221. this.windturbineIcon83.WindturbineId = "SG01_97";
  1222. this.windturbineIcon83.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1223. //
  1224. // windturbineIcon84
  1225. //
  1226. this.windturbineIcon84.BackColor = System.Drawing.Color.Transparent;
  1227. this.windturbineIcon84.Location = new System.Drawing.Point(1487, 642);
  1228. this.windturbineIcon84.Name = "windturbineIcon84";
  1229. this.windturbineIcon84.Size = new System.Drawing.Size(50, 85);
  1230. this.windturbineIcon84.Status = 1;
  1231. this.windturbineIcon84.TabIndex = 111;
  1232. this.windturbineIcon84.WindturbineId = "SG01_96";
  1233. this.windturbineIcon84.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1234. //
  1235. // windturbineIcon85
  1236. //
  1237. this.windturbineIcon85.BackColor = System.Drawing.Color.Transparent;
  1238. this.windturbineIcon85.Location = new System.Drawing.Point(1426, 642);
  1239. this.windturbineIcon85.Name = "windturbineIcon85";
  1240. this.windturbineIcon85.Size = new System.Drawing.Size(50, 85);
  1241. this.windturbineIcon85.Status = 1;
  1242. this.windturbineIcon85.TabIndex = 110;
  1243. this.windturbineIcon85.WindturbineId = "SG01_95";
  1244. this.windturbineIcon85.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1245. //
  1246. // windturbineIcon86
  1247. //
  1248. this.windturbineIcon86.BackColor = System.Drawing.Color.Transparent;
  1249. this.windturbineIcon86.Location = new System.Drawing.Point(1365, 642);
  1250. this.windturbineIcon86.Name = "windturbineIcon86";
  1251. this.windturbineIcon86.Size = new System.Drawing.Size(50, 85);
  1252. this.windturbineIcon86.Status = 1;
  1253. this.windturbineIcon86.TabIndex = 109;
  1254. this.windturbineIcon86.WindturbineId = "SG01_94";
  1255. this.windturbineIcon86.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1256. //
  1257. // windturbineIcon87
  1258. //
  1259. this.windturbineIcon87.BackColor = System.Drawing.Color.Transparent;
  1260. this.windturbineIcon87.Location = new System.Drawing.Point(1304, 642);
  1261. this.windturbineIcon87.Name = "windturbineIcon87";
  1262. this.windturbineIcon87.Size = new System.Drawing.Size(50, 85);
  1263. this.windturbineIcon87.Status = 1;
  1264. this.windturbineIcon87.TabIndex = 108;
  1265. this.windturbineIcon87.WindturbineId = "SG01_93";
  1266. this.windturbineIcon87.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1267. //
  1268. // windturbineIcon88
  1269. //
  1270. this.windturbineIcon88.BackColor = System.Drawing.Color.Transparent;
  1271. this.windturbineIcon88.Location = new System.Drawing.Point(1243, 642);
  1272. this.windturbineIcon88.Name = "windturbineIcon88";
  1273. this.windturbineIcon88.Size = new System.Drawing.Size(50, 85);
  1274. this.windturbineIcon88.Status = 1;
  1275. this.windturbineIcon88.TabIndex = 107;
  1276. this.windturbineIcon88.WindturbineId = "SG01_92";
  1277. this.windturbineIcon88.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1278. //
  1279. // windturbineIcon92
  1280. //
  1281. this.windturbineIcon92.BackColor = System.Drawing.Color.Transparent;
  1282. this.windturbineIcon92.Location = new System.Drawing.Point(1670, 520);
  1283. this.windturbineIcon92.Name = "windturbineIcon92";
  1284. this.windturbineIcon92.Size = new System.Drawing.Size(50, 85);
  1285. this.windturbineIcon92.Status = 1;
  1286. this.windturbineIcon92.TabIndex = 103;
  1287. this.windturbineIcon92.WindturbineId = "SG01_108";
  1288. this.windturbineIcon92.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1289. //
  1290. // windturbineIcon93
  1291. //
  1292. this.windturbineIcon93.BackColor = System.Drawing.Color.Transparent;
  1293. this.windturbineIcon93.Location = new System.Drawing.Point(1609, 520);
  1294. this.windturbineIcon93.Name = "windturbineIcon93";
  1295. this.windturbineIcon93.Size = new System.Drawing.Size(50, 85);
  1296. this.windturbineIcon93.Status = 1;
  1297. this.windturbineIcon93.TabIndex = 102;
  1298. this.windturbineIcon93.WindturbineId = "SG01_107";
  1299. this.windturbineIcon93.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1300. //
  1301. // windturbineIcon94
  1302. //
  1303. this.windturbineIcon94.BackColor = System.Drawing.Color.Transparent;
  1304. this.windturbineIcon94.Location = new System.Drawing.Point(1548, 520);
  1305. this.windturbineIcon94.Name = "windturbineIcon94";
  1306. this.windturbineIcon94.Size = new System.Drawing.Size(50, 85);
  1307. this.windturbineIcon94.Status = 1;
  1308. this.windturbineIcon94.TabIndex = 101;
  1309. this.windturbineIcon94.WindturbineId = "SG01_106";
  1310. this.windturbineIcon94.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1311. //
  1312. // windturbineIcon95
  1313. //
  1314. this.windturbineIcon95.BackColor = System.Drawing.Color.Transparent;
  1315. this.windturbineIcon95.Location = new System.Drawing.Point(1487, 520);
  1316. this.windturbineIcon95.Name = "windturbineIcon95";
  1317. this.windturbineIcon95.Size = new System.Drawing.Size(50, 85);
  1318. this.windturbineIcon95.Status = 1;
  1319. this.windturbineIcon95.TabIndex = 100;
  1320. this.windturbineIcon95.WindturbineId = "SG01_105";
  1321. this.windturbineIcon95.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1322. //
  1323. // windturbineIcon96
  1324. //
  1325. this.windturbineIcon96.BackColor = System.Drawing.Color.Transparent;
  1326. this.windturbineIcon96.Location = new System.Drawing.Point(1426, 520);
  1327. this.windturbineIcon96.Name = "windturbineIcon96";
  1328. this.windturbineIcon96.Size = new System.Drawing.Size(50, 85);
  1329. this.windturbineIcon96.Status = 1;
  1330. this.windturbineIcon96.TabIndex = 99;
  1331. this.windturbineIcon96.WindturbineId = "SG01_104";
  1332. this.windturbineIcon96.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1333. //
  1334. // windturbineIcon97
  1335. //
  1336. this.windturbineIcon97.BackColor = System.Drawing.Color.Transparent;
  1337. this.windturbineIcon97.Location = new System.Drawing.Point(1365, 520);
  1338. this.windturbineIcon97.Name = "windturbineIcon97";
  1339. this.windturbineIcon97.Size = new System.Drawing.Size(50, 85);
  1340. this.windturbineIcon97.Status = 1;
  1341. this.windturbineIcon97.TabIndex = 98;
  1342. this.windturbineIcon97.WindturbineId = "SG01_103";
  1343. this.windturbineIcon97.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1344. //
  1345. // windturbineIcon98
  1346. //
  1347. this.windturbineIcon98.BackColor = System.Drawing.Color.Transparent;
  1348. this.windturbineIcon98.Location = new System.Drawing.Point(1304, 520);
  1349. this.windturbineIcon98.Name = "windturbineIcon98";
  1350. this.windturbineIcon98.Size = new System.Drawing.Size(50, 85);
  1351. this.windturbineIcon98.Status = 1;
  1352. this.windturbineIcon98.TabIndex = 97;
  1353. this.windturbineIcon98.WindturbineId = "SG01_102";
  1354. this.windturbineIcon98.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1355. //
  1356. // windturbineIcon99
  1357. //
  1358. this.windturbineIcon99.BackColor = System.Drawing.Color.Transparent;
  1359. this.windturbineIcon99.Location = new System.Drawing.Point(1243, 520);
  1360. this.windturbineIcon99.Name = "windturbineIcon99";
  1361. this.windturbineIcon99.Size = new System.Drawing.Size(50, 85);
  1362. this.windturbineIcon99.Status = 1;
  1363. this.windturbineIcon99.TabIndex = 96;
  1364. this.windturbineIcon99.WindturbineId = "SG01_101";
  1365. this.windturbineIcon99.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1366. //
  1367. // windturbineIcon103
  1368. //
  1369. this.windturbineIcon103.BackColor = System.Drawing.Color.Transparent;
  1370. this.windturbineIcon103.Location = new System.Drawing.Point(1670, 399);
  1371. this.windturbineIcon103.Name = "windturbineIcon103";
  1372. this.windturbineIcon103.Size = new System.Drawing.Size(50, 85);
  1373. this.windturbineIcon103.Status = 1;
  1374. this.windturbineIcon103.TabIndex = 92;
  1375. this.windturbineIcon103.WindturbineId = "SG01_116";
  1376. this.windturbineIcon103.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1377. //
  1378. // windturbineIcon104
  1379. //
  1380. this.windturbineIcon104.BackColor = System.Drawing.Color.Transparent;
  1381. this.windturbineIcon104.Location = new System.Drawing.Point(1609, 399);
  1382. this.windturbineIcon104.Name = "windturbineIcon104";
  1383. this.windturbineIcon104.Size = new System.Drawing.Size(50, 85);
  1384. this.windturbineIcon104.Status = 1;
  1385. this.windturbineIcon104.TabIndex = 91;
  1386. this.windturbineIcon104.WindturbineId = "SG01_115";
  1387. this.windturbineIcon104.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1388. //
  1389. // windturbineIcon105
  1390. //
  1391. this.windturbineIcon105.BackColor = System.Drawing.Color.Transparent;
  1392. this.windturbineIcon105.Location = new System.Drawing.Point(1548, 399);
  1393. this.windturbineIcon105.Name = "windturbineIcon105";
  1394. this.windturbineIcon105.Size = new System.Drawing.Size(50, 85);
  1395. this.windturbineIcon105.Status = 1;
  1396. this.windturbineIcon105.TabIndex = 90;
  1397. this.windturbineIcon105.WindturbineId = "SG01_114";
  1398. this.windturbineIcon105.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1399. //
  1400. // windturbineIcon106
  1401. //
  1402. this.windturbineIcon106.BackColor = System.Drawing.Color.Transparent;
  1403. this.windturbineIcon106.Location = new System.Drawing.Point(1487, 399);
  1404. this.windturbineIcon106.Name = "windturbineIcon106";
  1405. this.windturbineIcon106.Size = new System.Drawing.Size(50, 85);
  1406. this.windturbineIcon106.Status = 1;
  1407. this.windturbineIcon106.TabIndex = 89;
  1408. this.windturbineIcon106.WindturbineId = "SG01_113";
  1409. this.windturbineIcon106.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1410. //
  1411. // windturbineIcon107
  1412. //
  1413. this.windturbineIcon107.BackColor = System.Drawing.Color.Transparent;
  1414. this.windturbineIcon107.Location = new System.Drawing.Point(1426, 399);
  1415. this.windturbineIcon107.Name = "windturbineIcon107";
  1416. this.windturbineIcon107.Size = new System.Drawing.Size(50, 85);
  1417. this.windturbineIcon107.Status = 1;
  1418. this.windturbineIcon107.TabIndex = 88;
  1419. this.windturbineIcon107.WindturbineId = "SG01_112";
  1420. this.windturbineIcon107.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1421. //
  1422. // windturbineIcon108
  1423. //
  1424. this.windturbineIcon108.BackColor = System.Drawing.Color.Transparent;
  1425. this.windturbineIcon108.Location = new System.Drawing.Point(1365, 399);
  1426. this.windturbineIcon108.Name = "windturbineIcon108";
  1427. this.windturbineIcon108.Size = new System.Drawing.Size(50, 85);
  1428. this.windturbineIcon108.Status = 1;
  1429. this.windturbineIcon108.TabIndex = 87;
  1430. this.windturbineIcon108.WindturbineId = "SG01_111";
  1431. this.windturbineIcon108.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1432. //
  1433. // windturbineIcon109
  1434. //
  1435. this.windturbineIcon109.BackColor = System.Drawing.Color.Transparent;
  1436. this.windturbineIcon109.Location = new System.Drawing.Point(1304, 399);
  1437. this.windturbineIcon109.Name = "windturbineIcon109";
  1438. this.windturbineIcon109.Size = new System.Drawing.Size(50, 85);
  1439. this.windturbineIcon109.Status = 1;
  1440. this.windturbineIcon109.TabIndex = 86;
  1441. this.windturbineIcon109.WindturbineId = "SG01_110";
  1442. this.windturbineIcon109.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1443. //
  1444. // windturbineIcon110
  1445. //
  1446. this.windturbineIcon110.BackColor = System.Drawing.Color.Transparent;
  1447. this.windturbineIcon110.Location = new System.Drawing.Point(1243, 399);
  1448. this.windturbineIcon110.Name = "windturbineIcon110";
  1449. this.windturbineIcon110.Size = new System.Drawing.Size(50, 85);
  1450. this.windturbineIcon110.Status = 1;
  1451. this.windturbineIcon110.TabIndex = 85;
  1452. this.windturbineIcon110.WindturbineId = "SG01_109";
  1453. this.windturbineIcon110.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1454. //
  1455. // windturbineIcon67
  1456. //
  1457. this.windturbineIcon67.BackColor = System.Drawing.Color.Transparent;
  1458. this.windturbineIcon67.Location = new System.Drawing.Point(570, 642);
  1459. this.windturbineIcon67.Name = "windturbineIcon67";
  1460. this.windturbineIcon67.Size = new System.Drawing.Size(50, 85);
  1461. this.windturbineIcon67.Status = 1;
  1462. this.windturbineIcon67.TabIndex = 84;
  1463. this.windturbineIcon67.WindturbineId = "SG01_65";
  1464. this.windturbineIcon67.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1465. //
  1466. // windturbineIcon68
  1467. //
  1468. this.windturbineIcon68.BackColor = System.Drawing.Color.Transparent;
  1469. this.windturbineIcon68.Location = new System.Drawing.Point(631, 642);
  1470. this.windturbineIcon68.Name = "windturbineIcon68";
  1471. this.windturbineIcon68.Size = new System.Drawing.Size(50, 85);
  1472. this.windturbineIcon68.Status = 1;
  1473. this.windturbineIcon68.TabIndex = 83;
  1474. this.windturbineIcon68.WindturbineId = "SG01_66";
  1475. this.windturbineIcon68.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1476. //
  1477. // windturbineIcon69
  1478. //
  1479. this.windturbineIcon69.BackColor = System.Drawing.Color.Transparent;
  1480. this.windturbineIcon69.Location = new System.Drawing.Point(509, 642);
  1481. this.windturbineIcon69.Name = "windturbineIcon69";
  1482. this.windturbineIcon69.Size = new System.Drawing.Size(50, 85);
  1483. this.windturbineIcon69.Status = 1;
  1484. this.windturbineIcon69.TabIndex = 82;
  1485. this.windturbineIcon69.WindturbineId = "SG01_64";
  1486. this.windturbineIcon69.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1487. //
  1488. // windturbineIcon70
  1489. //
  1490. this.windturbineIcon70.BackColor = System.Drawing.Color.Transparent;
  1491. this.windturbineIcon70.Location = new System.Drawing.Point(448, 642);
  1492. this.windturbineIcon70.Name = "windturbineIcon70";
  1493. this.windturbineIcon70.Size = new System.Drawing.Size(50, 85);
  1494. this.windturbineIcon70.Status = 1;
  1495. this.windturbineIcon70.TabIndex = 81;
  1496. this.windturbineIcon70.WindturbineId = "SG01_63";
  1497. this.windturbineIcon70.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1498. //
  1499. // windturbineIcon71
  1500. //
  1501. this.windturbineIcon71.BackColor = System.Drawing.Color.Transparent;
  1502. this.windturbineIcon71.Location = new System.Drawing.Point(387, 642);
  1503. this.windturbineIcon71.Name = "windturbineIcon71";
  1504. this.windturbineIcon71.Size = new System.Drawing.Size(50, 85);
  1505. this.windturbineIcon71.Status = 1;
  1506. this.windturbineIcon71.TabIndex = 80;
  1507. this.windturbineIcon71.WindturbineId = "SG01_62";
  1508. this.windturbineIcon71.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1509. //
  1510. // windturbineIcon72
  1511. //
  1512. this.windturbineIcon72.BackColor = System.Drawing.Color.Transparent;
  1513. this.windturbineIcon72.Location = new System.Drawing.Point(326, 642);
  1514. this.windturbineIcon72.Name = "windturbineIcon72";
  1515. this.windturbineIcon72.Size = new System.Drawing.Size(50, 85);
  1516. this.windturbineIcon72.Status = 1;
  1517. this.windturbineIcon72.TabIndex = 79;
  1518. this.windturbineIcon72.WindturbineId = "SG01_61";
  1519. this.windturbineIcon72.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1520. //
  1521. // windturbineIcon73
  1522. //
  1523. this.windturbineIcon73.BackColor = System.Drawing.Color.Transparent;
  1524. this.windturbineIcon73.Location = new System.Drawing.Point(265, 642);
  1525. this.windturbineIcon73.Name = "windturbineIcon73";
  1526. this.windturbineIcon73.Size = new System.Drawing.Size(50, 85);
  1527. this.windturbineIcon73.Status = 1;
  1528. this.windturbineIcon73.TabIndex = 78;
  1529. this.windturbineIcon73.WindturbineId = "SG01_60";
  1530. this.windturbineIcon73.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1531. //
  1532. // windturbineIcon74
  1533. //
  1534. this.windturbineIcon74.BackColor = System.Drawing.Color.Transparent;
  1535. this.windturbineIcon74.Location = new System.Drawing.Point(204, 642);
  1536. this.windturbineIcon74.Name = "windturbineIcon74";
  1537. this.windturbineIcon74.Size = new System.Drawing.Size(50, 85);
  1538. this.windturbineIcon74.Status = 1;
  1539. this.windturbineIcon74.TabIndex = 77;
  1540. this.windturbineIcon74.WindturbineId = "SG01_59";
  1541. this.windturbineIcon74.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1542. //
  1543. // windturbineIcon75
  1544. //
  1545. this.windturbineIcon75.BackColor = System.Drawing.Color.Transparent;
  1546. this.windturbineIcon75.Location = new System.Drawing.Point(143, 642);
  1547. this.windturbineIcon75.Name = "windturbineIcon75";
  1548. this.windturbineIcon75.Size = new System.Drawing.Size(50, 85);
  1549. this.windturbineIcon75.Status = 1;
  1550. this.windturbineIcon75.TabIndex = 76;
  1551. this.windturbineIcon75.WindturbineId = "SG01_58";
  1552. this.windturbineIcon75.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1553. //
  1554. // windturbineIcon76
  1555. //
  1556. this.windturbineIcon76.BackColor = System.Drawing.Color.Transparent;
  1557. this.windturbineIcon76.Location = new System.Drawing.Point(82, 642);
  1558. this.windturbineIcon76.Name = "windturbineIcon76";
  1559. this.windturbineIcon76.Size = new System.Drawing.Size(50, 85);
  1560. this.windturbineIcon76.Status = 1;
  1561. this.windturbineIcon76.TabIndex = 75;
  1562. this.windturbineIcon76.WindturbineId = "SG01_57";
  1563. this.windturbineIcon76.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1564. //
  1565. // windturbineIcon77
  1566. //
  1567. this.windturbineIcon77.BackColor = System.Drawing.Color.Transparent;
  1568. this.windturbineIcon77.Location = new System.Drawing.Point(21, 642);
  1569. this.windturbineIcon77.Name = "windturbineIcon77";
  1570. this.windturbineIcon77.Size = new System.Drawing.Size(50, 85);
  1571. this.windturbineIcon77.Status = 1;
  1572. this.windturbineIcon77.TabIndex = 74;
  1573. this.windturbineIcon77.WindturbineId = "SG01_56";
  1574. this.windturbineIcon77.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1575. //
  1576. // windturbineIcon56
  1577. //
  1578. this.windturbineIcon56.BackColor = System.Drawing.Color.Transparent;
  1579. this.windturbineIcon56.Location = new System.Drawing.Point(570, 520);
  1580. this.windturbineIcon56.Name = "windturbineIcon56";
  1581. this.windturbineIcon56.Size = new System.Drawing.Size(50, 85);
  1582. this.windturbineIcon56.Status = 1;
  1583. this.windturbineIcon56.TabIndex = 73;
  1584. this.windturbineIcon56.WindturbineId = "SG01_54";
  1585. this.windturbineIcon56.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1586. //
  1587. // windturbineIcon57
  1588. //
  1589. this.windturbineIcon57.BackColor = System.Drawing.Color.Transparent;
  1590. this.windturbineIcon57.Location = new System.Drawing.Point(631, 520);
  1591. this.windturbineIcon57.Name = "windturbineIcon57";
  1592. this.windturbineIcon57.Size = new System.Drawing.Size(50, 85);
  1593. this.windturbineIcon57.Status = 1;
  1594. this.windturbineIcon57.TabIndex = 72;
  1595. this.windturbineIcon57.WindturbineId = "SG01_55";
  1596. this.windturbineIcon57.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1597. //
  1598. // windturbineIcon58
  1599. //
  1600. this.windturbineIcon58.BackColor = System.Drawing.Color.Transparent;
  1601. this.windturbineIcon58.Location = new System.Drawing.Point(509, 520);
  1602. this.windturbineIcon58.Name = "windturbineIcon58";
  1603. this.windturbineIcon58.Size = new System.Drawing.Size(50, 85);
  1604. this.windturbineIcon58.Status = 1;
  1605. this.windturbineIcon58.TabIndex = 71;
  1606. this.windturbineIcon58.WindturbineId = "SG01_53";
  1607. this.windturbineIcon58.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1608. //
  1609. // windturbineIcon59
  1610. //
  1611. this.windturbineIcon59.BackColor = System.Drawing.Color.Transparent;
  1612. this.windturbineIcon59.Location = new System.Drawing.Point(448, 520);
  1613. this.windturbineIcon59.Name = "windturbineIcon59";
  1614. this.windturbineIcon59.Size = new System.Drawing.Size(50, 85);
  1615. this.windturbineIcon59.Status = 1;
  1616. this.windturbineIcon59.TabIndex = 70;
  1617. this.windturbineIcon59.WindturbineId = "SG01_52";
  1618. this.windturbineIcon59.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1619. //
  1620. // windturbineIcon60
  1621. //
  1622. this.windturbineIcon60.BackColor = System.Drawing.Color.Transparent;
  1623. this.windturbineIcon60.Location = new System.Drawing.Point(387, 520);
  1624. this.windturbineIcon60.Name = "windturbineIcon60";
  1625. this.windturbineIcon60.Size = new System.Drawing.Size(50, 85);
  1626. this.windturbineIcon60.Status = 1;
  1627. this.windturbineIcon60.TabIndex = 69;
  1628. this.windturbineIcon60.WindturbineId = "SG01_51";
  1629. this.windturbineIcon60.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1630. //
  1631. // windturbineIcon61
  1632. //
  1633. this.windturbineIcon61.BackColor = System.Drawing.Color.Transparent;
  1634. this.windturbineIcon61.Location = new System.Drawing.Point(326, 520);
  1635. this.windturbineIcon61.Name = "windturbineIcon61";
  1636. this.windturbineIcon61.Size = new System.Drawing.Size(50, 85);
  1637. this.windturbineIcon61.Status = 1;
  1638. this.windturbineIcon61.TabIndex = 68;
  1639. this.windturbineIcon61.WindturbineId = "SG01_50";
  1640. this.windturbineIcon61.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1641. //
  1642. // windturbineIcon62
  1643. //
  1644. this.windturbineIcon62.BackColor = System.Drawing.Color.Transparent;
  1645. this.windturbineIcon62.Location = new System.Drawing.Point(265, 520);
  1646. this.windturbineIcon62.Name = "windturbineIcon62";
  1647. this.windturbineIcon62.Size = new System.Drawing.Size(50, 85);
  1648. this.windturbineIcon62.Status = 1;
  1649. this.windturbineIcon62.TabIndex = 67;
  1650. this.windturbineIcon62.WindturbineId = "SG01_49";
  1651. this.windturbineIcon62.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1652. //
  1653. // windturbineIcon63
  1654. //
  1655. this.windturbineIcon63.BackColor = System.Drawing.Color.Transparent;
  1656. this.windturbineIcon63.Location = new System.Drawing.Point(204, 520);
  1657. this.windturbineIcon63.Name = "windturbineIcon63";
  1658. this.windturbineIcon63.Size = new System.Drawing.Size(50, 85);
  1659. this.windturbineIcon63.Status = 1;
  1660. this.windturbineIcon63.TabIndex = 66;
  1661. this.windturbineIcon63.WindturbineId = "SG01_48";
  1662. this.windturbineIcon63.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1663. //
  1664. // windturbineIcon64
  1665. //
  1666. this.windturbineIcon64.BackColor = System.Drawing.Color.Transparent;
  1667. this.windturbineIcon64.Location = new System.Drawing.Point(143, 520);
  1668. this.windturbineIcon64.Name = "windturbineIcon64";
  1669. this.windturbineIcon64.Size = new System.Drawing.Size(50, 85);
  1670. this.windturbineIcon64.Status = 1;
  1671. this.windturbineIcon64.TabIndex = 65;
  1672. this.windturbineIcon64.WindturbineId = "SG01_47";
  1673. this.windturbineIcon64.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1674. //
  1675. // windturbineIcon65
  1676. //
  1677. this.windturbineIcon65.BackColor = System.Drawing.Color.Transparent;
  1678. this.windturbineIcon65.Location = new System.Drawing.Point(82, 520);
  1679. this.windturbineIcon65.Name = "windturbineIcon65";
  1680. this.windturbineIcon65.Size = new System.Drawing.Size(50, 85);
  1681. this.windturbineIcon65.Status = 1;
  1682. this.windturbineIcon65.TabIndex = 64;
  1683. this.windturbineIcon65.WindturbineId = "SG01_46";
  1684. this.windturbineIcon65.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1685. //
  1686. // windturbineIcon66
  1687. //
  1688. this.windturbineIcon66.BackColor = System.Drawing.Color.Transparent;
  1689. this.windturbineIcon66.Location = new System.Drawing.Point(21, 520);
  1690. this.windturbineIcon66.Name = "windturbineIcon66";
  1691. this.windturbineIcon66.Size = new System.Drawing.Size(50, 85);
  1692. this.windturbineIcon66.Status = 1;
  1693. this.windturbineIcon66.TabIndex = 63;
  1694. this.windturbineIcon66.WindturbineId = "SG01_45";
  1695. this.windturbineIcon66.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1696. //
  1697. // windturbineIcon45
  1698. //
  1699. this.windturbineIcon45.BackColor = System.Drawing.Color.Transparent;
  1700. this.windturbineIcon45.Location = new System.Drawing.Point(570, 399);
  1701. this.windturbineIcon45.Name = "windturbineIcon45";
  1702. this.windturbineIcon45.Size = new System.Drawing.Size(50, 85);
  1703. this.windturbineIcon45.Status = 1;
  1704. this.windturbineIcon45.TabIndex = 62;
  1705. this.windturbineIcon45.WindturbineId = "SG01_43";
  1706. this.windturbineIcon45.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1707. //
  1708. // windturbineIcon46
  1709. //
  1710. this.windturbineIcon46.BackColor = System.Drawing.Color.Transparent;
  1711. this.windturbineIcon46.Location = new System.Drawing.Point(631, 399);
  1712. this.windturbineIcon46.Name = "windturbineIcon46";
  1713. this.windturbineIcon46.Size = new System.Drawing.Size(50, 85);
  1714. this.windturbineIcon46.Status = 1;
  1715. this.windturbineIcon46.TabIndex = 61;
  1716. this.windturbineIcon46.WindturbineId = "SG01_44";
  1717. this.windturbineIcon46.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1718. //
  1719. // windturbineIcon47
  1720. //
  1721. this.windturbineIcon47.BackColor = System.Drawing.Color.Transparent;
  1722. this.windturbineIcon47.Location = new System.Drawing.Point(509, 399);
  1723. this.windturbineIcon47.Name = "windturbineIcon47";
  1724. this.windturbineIcon47.Size = new System.Drawing.Size(50, 85);
  1725. this.windturbineIcon47.Status = 1;
  1726. this.windturbineIcon47.TabIndex = 60;
  1727. this.windturbineIcon47.WindturbineId = "SG01_42";
  1728. this.windturbineIcon47.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1729. //
  1730. // windturbineIcon48
  1731. //
  1732. this.windturbineIcon48.BackColor = System.Drawing.Color.Transparent;
  1733. this.windturbineIcon48.Location = new System.Drawing.Point(448, 399);
  1734. this.windturbineIcon48.Name = "windturbineIcon48";
  1735. this.windturbineIcon48.Size = new System.Drawing.Size(50, 85);
  1736. this.windturbineIcon48.Status = 1;
  1737. this.windturbineIcon48.TabIndex = 59;
  1738. this.windturbineIcon48.WindturbineId = "SG01_41";
  1739. this.windturbineIcon48.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1740. //
  1741. // windturbineIcon49
  1742. //
  1743. this.windturbineIcon49.BackColor = System.Drawing.Color.Transparent;
  1744. this.windturbineIcon49.Location = new System.Drawing.Point(387, 399);
  1745. this.windturbineIcon49.Name = "windturbineIcon49";
  1746. this.windturbineIcon49.Size = new System.Drawing.Size(50, 85);
  1747. this.windturbineIcon49.Status = 1;
  1748. this.windturbineIcon49.TabIndex = 58;
  1749. this.windturbineIcon49.WindturbineId = "SG01_40";
  1750. this.windturbineIcon49.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1751. //
  1752. // windturbineIcon50
  1753. //
  1754. this.windturbineIcon50.BackColor = System.Drawing.Color.Transparent;
  1755. this.windturbineIcon50.Location = new System.Drawing.Point(326, 399);
  1756. this.windturbineIcon50.Name = "windturbineIcon50";
  1757. this.windturbineIcon50.Size = new System.Drawing.Size(50, 85);
  1758. this.windturbineIcon50.Status = 1;
  1759. this.windturbineIcon50.TabIndex = 57;
  1760. this.windturbineIcon50.WindturbineId = "SG01_39";
  1761. this.windturbineIcon50.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1762. //
  1763. // windturbineIcon51
  1764. //
  1765. this.windturbineIcon51.BackColor = System.Drawing.Color.Transparent;
  1766. this.windturbineIcon51.Location = new System.Drawing.Point(265, 399);
  1767. this.windturbineIcon51.Name = "windturbineIcon51";
  1768. this.windturbineIcon51.Size = new System.Drawing.Size(50, 85);
  1769. this.windturbineIcon51.Status = 1;
  1770. this.windturbineIcon51.TabIndex = 56;
  1771. this.windturbineIcon51.WindturbineId = "SG01_38";
  1772. this.windturbineIcon51.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1773. //
  1774. // windturbineIcon52
  1775. //
  1776. this.windturbineIcon52.BackColor = System.Drawing.Color.Transparent;
  1777. this.windturbineIcon52.Location = new System.Drawing.Point(204, 399);
  1778. this.windturbineIcon52.Name = "windturbineIcon52";
  1779. this.windturbineIcon52.Size = new System.Drawing.Size(50, 85);
  1780. this.windturbineIcon52.Status = 1;
  1781. this.windturbineIcon52.TabIndex = 55;
  1782. this.windturbineIcon52.WindturbineId = "SG01_37";
  1783. this.windturbineIcon52.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1784. //
  1785. // windturbineIcon53
  1786. //
  1787. this.windturbineIcon53.BackColor = System.Drawing.Color.Transparent;
  1788. this.windturbineIcon53.Location = new System.Drawing.Point(143, 399);
  1789. this.windturbineIcon53.Name = "windturbineIcon53";
  1790. this.windturbineIcon53.Size = new System.Drawing.Size(50, 85);
  1791. this.windturbineIcon53.Status = 1;
  1792. this.windturbineIcon53.TabIndex = 54;
  1793. this.windturbineIcon53.WindturbineId = "SG01_36";
  1794. this.windturbineIcon53.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1795. //
  1796. // windturbineIcon54
  1797. //
  1798. this.windturbineIcon54.BackColor = System.Drawing.Color.Transparent;
  1799. this.windturbineIcon54.Location = new System.Drawing.Point(82, 399);
  1800. this.windturbineIcon54.Name = "windturbineIcon54";
  1801. this.windturbineIcon54.Size = new System.Drawing.Size(50, 85);
  1802. this.windturbineIcon54.Status = 1;
  1803. this.windturbineIcon54.TabIndex = 53;
  1804. this.windturbineIcon54.WindturbineId = "SG01_35";
  1805. this.windturbineIcon54.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1806. //
  1807. // windturbineIcon55
  1808. //
  1809. this.windturbineIcon55.BackColor = System.Drawing.Color.Transparent;
  1810. this.windturbineIcon55.Location = new System.Drawing.Point(21, 399);
  1811. this.windturbineIcon55.Name = "windturbineIcon55";
  1812. this.windturbineIcon55.Size = new System.Drawing.Size(50, 85);
  1813. this.windturbineIcon55.Status = 1;
  1814. this.windturbineIcon55.TabIndex = 52;
  1815. this.windturbineIcon55.WindturbineId = "SG01_34";
  1816. this.windturbineIcon55.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1817. //
  1818. // windturbineIcon34
  1819. //
  1820. this.windturbineIcon34.BackColor = System.Drawing.Color.Transparent;
  1821. this.windturbineIcon34.Location = new System.Drawing.Point(570, 286);
  1822. this.windturbineIcon34.Name = "windturbineIcon34";
  1823. this.windturbineIcon34.Size = new System.Drawing.Size(50, 85);
  1824. this.windturbineIcon34.Status = 1;
  1825. this.windturbineIcon34.TabIndex = 51;
  1826. this.windturbineIcon34.WindturbineId = "SG01_32";
  1827. this.windturbineIcon34.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1828. //
  1829. // windturbineIcon35
  1830. //
  1831. this.windturbineIcon35.BackColor = System.Drawing.Color.Transparent;
  1832. this.windturbineIcon35.Location = new System.Drawing.Point(631, 286);
  1833. this.windturbineIcon35.Name = "windturbineIcon35";
  1834. this.windturbineIcon35.Size = new System.Drawing.Size(50, 85);
  1835. this.windturbineIcon35.Status = 1;
  1836. this.windturbineIcon35.TabIndex = 50;
  1837. this.windturbineIcon35.WindturbineId = "SG01_33";
  1838. this.windturbineIcon35.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1839. //
  1840. // windturbineIcon36
  1841. //
  1842. this.windturbineIcon36.BackColor = System.Drawing.Color.Transparent;
  1843. this.windturbineIcon36.Location = new System.Drawing.Point(509, 286);
  1844. this.windturbineIcon36.Name = "windturbineIcon36";
  1845. this.windturbineIcon36.Size = new System.Drawing.Size(50, 85);
  1846. this.windturbineIcon36.Status = 1;
  1847. this.windturbineIcon36.TabIndex = 49;
  1848. this.windturbineIcon36.WindturbineId = "SG01_31";
  1849. this.windturbineIcon36.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1850. //
  1851. // windturbineIcon37
  1852. //
  1853. this.windturbineIcon37.BackColor = System.Drawing.Color.Transparent;
  1854. this.windturbineIcon37.Location = new System.Drawing.Point(448, 286);
  1855. this.windturbineIcon37.Name = "windturbineIcon37";
  1856. this.windturbineIcon37.Size = new System.Drawing.Size(50, 85);
  1857. this.windturbineIcon37.Status = 1;
  1858. this.windturbineIcon37.TabIndex = 48;
  1859. this.windturbineIcon37.WindturbineId = "SG01_30";
  1860. this.windturbineIcon37.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1861. //
  1862. // windturbineIcon38
  1863. //
  1864. this.windturbineIcon38.BackColor = System.Drawing.Color.Transparent;
  1865. this.windturbineIcon38.Location = new System.Drawing.Point(387, 286);
  1866. this.windturbineIcon38.Name = "windturbineIcon38";
  1867. this.windturbineIcon38.Size = new System.Drawing.Size(50, 85);
  1868. this.windturbineIcon38.Status = 1;
  1869. this.windturbineIcon38.TabIndex = 47;
  1870. this.windturbineIcon38.WindturbineId = "SG01_29";
  1871. this.windturbineIcon38.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1872. //
  1873. // windturbineIcon39
  1874. //
  1875. this.windturbineIcon39.BackColor = System.Drawing.Color.Transparent;
  1876. this.windturbineIcon39.Location = new System.Drawing.Point(326, 286);
  1877. this.windturbineIcon39.Name = "windturbineIcon39";
  1878. this.windturbineIcon39.Size = new System.Drawing.Size(50, 85);
  1879. this.windturbineIcon39.Status = 1;
  1880. this.windturbineIcon39.TabIndex = 46;
  1881. this.windturbineIcon39.WindturbineId = "SG01_28";
  1882. this.windturbineIcon39.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1883. //
  1884. // windturbineIcon40
  1885. //
  1886. this.windturbineIcon40.BackColor = System.Drawing.Color.Transparent;
  1887. this.windturbineIcon40.Location = new System.Drawing.Point(265, 286);
  1888. this.windturbineIcon40.Name = "windturbineIcon40";
  1889. this.windturbineIcon40.Size = new System.Drawing.Size(50, 85);
  1890. this.windturbineIcon40.Status = 1;
  1891. this.windturbineIcon40.TabIndex = 45;
  1892. this.windturbineIcon40.WindturbineId = "SG01_27";
  1893. this.windturbineIcon40.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1894. //
  1895. // windturbineIcon41
  1896. //
  1897. this.windturbineIcon41.BackColor = System.Drawing.Color.Transparent;
  1898. this.windturbineIcon41.Location = new System.Drawing.Point(204, 286);
  1899. this.windturbineIcon41.Name = "windturbineIcon41";
  1900. this.windturbineIcon41.Size = new System.Drawing.Size(50, 85);
  1901. this.windturbineIcon41.Status = 1;
  1902. this.windturbineIcon41.TabIndex = 44;
  1903. this.windturbineIcon41.WindturbineId = "SG01_26";
  1904. this.windturbineIcon41.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1905. //
  1906. // windturbineIcon42
  1907. //
  1908. this.windturbineIcon42.BackColor = System.Drawing.Color.Transparent;
  1909. this.windturbineIcon42.Location = new System.Drawing.Point(143, 286);
  1910. this.windturbineIcon42.Name = "windturbineIcon42";
  1911. this.windturbineIcon42.Size = new System.Drawing.Size(50, 85);
  1912. this.windturbineIcon42.Status = 1;
  1913. this.windturbineIcon42.TabIndex = 43;
  1914. this.windturbineIcon42.WindturbineId = "SG01_25";
  1915. this.windturbineIcon42.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1916. //
  1917. // windturbineIcon43
  1918. //
  1919. this.windturbineIcon43.BackColor = System.Drawing.Color.Transparent;
  1920. this.windturbineIcon43.Location = new System.Drawing.Point(82, 286);
  1921. this.windturbineIcon43.Name = "windturbineIcon43";
  1922. this.windturbineIcon43.Size = new System.Drawing.Size(50, 85);
  1923. this.windturbineIcon43.Status = 1;
  1924. this.windturbineIcon43.TabIndex = 42;
  1925. this.windturbineIcon43.WindturbineId = "SG01_24";
  1926. this.windturbineIcon43.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1927. //
  1928. // windturbineIcon44
  1929. //
  1930. this.windturbineIcon44.BackColor = System.Drawing.Color.Transparent;
  1931. this.windturbineIcon44.Location = new System.Drawing.Point(21, 286);
  1932. this.windturbineIcon44.Name = "windturbineIcon44";
  1933. this.windturbineIcon44.Size = new System.Drawing.Size(50, 85);
  1934. this.windturbineIcon44.Status = 1;
  1935. this.windturbineIcon44.TabIndex = 41;
  1936. this.windturbineIcon44.WindturbineId = "SG01_23";
  1937. this.windturbineIcon44.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1938. //
  1939. // windturbineIcon23
  1940. //
  1941. this.windturbineIcon23.BackColor = System.Drawing.Color.Transparent;
  1942. this.windturbineIcon23.Location = new System.Drawing.Point(570, 164);
  1943. this.windturbineIcon23.Name = "windturbineIcon23";
  1944. this.windturbineIcon23.Size = new System.Drawing.Size(50, 85);
  1945. this.windturbineIcon23.Status = 1;
  1946. this.windturbineIcon23.TabIndex = 40;
  1947. this.windturbineIcon23.WindturbineId = "SG01_21";
  1948. this.windturbineIcon23.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1949. //
  1950. // windturbineIcon24
  1951. //
  1952. this.windturbineIcon24.BackColor = System.Drawing.Color.Transparent;
  1953. this.windturbineIcon24.Location = new System.Drawing.Point(631, 164);
  1954. this.windturbineIcon24.Name = "windturbineIcon24";
  1955. this.windturbineIcon24.Size = new System.Drawing.Size(50, 85);
  1956. this.windturbineIcon24.Status = 1;
  1957. this.windturbineIcon24.TabIndex = 39;
  1958. this.windturbineIcon24.WindturbineId = "SG01_22";
  1959. this.windturbineIcon24.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1960. //
  1961. // windturbineIcon25
  1962. //
  1963. this.windturbineIcon25.BackColor = System.Drawing.Color.Transparent;
  1964. this.windturbineIcon25.Location = new System.Drawing.Point(509, 164);
  1965. this.windturbineIcon25.Name = "windturbineIcon25";
  1966. this.windturbineIcon25.Size = new System.Drawing.Size(50, 85);
  1967. this.windturbineIcon25.Status = 1;
  1968. this.windturbineIcon25.TabIndex = 38;
  1969. this.windturbineIcon25.WindturbineId = "SG01_20";
  1970. this.windturbineIcon25.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1971. //
  1972. // windturbineIcon26
  1973. //
  1974. this.windturbineIcon26.BackColor = System.Drawing.Color.Transparent;
  1975. this.windturbineIcon26.Location = new System.Drawing.Point(448, 164);
  1976. this.windturbineIcon26.Name = "windturbineIcon26";
  1977. this.windturbineIcon26.Size = new System.Drawing.Size(50, 85);
  1978. this.windturbineIcon26.Status = 1;
  1979. this.windturbineIcon26.TabIndex = 37;
  1980. this.windturbineIcon26.WindturbineId = "SG01_19";
  1981. this.windturbineIcon26.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1982. //
  1983. // windturbineIcon27
  1984. //
  1985. this.windturbineIcon27.BackColor = System.Drawing.Color.Transparent;
  1986. this.windturbineIcon27.Location = new System.Drawing.Point(387, 164);
  1987. this.windturbineIcon27.Name = "windturbineIcon27";
  1988. this.windturbineIcon27.Size = new System.Drawing.Size(50, 85);
  1989. this.windturbineIcon27.Status = 1;
  1990. this.windturbineIcon27.TabIndex = 36;
  1991. this.windturbineIcon27.WindturbineId = "SG01_18";
  1992. this.windturbineIcon27.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  1993. //
  1994. // windturbineIcon28
  1995. //
  1996. this.windturbineIcon28.BackColor = System.Drawing.Color.Transparent;
  1997. this.windturbineIcon28.Location = new System.Drawing.Point(326, 164);
  1998. this.windturbineIcon28.Name = "windturbineIcon28";
  1999. this.windturbineIcon28.Size = new System.Drawing.Size(50, 85);
  2000. this.windturbineIcon28.Status = 1;
  2001. this.windturbineIcon28.TabIndex = 35;
  2002. this.windturbineIcon28.WindturbineId = "SG01_17";
  2003. this.windturbineIcon28.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2004. //
  2005. // windturbineIcon29
  2006. //
  2007. this.windturbineIcon29.BackColor = System.Drawing.Color.Transparent;
  2008. this.windturbineIcon29.Location = new System.Drawing.Point(265, 164);
  2009. this.windturbineIcon29.Name = "windturbineIcon29";
  2010. this.windturbineIcon29.Size = new System.Drawing.Size(50, 85);
  2011. this.windturbineIcon29.Status = 1;
  2012. this.windturbineIcon29.TabIndex = 34;
  2013. this.windturbineIcon29.WindturbineId = "SG01_16";
  2014. this.windturbineIcon29.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2015. //
  2016. // windturbineIcon30
  2017. //
  2018. this.windturbineIcon30.BackColor = System.Drawing.Color.Transparent;
  2019. this.windturbineIcon30.Location = new System.Drawing.Point(204, 164);
  2020. this.windturbineIcon30.Name = "windturbineIcon30";
  2021. this.windturbineIcon30.Size = new System.Drawing.Size(50, 85);
  2022. this.windturbineIcon30.Status = 1;
  2023. this.windturbineIcon30.TabIndex = 33;
  2024. this.windturbineIcon30.WindturbineId = "SG01_15";
  2025. this.windturbineIcon30.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2026. //
  2027. // windturbineIcon31
  2028. //
  2029. this.windturbineIcon31.BackColor = System.Drawing.Color.Transparent;
  2030. this.windturbineIcon31.Location = new System.Drawing.Point(143, 164);
  2031. this.windturbineIcon31.Name = "windturbineIcon31";
  2032. this.windturbineIcon31.Size = new System.Drawing.Size(50, 85);
  2033. this.windturbineIcon31.Status = 1;
  2034. this.windturbineIcon31.TabIndex = 32;
  2035. this.windturbineIcon31.WindturbineId = "SG01_14";
  2036. this.windturbineIcon31.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2037. //
  2038. // windturbineIcon32
  2039. //
  2040. this.windturbineIcon32.BackColor = System.Drawing.Color.Transparent;
  2041. this.windturbineIcon32.Location = new System.Drawing.Point(82, 164);
  2042. this.windturbineIcon32.Name = "windturbineIcon32";
  2043. this.windturbineIcon32.Size = new System.Drawing.Size(50, 85);
  2044. this.windturbineIcon32.Status = 1;
  2045. this.windturbineIcon32.TabIndex = 31;
  2046. this.windturbineIcon32.WindturbineId = "SG01_13";
  2047. this.windturbineIcon32.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2048. //
  2049. // windturbineIcon33
  2050. //
  2051. this.windturbineIcon33.BackColor = System.Drawing.Color.Transparent;
  2052. this.windturbineIcon33.Location = new System.Drawing.Point(21, 164);
  2053. this.windturbineIcon33.Name = "windturbineIcon33";
  2054. this.windturbineIcon33.Size = new System.Drawing.Size(50, 85);
  2055. this.windturbineIcon33.Status = 1;
  2056. this.windturbineIcon33.TabIndex = 30;
  2057. this.windturbineIcon33.WindturbineId = "SG01_12";
  2058. this.windturbineIcon33.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2059. //
  2060. // windturbineIcon9
  2061. //
  2062. this.windturbineIcon9.BackColor = System.Drawing.Color.Transparent;
  2063. this.windturbineIcon9.Location = new System.Drawing.Point(1737, 41);
  2064. this.windturbineIcon9.Name = "windturbineIcon9";
  2065. this.windturbineIcon9.Size = new System.Drawing.Size(50, 85);
  2066. this.windturbineIcon9.Status = 1;
  2067. this.windturbineIcon9.TabIndex = 29;
  2068. this.windturbineIcon9.WindturbineId = "SG01_76";
  2069. this.windturbineIcon9.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2070. //
  2071. // windturbineIcon10
  2072. //
  2073. this.windturbineIcon10.BackColor = System.Drawing.Color.Transparent;
  2074. this.windturbineIcon10.Location = new System.Drawing.Point(1794, 41);
  2075. this.windturbineIcon10.Name = "windturbineIcon10";
  2076. this.windturbineIcon10.Size = new System.Drawing.Size(50, 85);
  2077. this.windturbineIcon10.Status = 1;
  2078. this.windturbineIcon10.TabIndex = 28;
  2079. this.windturbineIcon10.WindturbineId = "SG01_77";
  2080. this.windturbineIcon10.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2081. //
  2082. // windturbineIcon11
  2083. //
  2084. this.windturbineIcon11.BackColor = System.Drawing.Color.Transparent;
  2085. this.windturbineIcon11.Location = new System.Drawing.Point(1680, 41);
  2086. this.windturbineIcon11.Name = "windturbineIcon11";
  2087. this.windturbineIcon11.Size = new System.Drawing.Size(50, 85);
  2088. this.windturbineIcon11.Status = 1;
  2089. this.windturbineIcon11.TabIndex = 27;
  2090. this.windturbineIcon11.WindturbineId = "SG01_75";
  2091. this.windturbineIcon11.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2092. //
  2093. // windturbineIcon12
  2094. //
  2095. this.windturbineIcon12.BackColor = System.Drawing.Color.Transparent;
  2096. this.windturbineIcon12.Location = new System.Drawing.Point(1623, 41);
  2097. this.windturbineIcon12.Name = "windturbineIcon12";
  2098. this.windturbineIcon12.Size = new System.Drawing.Size(50, 85);
  2099. this.windturbineIcon12.Status = 1;
  2100. this.windturbineIcon12.TabIndex = 26;
  2101. this.windturbineIcon12.WindturbineId = "SG01_74";
  2102. this.windturbineIcon12.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2103. //
  2104. // windturbineIcon13
  2105. //
  2106. this.windturbineIcon13.BackColor = System.Drawing.Color.Transparent;
  2107. this.windturbineIcon13.Location = new System.Drawing.Point(1566, 41);
  2108. this.windturbineIcon13.Name = "windturbineIcon13";
  2109. this.windturbineIcon13.Size = new System.Drawing.Size(50, 85);
  2110. this.windturbineIcon13.Status = 1;
  2111. this.windturbineIcon13.TabIndex = 25;
  2112. this.windturbineIcon13.WindturbineId = "SG01_73";
  2113. this.windturbineIcon13.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2114. //
  2115. // windturbineIcon14
  2116. //
  2117. this.windturbineIcon14.BackColor = System.Drawing.Color.Transparent;
  2118. this.windturbineIcon14.Location = new System.Drawing.Point(1509, 41);
  2119. this.windturbineIcon14.Name = "windturbineIcon14";
  2120. this.windturbineIcon14.Size = new System.Drawing.Size(50, 85);
  2121. this.windturbineIcon14.Status = 1;
  2122. this.windturbineIcon14.TabIndex = 24;
  2123. this.windturbineIcon14.WindturbineId = "SG01_72";
  2124. this.windturbineIcon14.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2125. //
  2126. // windturbineIcon15
  2127. //
  2128. this.windturbineIcon15.BackColor = System.Drawing.Color.Transparent;
  2129. this.windturbineIcon15.Location = new System.Drawing.Point(1452, 41);
  2130. this.windturbineIcon15.Name = "windturbineIcon15";
  2131. this.windturbineIcon15.Size = new System.Drawing.Size(50, 85);
  2132. this.windturbineIcon15.Status = 1;
  2133. this.windturbineIcon15.TabIndex = 23;
  2134. this.windturbineIcon15.WindturbineId = "SG01_71";
  2135. this.windturbineIcon15.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2136. //
  2137. // windturbineIcon16
  2138. //
  2139. this.windturbineIcon16.BackColor = System.Drawing.Color.Transparent;
  2140. this.windturbineIcon16.Location = new System.Drawing.Point(1395, 41);
  2141. this.windturbineIcon16.Name = "windturbineIcon16";
  2142. this.windturbineIcon16.Size = new System.Drawing.Size(50, 85);
  2143. this.windturbineIcon16.Status = 1;
  2144. this.windturbineIcon16.TabIndex = 22;
  2145. this.windturbineIcon16.WindturbineId = "SG01_70";
  2146. this.windturbineIcon16.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2147. //
  2148. // windturbineIcon20
  2149. //
  2150. this.windturbineIcon20.BackColor = System.Drawing.Color.Transparent;
  2151. this.windturbineIcon20.Location = new System.Drawing.Point(1338, 41);
  2152. this.windturbineIcon20.Name = "windturbineIcon20";
  2153. this.windturbineIcon20.Size = new System.Drawing.Size(50, 85);
  2154. this.windturbineIcon20.Status = 1;
  2155. this.windturbineIcon20.TabIndex = 21;
  2156. this.windturbineIcon20.WindturbineId = "SG01_69";
  2157. this.windturbineIcon20.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2158. //
  2159. // windturbineIcon21
  2160. //
  2161. this.windturbineIcon21.BackColor = System.Drawing.Color.Transparent;
  2162. this.windturbineIcon21.Location = new System.Drawing.Point(1281, 41);
  2163. this.windturbineIcon21.Name = "windturbineIcon21";
  2164. this.windturbineIcon21.Size = new System.Drawing.Size(50, 85);
  2165. this.windturbineIcon21.Status = 1;
  2166. this.windturbineIcon21.TabIndex = 20;
  2167. this.windturbineIcon21.WindturbineId = "SG01_68";
  2168. this.windturbineIcon21.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2169. //
  2170. // windturbineIcon22
  2171. //
  2172. this.windturbineIcon22.BackColor = System.Drawing.Color.Transparent;
  2173. this.windturbineIcon22.Location = new System.Drawing.Point(1224, 41);
  2174. this.windturbineIcon22.Name = "windturbineIcon22";
  2175. this.windturbineIcon22.Size = new System.Drawing.Size(50, 85);
  2176. this.windturbineIcon22.Status = 1;
  2177. this.windturbineIcon22.TabIndex = 19;
  2178. this.windturbineIcon22.WindturbineId = "SG01_67";
  2179. this.windturbineIcon22.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2180. //
  2181. // windturbineIcon19
  2182. //
  2183. this.windturbineIcon19.BackColor = System.Drawing.Color.Transparent;
  2184. this.windturbineIcon19.Location = new System.Drawing.Point(570, 41);
  2185. this.windturbineIcon19.Name = "windturbineIcon19";
  2186. this.windturbineIcon19.Size = new System.Drawing.Size(50, 85);
  2187. this.windturbineIcon19.Status = 1;
  2188. this.windturbineIcon19.TabIndex = 18;
  2189. this.windturbineIcon19.WindturbineId = "SG01_10";
  2190. this.windturbineIcon19.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2191. //
  2192. // windturbineIcon17
  2193. //
  2194. this.windturbineIcon17.BackColor = System.Drawing.Color.Transparent;
  2195. this.windturbineIcon17.Location = new System.Drawing.Point(631, 41);
  2196. this.windturbineIcon17.Name = "windturbineIcon17";
  2197. this.windturbineIcon17.Size = new System.Drawing.Size(50, 85);
  2198. this.windturbineIcon17.Status = 1;
  2199. this.windturbineIcon17.TabIndex = 17;
  2200. this.windturbineIcon17.WindturbineId = "SG01_11";
  2201. this.windturbineIcon17.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2202. //
  2203. // windturbineIcon18
  2204. //
  2205. this.windturbineIcon18.BackColor = System.Drawing.Color.Transparent;
  2206. this.windturbineIcon18.Location = new System.Drawing.Point(509, 41);
  2207. this.windturbineIcon18.Name = "windturbineIcon18";
  2208. this.windturbineIcon18.Size = new System.Drawing.Size(50, 85);
  2209. this.windturbineIcon18.Status = 1;
  2210. this.windturbineIcon18.TabIndex = 16;
  2211. this.windturbineIcon18.WindturbineId = "SG01_09";
  2212. this.windturbineIcon18.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2213. //
  2214. // windturbineIcon5
  2215. //
  2216. this.windturbineIcon5.BackColor = System.Drawing.Color.Transparent;
  2217. this.windturbineIcon5.Location = new System.Drawing.Point(448, 41);
  2218. this.windturbineIcon5.Name = "windturbineIcon5";
  2219. this.windturbineIcon5.Size = new System.Drawing.Size(50, 85);
  2220. this.windturbineIcon5.Status = 1;
  2221. this.windturbineIcon5.TabIndex = 7;
  2222. this.windturbineIcon5.WindturbineId = "SG01_08";
  2223. this.windturbineIcon5.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2224. //
  2225. // windturbineIcon6
  2226. //
  2227. this.windturbineIcon6.BackColor = System.Drawing.Color.Transparent;
  2228. this.windturbineIcon6.Location = new System.Drawing.Point(387, 41);
  2229. this.windturbineIcon6.Name = "windturbineIcon6";
  2230. this.windturbineIcon6.Size = new System.Drawing.Size(50, 85);
  2231. this.windturbineIcon6.Status = 1;
  2232. this.windturbineIcon6.TabIndex = 6;
  2233. this.windturbineIcon6.WindturbineId = "SG01_07";
  2234. this.windturbineIcon6.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2235. //
  2236. // windturbineIcon7
  2237. //
  2238. this.windturbineIcon7.BackColor = System.Drawing.Color.Transparent;
  2239. this.windturbineIcon7.Location = new System.Drawing.Point(326, 41);
  2240. this.windturbineIcon7.Name = "windturbineIcon7";
  2241. this.windturbineIcon7.Size = new System.Drawing.Size(50, 85);
  2242. this.windturbineIcon7.Status = 1;
  2243. this.windturbineIcon7.TabIndex = 5;
  2244. this.windturbineIcon7.WindturbineId = "SG01_06";
  2245. this.windturbineIcon7.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2246. //
  2247. // windturbineIcon8
  2248. //
  2249. this.windturbineIcon8.BackColor = System.Drawing.Color.Transparent;
  2250. this.windturbineIcon8.Location = new System.Drawing.Point(265, 41);
  2251. this.windturbineIcon8.Name = "windturbineIcon8";
  2252. this.windturbineIcon8.Size = new System.Drawing.Size(50, 85);
  2253. this.windturbineIcon8.Status = 1;
  2254. this.windturbineIcon8.TabIndex = 4;
  2255. this.windturbineIcon8.WindturbineId = "SG01_05";
  2256. this.windturbineIcon8.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2257. //
  2258. // windturbineIcon3
  2259. //
  2260. this.windturbineIcon3.BackColor = System.Drawing.Color.Transparent;
  2261. this.windturbineIcon3.Location = new System.Drawing.Point(204, 41);
  2262. this.windturbineIcon3.Name = "windturbineIcon3";
  2263. this.windturbineIcon3.Size = new System.Drawing.Size(50, 85);
  2264. this.windturbineIcon3.Status = 1;
  2265. this.windturbineIcon3.TabIndex = 3;
  2266. this.windturbineIcon3.WindturbineId = "SG01_04";
  2267. this.windturbineIcon3.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2268. //
  2269. // windturbineIcon4
  2270. //
  2271. this.windturbineIcon4.BackColor = System.Drawing.Color.Transparent;
  2272. this.windturbineIcon4.Location = new System.Drawing.Point(143, 41);
  2273. this.windturbineIcon4.Name = "windturbineIcon4";
  2274. this.windturbineIcon4.Size = new System.Drawing.Size(50, 85);
  2275. this.windturbineIcon4.Status = 1;
  2276. this.windturbineIcon4.TabIndex = 2;
  2277. this.windturbineIcon4.WindturbineId = "SG01_03";
  2278. this.windturbineIcon4.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2279. //
  2280. // windturbineIcon2
  2281. //
  2282. this.windturbineIcon2.BackColor = System.Drawing.Color.Transparent;
  2283. this.windturbineIcon2.Location = new System.Drawing.Point(82, 41);
  2284. this.windturbineIcon2.Name = "windturbineIcon2";
  2285. this.windturbineIcon2.Size = new System.Drawing.Size(50, 85);
  2286. this.windturbineIcon2.Status = 1;
  2287. this.windturbineIcon2.TabIndex = 1;
  2288. this.windturbineIcon2.WindturbineId = "SG01_02";
  2289. this.windturbineIcon2.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2290. //
  2291. // windturbineIcon1
  2292. //
  2293. this.windturbineIcon1.BackColor = System.Drawing.Color.Transparent;
  2294. this.windturbineIcon1.Location = new System.Drawing.Point(21, 41);
  2295. this.windturbineIcon1.Name = "windturbineIcon1";
  2296. this.windturbineIcon1.Size = new System.Drawing.Size(50, 85);
  2297. this.windturbineIcon1.Status = 1;
  2298. this.windturbineIcon1.TabIndex = 0;
  2299. this.windturbineIcon1.WindturbineId = "SG01_01";
  2300. this.windturbineIcon1.MyClick += new System.EventHandler(this.Windturbine_MyClick);
  2301. //
  2302. // ZM_SBQ
  2303. //
  2304. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  2305. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2306. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(47)))), ((int)(((byte)(106)))));
  2307. this.Controls.Add(this.pnlLine);
  2308. this.Controls.Add(this.pnlTop);
  2309. this.ForeColor = System.Drawing.Color.Black;
  2310. this.Name = "ZM_SBQ";
  2311. this.Size = new System.Drawing.Size(1920, 960);
  2312. this.Load += new System.EventHandler(this.SbqZM_Load);
  2313. this.pnlTop.ResumeLayout(false);
  2314. this.pnlLink.ResumeLayout(false);
  2315. this.pnlCurve.ResumeLayout(false);
  2316. this.pnlStat.ResumeLayout(false);
  2317. this.pnlLine.ResumeLayout(false);
  2318. this.ResumeLayout(false);
  2319. }
  2320. #endregion
  2321. private System.Windows.Forms.Panel pnlTop;
  2322. private System.Windows.Forms.Panel pnlLine;
  2323. private WindturbineIcon windturbineIcon1;
  2324. private WindturbineIcon windturbineIcon2;
  2325. private StationPowerLine stationPowerLine1;
  2326. private WindturbineIcon windturbineIcon5;
  2327. private WindturbineIcon windturbineIcon6;
  2328. private WindturbineIcon windturbineIcon7;
  2329. private WindturbineIcon windturbineIcon8;
  2330. private WindturbineIcon windturbineIcon3;
  2331. private WindturbineIcon windturbineIcon4;
  2332. private System.Windows.Forms.Panel pnlStat;
  2333. private System.Windows.Forms.Label label18;
  2334. private WebfontLable lblCntLX;
  2335. private System.Windows.Forms.Label label19;
  2336. private System.Windows.Forms.Label label20;
  2337. private WebfontLable lblCntGZ;
  2338. private System.Windows.Forms.Label label21;
  2339. private System.Windows.Forms.Label label22;
  2340. private WebfontLable lblCntWH;
  2341. private System.Windows.Forms.Label label23;
  2342. private System.Windows.Forms.Label label24;
  2343. private WebfontLable lblCntTJ;
  2344. private System.Windows.Forms.Label label25;
  2345. private System.Windows.Forms.Label label8;
  2346. private WebfontLable lblCntSD;
  2347. private System.Windows.Forms.Label label11;
  2348. private System.Windows.Forms.Label label12;
  2349. private WebfontLable lblCntQD;
  2350. private System.Windows.Forms.Label label13;
  2351. private System.Windows.Forms.Label label14;
  2352. private WebfontLable lblCntDJ;
  2353. private System.Windows.Forms.Label label15;
  2354. private System.Windows.Forms.Label label16;
  2355. private WebfontLable lblCntBW;
  2356. private System.Windows.Forms.Label label17;
  2357. private System.Windows.Forms.Label label6;
  2358. private WebfontLable lblPower;
  2359. private System.Windows.Forms.Label label7;
  2360. private System.Windows.Forms.Label label4;
  2361. private WebfontLable lblWindspeed;
  2362. private System.Windows.Forms.Label label5;
  2363. private System.Windows.Forms.Label label2;
  2364. private WebfontLable lblCntAll;
  2365. private System.Windows.Forms.Label label3;
  2366. private System.Windows.Forms.Label label1;
  2367. private WebfontLable lblCapacity;
  2368. private System.Windows.Forms.Label label10;
  2369. private System.Windows.Forms.Label label9;
  2370. private System.Windows.Forms.Panel panel15;
  2371. private System.Windows.Forms.Panel pnlLink;
  2372. private System.Windows.Forms.Panel pnlCurve;
  2373. private System.Windows.Forms.Label lblDate;
  2374. private WebfontLable lblTime;
  2375. private System.Windows.Forms.Button btnSYZ;
  2376. private System.Windows.Forms.Button btnMap;
  2377. private System.Windows.Forms.Timer timer1;
  2378. private WindturbineIcon windturbineIcon9;
  2379. private WindturbineIcon windturbineIcon10;
  2380. private WindturbineIcon windturbineIcon11;
  2381. private WindturbineIcon windturbineIcon12;
  2382. private WindturbineIcon windturbineIcon13;
  2383. private WindturbineIcon windturbineIcon14;
  2384. private WindturbineIcon windturbineIcon15;
  2385. private WindturbineIcon windturbineIcon16;
  2386. private WindturbineIcon windturbineIcon20;
  2387. private WindturbineIcon windturbineIcon21;
  2388. private WindturbineIcon windturbineIcon22;
  2389. private WindturbineIcon windturbineIcon19;
  2390. private WindturbineIcon windturbineIcon18;
  2391. private WindturbineIcon windturbineIcon118;
  2392. private WindturbineIcon windturbineIcon79;
  2393. private WindturbineIcon windturbineIcon89;
  2394. private WindturbineIcon windturbineIcon90;
  2395. private WindturbineIcon windturbineIcon100;
  2396. private WindturbineIcon windturbineIcon101;
  2397. private WindturbineIcon windturbineIcon111;
  2398. private WindturbineIcon windturbineIcon112;
  2399. private WindturbineIcon windturbineIcon113;
  2400. private WindturbineIcon windturbineIcon114;
  2401. private WindturbineIcon windturbineIcon115;
  2402. private WindturbineIcon windturbineIcon116;
  2403. private WindturbineIcon windturbineIcon117;
  2404. private WindturbineIcon windturbineIcon78;
  2405. private WindturbineIcon windturbineIcon80;
  2406. private WindturbineIcon windturbineIcon81;
  2407. private WindturbineIcon windturbineIcon82;
  2408. private WindturbineIcon windturbineIcon83;
  2409. private WindturbineIcon windturbineIcon84;
  2410. private WindturbineIcon windturbineIcon85;
  2411. private WindturbineIcon windturbineIcon86;
  2412. private WindturbineIcon windturbineIcon87;
  2413. private WindturbineIcon windturbineIcon88;
  2414. private WindturbineIcon windturbineIcon92;
  2415. private WindturbineIcon windturbineIcon93;
  2416. private WindturbineIcon windturbineIcon94;
  2417. private WindturbineIcon windturbineIcon95;
  2418. private WindturbineIcon windturbineIcon96;
  2419. private WindturbineIcon windturbineIcon97;
  2420. private WindturbineIcon windturbineIcon98;
  2421. private WindturbineIcon windturbineIcon99;
  2422. private WindturbineIcon windturbineIcon103;
  2423. private WindturbineIcon windturbineIcon104;
  2424. private WindturbineIcon windturbineIcon105;
  2425. private WindturbineIcon windturbineIcon106;
  2426. private WindturbineIcon windturbineIcon107;
  2427. private WindturbineIcon windturbineIcon108;
  2428. private WindturbineIcon windturbineIcon109;
  2429. private WindturbineIcon windturbineIcon110;
  2430. private WindturbineIcon windturbineIcon67;
  2431. private WindturbineIcon windturbineIcon68;
  2432. private WindturbineIcon windturbineIcon69;
  2433. private WindturbineIcon windturbineIcon70;
  2434. private WindturbineIcon windturbineIcon71;
  2435. private WindturbineIcon windturbineIcon72;
  2436. private WindturbineIcon windturbineIcon73;
  2437. private WindturbineIcon windturbineIcon74;
  2438. private WindturbineIcon windturbineIcon75;
  2439. private WindturbineIcon windturbineIcon76;
  2440. private WindturbineIcon windturbineIcon77;
  2441. private WindturbineIcon windturbineIcon56;
  2442. private WindturbineIcon windturbineIcon57;
  2443. private WindturbineIcon windturbineIcon58;
  2444. private WindturbineIcon windturbineIcon59;
  2445. private WindturbineIcon windturbineIcon60;
  2446. private WindturbineIcon windturbineIcon61;
  2447. private WindturbineIcon windturbineIcon62;
  2448. private WindturbineIcon windturbineIcon63;
  2449. private WindturbineIcon windturbineIcon64;
  2450. private WindturbineIcon windturbineIcon65;
  2451. private WindturbineIcon windturbineIcon66;
  2452. private WindturbineIcon windturbineIcon45;
  2453. private WindturbineIcon windturbineIcon46;
  2454. private WindturbineIcon windturbineIcon47;
  2455. private WindturbineIcon windturbineIcon48;
  2456. private WindturbineIcon windturbineIcon49;
  2457. private WindturbineIcon windturbineIcon50;
  2458. private WindturbineIcon windturbineIcon51;
  2459. private WindturbineIcon windturbineIcon52;
  2460. private WindturbineIcon windturbineIcon53;
  2461. private WindturbineIcon windturbineIcon54;
  2462. private WindturbineIcon windturbineIcon55;
  2463. private WindturbineIcon windturbineIcon34;
  2464. private WindturbineIcon windturbineIcon35;
  2465. private WindturbineIcon windturbineIcon36;
  2466. private WindturbineIcon windturbineIcon37;
  2467. private WindturbineIcon windturbineIcon38;
  2468. private WindturbineIcon windturbineIcon39;
  2469. private WindturbineIcon windturbineIcon40;
  2470. private WindturbineIcon windturbineIcon41;
  2471. private WindturbineIcon windturbineIcon42;
  2472. private WindturbineIcon windturbineIcon43;
  2473. private WindturbineIcon windturbineIcon44;
  2474. private WindturbineIcon windturbineIcon23;
  2475. private WindturbineIcon windturbineIcon24;
  2476. private WindturbineIcon windturbineIcon25;
  2477. private WindturbineIcon windturbineIcon26;
  2478. private WindturbineIcon windturbineIcon27;
  2479. private WindturbineIcon windturbineIcon28;
  2480. private WindturbineIcon windturbineIcon29;
  2481. private WindturbineIcon windturbineIcon30;
  2482. private WindturbineIcon windturbineIcon31;
  2483. private WindturbineIcon windturbineIcon32;
  2484. private WindturbineIcon windturbineIcon33;
  2485. private System.Windows.Forms.Timer timer2;
  2486. private WindturbineIcon windturbineIcon17;
  2487. }
  2488. }