FrmEquipmentMonitor.Designer.cs.svn-base 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721
  1. namespace Core.LgMes.Client.lgIntegrationQuery
  2. {
  3. partial class FrmEquipmentMonitor
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn1 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("IRONID");
  30. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn2 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("INNO");
  31. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn3 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("HMPNO");
  32. Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn4 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("BOFNO");
  33. this.panel1 = new System.Windows.Forms.Panel();
  34. this.FJ68 = new System.Windows.Forms.Label();
  35. this.FJ67 = new System.Windows.Forms.Label();
  36. this.FJ66 = new System.Windows.Forms.Label();
  37. this.FJ65 = new System.Windows.Forms.Label();
  38. this.FJ64 = new System.Windows.Forms.Label();
  39. this.FJ63 = new System.Windows.Forms.Label();
  40. this.FJ62 = new System.Windows.Forms.Label();
  41. this.FJ61 = new System.Windows.Forms.Label();
  42. this.FJ58 = new System.Windows.Forms.Label();
  43. this.FJ57 = new System.Windows.Forms.Label();
  44. this.FJ56 = new System.Windows.Forms.Label();
  45. this.FJ55 = new System.Windows.Forms.Label();
  46. this.FJ54 = new System.Windows.Forms.Label();
  47. this.FJ53 = new System.Windows.Forms.Label();
  48. this.FJ52 = new System.Windows.Forms.Label();
  49. this.FJ51 = new System.Windows.Forms.Label();
  50. this.FJ48 = new System.Windows.Forms.Label();
  51. this.FJ47 = new System.Windows.Forms.Label();
  52. this.FJ46 = new System.Windows.Forms.Label();
  53. this.FJ45 = new System.Windows.Forms.Label();
  54. this.FJ44 = new System.Windows.Forms.Label();
  55. this.FJ43 = new System.Windows.Forms.Label();
  56. this.FJ42 = new System.Windows.Forms.Label();
  57. this.FJ41 = new System.Windows.Forms.Label();
  58. this.FJ38 = new System.Windows.Forms.Label();
  59. this.FJ37 = new System.Windows.Forms.Label();
  60. this.FJ36 = new System.Windows.Forms.Label();
  61. this.FJ35 = new System.Windows.Forms.Label();
  62. this.FJ34 = new System.Windows.Forms.Label();
  63. this.FJ33 = new System.Windows.Forms.Label();
  64. this.FJ32 = new System.Windows.Forms.Label();
  65. this.FJ31 = new System.Windows.Forms.Label();
  66. this.label113 = new System.Windows.Forms.Label();
  67. this.label112 = new System.Windows.Forms.Label();
  68. this.label111 = new System.Windows.Forms.Label();
  69. this.label110 = new System.Windows.Forms.Label();
  70. this.label109 = new System.Windows.Forms.Label();
  71. this.label108 = new System.Windows.Forms.Label();
  72. this.label107 = new System.Windows.Forms.Label();
  73. this.label106 = new System.Windows.Forms.Label();
  74. this.label105 = new System.Windows.Forms.Label();
  75. this.label104 = new System.Windows.Forms.Label();
  76. this.label103 = new System.Windows.Forms.Label();
  77. this.label102 = new System.Windows.Forms.Label();
  78. this.label101 = new System.Windows.Forms.Label();
  79. this.label100 = new System.Windows.Forms.Label();
  80. this.label99 = new System.Windows.Forms.Label();
  81. this.label98 = new System.Windows.Forms.Label();
  82. this.label97 = new System.Windows.Forms.Label();
  83. this.label96 = new System.Windows.Forms.Label();
  84. this.label95 = new System.Windows.Forms.Label();
  85. this.label94 = new System.Windows.Forms.Label();
  86. this.label93 = new System.Windows.Forms.Label();
  87. this.label92 = new System.Windows.Forms.Label();
  88. this.label91 = new System.Windows.Forms.Label();
  89. this.label90 = new System.Windows.Forms.Label();
  90. this.label89 = new System.Windows.Forms.Label();
  91. this.label88 = new System.Windows.Forms.Label();
  92. this.label87 = new System.Windows.Forms.Label();
  93. this.label86 = new System.Windows.Forms.Label();
  94. this.label85 = new System.Windows.Forms.Label();
  95. this.label84 = new System.Windows.Forms.Label();
  96. this.label83 = new System.Windows.Forms.Label();
  97. this.label82 = new System.Windows.Forms.Label();
  98. this.FJ28 = new System.Windows.Forms.Label();
  99. this.FJ27 = new System.Windows.Forms.Label();
  100. this.FJ26 = new System.Windows.Forms.Label();
  101. this.FJ25 = new System.Windows.Forms.Label();
  102. this.FJ24 = new System.Windows.Forms.Label();
  103. this.FJ23 = new System.Windows.Forms.Label();
  104. this.FJ22 = new System.Windows.Forms.Label();
  105. this.FJ21 = new System.Windows.Forms.Label();
  106. this.FJ18 = new System.Windows.Forms.Label();
  107. this.FJ17 = new System.Windows.Forms.Label();
  108. this.FJ16 = new System.Windows.Forms.Label();
  109. this.FJ15 = new System.Windows.Forms.Label();
  110. this.FJ14 = new System.Windows.Forms.Label();
  111. this.FJ13 = new System.Windows.Forms.Label();
  112. this.FJ12 = new System.Windows.Forms.Label();
  113. this.FJ11 = new System.Windows.Forms.Label();
  114. this.label81 = new System.Windows.Forms.Label();
  115. this.label80 = new System.Windows.Forms.Label();
  116. this.label79 = new System.Windows.Forms.Label();
  117. this.label78 = new System.Windows.Forms.Label();
  118. this.label77 = new System.Windows.Forms.Label();
  119. this.label76 = new System.Windows.Forms.Label();
  120. this.label75 = new System.Windows.Forms.Label();
  121. this.label74 = new System.Windows.Forms.Label();
  122. this.label73 = new System.Windows.Forms.Label();
  123. this.label72 = new System.Windows.Forms.Label();
  124. this.label71 = new System.Windows.Forms.Label();
  125. this.label70 = new System.Windows.Forms.Label();
  126. this.label69 = new System.Windows.Forms.Label();
  127. this.label68 = new System.Windows.Forms.Label();
  128. this.label67 = new System.Windows.Forms.Label();
  129. this.label66 = new System.Windows.Forms.Label();
  130. this.ECCC27 = new System.Windows.Forms.Label();
  131. this.ECCC26 = new System.Windows.Forms.Label();
  132. this.ECCC25 = new System.Windows.Forms.Label();
  133. this.ECCC24 = new System.Windows.Forms.Label();
  134. this.ECCC23 = new System.Windows.Forms.Label();
  135. this.ECCC22 = new System.Windows.Forms.Label();
  136. this.ECCC21 = new System.Windows.Forms.Label();
  137. this.ECCC17 = new System.Windows.Forms.Label();
  138. this.ECCC16 = new System.Windows.Forms.Label();
  139. this.ECCC15 = new System.Windows.Forms.Label();
  140. this.ECCC14 = new System.Windows.Forms.Label();
  141. this.ECCC13 = new System.Windows.Forms.Label();
  142. this.ECCC12 = new System.Windows.Forms.Label();
  143. this.ECCC11 = new System.Windows.Forms.Label();
  144. this.label65 = new System.Windows.Forms.Label();
  145. this.label64 = new System.Windows.Forms.Label();
  146. this.label63 = new System.Windows.Forms.Label();
  147. this.label62 = new System.Windows.Forms.Label();
  148. this.label61 = new System.Windows.Forms.Label();
  149. this.label60 = new System.Windows.Forms.Label();
  150. this.label59 = new System.Windows.Forms.Label();
  151. this.label58 = new System.Windows.Forms.Label();
  152. this.label57 = new System.Windows.Forms.Label();
  153. this.label56 = new System.Windows.Forms.Label();
  154. this.label55 = new System.Windows.Forms.Label();
  155. this.label54 = new System.Windows.Forms.Label();
  156. this.label53 = new System.Windows.Forms.Label();
  157. this.label52 = new System.Windows.Forms.Label();
  158. this.BOF42 = new System.Windows.Forms.Label();
  159. this.BOF411 = new System.Windows.Forms.Label();
  160. this.BOF410 = new System.Windows.Forms.Label();
  161. this.BOF49 = new System.Windows.Forms.Label();
  162. this.BOF48 = new System.Windows.Forms.Label();
  163. this.BOF47 = new System.Windows.Forms.Label();
  164. this.BOF46 = new System.Windows.Forms.Label();
  165. this.BOF45 = new System.Windows.Forms.Label();
  166. this.BOF44 = new System.Windows.Forms.Label();
  167. this.BOF43 = new System.Windows.Forms.Label();
  168. this.BOF41 = new System.Windows.Forms.Label();
  169. this.BOF311 = new System.Windows.Forms.Label();
  170. this.BOF310 = new System.Windows.Forms.Label();
  171. this.BOF39 = new System.Windows.Forms.Label();
  172. this.BOF38 = new System.Windows.Forms.Label();
  173. this.BOF37 = new System.Windows.Forms.Label();
  174. this.BOF36 = new System.Windows.Forms.Label();
  175. this.BOF35 = new System.Windows.Forms.Label();
  176. this.BOF34 = new System.Windows.Forms.Label();
  177. this.BOF33 = new System.Windows.Forms.Label();
  178. this.BOF32 = new System.Windows.Forms.Label();
  179. this.BOF31 = new System.Windows.Forms.Label();
  180. this.label51 = new System.Windows.Forms.Label();
  181. this.label50 = new System.Windows.Forms.Label();
  182. this.label49 = new System.Windows.Forms.Label();
  183. this.label48 = new System.Windows.Forms.Label();
  184. this.label47 = new System.Windows.Forms.Label();
  185. this.label46 = new System.Windows.Forms.Label();
  186. this.label45 = new System.Windows.Forms.Label();
  187. this.label44 = new System.Windows.Forms.Label();
  188. this.label43 = new System.Windows.Forms.Label();
  189. this.label42 = new System.Windows.Forms.Label();
  190. this.label41 = new System.Windows.Forms.Label();
  191. this.label40 = new System.Windows.Forms.Label();
  192. this.label39 = new System.Windows.Forms.Label();
  193. this.label38 = new System.Windows.Forms.Label();
  194. this.label37 = new System.Windows.Forms.Label();
  195. this.label36 = new System.Windows.Forms.Label();
  196. this.label35 = new System.Windows.Forms.Label();
  197. this.label34 = new System.Windows.Forms.Label();
  198. this.label33 = new System.Windows.Forms.Label();
  199. this.label32 = new System.Windows.Forms.Label();
  200. this.label31 = new System.Windows.Forms.Label();
  201. this.label30 = new System.Windows.Forms.Label();
  202. this.BOF211 = new System.Windows.Forms.Label();
  203. this.BOF210 = new System.Windows.Forms.Label();
  204. this.BOF29 = new System.Windows.Forms.Label();
  205. this.BOF28 = new System.Windows.Forms.Label();
  206. this.BOF27 = new System.Windows.Forms.Label();
  207. this.BOF26 = new System.Windows.Forms.Label();
  208. this.BOF25 = new System.Windows.Forms.Label();
  209. this.BOF24 = new System.Windows.Forms.Label();
  210. this.BOF23 = new System.Windows.Forms.Label();
  211. this.BOF22 = new System.Windows.Forms.Label();
  212. this.BOF21 = new System.Windows.Forms.Label();
  213. this.BOF111 = new System.Windows.Forms.Label();
  214. this.BOF110 = new System.Windows.Forms.Label();
  215. this.BOF19 = new System.Windows.Forms.Label();
  216. this.BOF18 = new System.Windows.Forms.Label();
  217. this.BOF17 = new System.Windows.Forms.Label();
  218. this.BOF16 = new System.Windows.Forms.Label();
  219. this.BOF15 = new System.Windows.Forms.Label();
  220. this.BOF14 = new System.Windows.Forms.Label();
  221. this.BOF13 = new System.Windows.Forms.Label();
  222. this.BOF12 = new System.Windows.Forms.Label();
  223. this.BOF11 = new System.Windows.Forms.Label();
  224. this.label29 = new System.Windows.Forms.Label();
  225. this.label28 = new System.Windows.Forms.Label();
  226. this.label27 = new System.Windows.Forms.Label();
  227. this.label26 = new System.Windows.Forms.Label();
  228. this.label25 = new System.Windows.Forms.Label();
  229. this.label24 = new System.Windows.Forms.Label();
  230. this.label23 = new System.Windows.Forms.Label();
  231. this.label22 = new System.Windows.Forms.Label();
  232. this.label21 = new System.Windows.Forms.Label();
  233. this.label20 = new System.Windows.Forms.Label();
  234. this.label19 = new System.Windows.Forms.Label();
  235. this.label18 = new System.Windows.Forms.Label();
  236. this.label17 = new System.Windows.Forms.Label();
  237. this.label16 = new System.Windows.Forms.Label();
  238. this.label15 = new System.Windows.Forms.Label();
  239. this.label14 = new System.Windows.Forms.Label();
  240. this.label13 = new System.Windows.Forms.Label();
  241. this.label12 = new System.Windows.Forms.Label();
  242. this.label11 = new System.Windows.Forms.Label();
  243. this.label10 = new System.Windows.Forms.Label();
  244. this.label9 = new System.Windows.Forms.Label();
  245. this.label8 = new System.Windows.Forms.Label();
  246. this.label7 = new System.Windows.Forms.Label();
  247. this.label6 = new System.Windows.Forms.Label();
  248. this.label5 = new System.Windows.Forms.Label();
  249. this.label4 = new System.Windows.Forms.Label();
  250. this.label3 = new System.Windows.Forms.Label();
  251. this.label2 = new System.Windows.Forms.Label();
  252. this.label1 = new System.Windows.Forms.Label();
  253. this.ultraDataSource1 = new Infragistics.Win.UltraWinDataSource.UltraDataSource(this.components);
  254. this.panel1.SuspendLayout();
  255. ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).BeginInit();
  256. this.SuspendLayout();
  257. //
  258. // panel1
  259. //
  260. this.panel1.BackColor = System.Drawing.Color.White;
  261. this.panel1.Controls.Add(this.FJ68);
  262. this.panel1.Controls.Add(this.FJ67);
  263. this.panel1.Controls.Add(this.FJ66);
  264. this.panel1.Controls.Add(this.FJ65);
  265. this.panel1.Controls.Add(this.FJ64);
  266. this.panel1.Controls.Add(this.FJ63);
  267. this.panel1.Controls.Add(this.FJ62);
  268. this.panel1.Controls.Add(this.FJ61);
  269. this.panel1.Controls.Add(this.FJ58);
  270. this.panel1.Controls.Add(this.FJ57);
  271. this.panel1.Controls.Add(this.FJ56);
  272. this.panel1.Controls.Add(this.FJ55);
  273. this.panel1.Controls.Add(this.FJ54);
  274. this.panel1.Controls.Add(this.FJ53);
  275. this.panel1.Controls.Add(this.FJ52);
  276. this.panel1.Controls.Add(this.FJ51);
  277. this.panel1.Controls.Add(this.FJ48);
  278. this.panel1.Controls.Add(this.FJ47);
  279. this.panel1.Controls.Add(this.FJ46);
  280. this.panel1.Controls.Add(this.FJ45);
  281. this.panel1.Controls.Add(this.FJ44);
  282. this.panel1.Controls.Add(this.FJ43);
  283. this.panel1.Controls.Add(this.FJ42);
  284. this.panel1.Controls.Add(this.FJ41);
  285. this.panel1.Controls.Add(this.FJ38);
  286. this.panel1.Controls.Add(this.FJ37);
  287. this.panel1.Controls.Add(this.FJ36);
  288. this.panel1.Controls.Add(this.FJ35);
  289. this.panel1.Controls.Add(this.FJ34);
  290. this.panel1.Controls.Add(this.FJ33);
  291. this.panel1.Controls.Add(this.FJ32);
  292. this.panel1.Controls.Add(this.FJ31);
  293. this.panel1.Controls.Add(this.label113);
  294. this.panel1.Controls.Add(this.label112);
  295. this.panel1.Controls.Add(this.label111);
  296. this.panel1.Controls.Add(this.label110);
  297. this.panel1.Controls.Add(this.label109);
  298. this.panel1.Controls.Add(this.label108);
  299. this.panel1.Controls.Add(this.label107);
  300. this.panel1.Controls.Add(this.label106);
  301. this.panel1.Controls.Add(this.label105);
  302. this.panel1.Controls.Add(this.label104);
  303. this.panel1.Controls.Add(this.label103);
  304. this.panel1.Controls.Add(this.label102);
  305. this.panel1.Controls.Add(this.label101);
  306. this.panel1.Controls.Add(this.label100);
  307. this.panel1.Controls.Add(this.label99);
  308. this.panel1.Controls.Add(this.label98);
  309. this.panel1.Controls.Add(this.label97);
  310. this.panel1.Controls.Add(this.label96);
  311. this.panel1.Controls.Add(this.label95);
  312. this.panel1.Controls.Add(this.label94);
  313. this.panel1.Controls.Add(this.label93);
  314. this.panel1.Controls.Add(this.label92);
  315. this.panel1.Controls.Add(this.label91);
  316. this.panel1.Controls.Add(this.label90);
  317. this.panel1.Controls.Add(this.label89);
  318. this.panel1.Controls.Add(this.label88);
  319. this.panel1.Controls.Add(this.label87);
  320. this.panel1.Controls.Add(this.label86);
  321. this.panel1.Controls.Add(this.label85);
  322. this.panel1.Controls.Add(this.label84);
  323. this.panel1.Controls.Add(this.label83);
  324. this.panel1.Controls.Add(this.label82);
  325. this.panel1.Controls.Add(this.FJ28);
  326. this.panel1.Controls.Add(this.FJ27);
  327. this.panel1.Controls.Add(this.FJ26);
  328. this.panel1.Controls.Add(this.FJ25);
  329. this.panel1.Controls.Add(this.FJ24);
  330. this.panel1.Controls.Add(this.FJ23);
  331. this.panel1.Controls.Add(this.FJ22);
  332. this.panel1.Controls.Add(this.FJ21);
  333. this.panel1.Controls.Add(this.FJ18);
  334. this.panel1.Controls.Add(this.FJ17);
  335. this.panel1.Controls.Add(this.FJ16);
  336. this.panel1.Controls.Add(this.FJ15);
  337. this.panel1.Controls.Add(this.FJ14);
  338. this.panel1.Controls.Add(this.FJ13);
  339. this.panel1.Controls.Add(this.FJ12);
  340. this.panel1.Controls.Add(this.FJ11);
  341. this.panel1.Controls.Add(this.label81);
  342. this.panel1.Controls.Add(this.label80);
  343. this.panel1.Controls.Add(this.label79);
  344. this.panel1.Controls.Add(this.label78);
  345. this.panel1.Controls.Add(this.label77);
  346. this.panel1.Controls.Add(this.label76);
  347. this.panel1.Controls.Add(this.label75);
  348. this.panel1.Controls.Add(this.label74);
  349. this.panel1.Controls.Add(this.label73);
  350. this.panel1.Controls.Add(this.label72);
  351. this.panel1.Controls.Add(this.label71);
  352. this.panel1.Controls.Add(this.label70);
  353. this.panel1.Controls.Add(this.label69);
  354. this.panel1.Controls.Add(this.label68);
  355. this.panel1.Controls.Add(this.label67);
  356. this.panel1.Controls.Add(this.label66);
  357. this.panel1.Controls.Add(this.ECCC27);
  358. this.panel1.Controls.Add(this.ECCC26);
  359. this.panel1.Controls.Add(this.ECCC25);
  360. this.panel1.Controls.Add(this.ECCC24);
  361. this.panel1.Controls.Add(this.ECCC23);
  362. this.panel1.Controls.Add(this.ECCC22);
  363. this.panel1.Controls.Add(this.ECCC21);
  364. this.panel1.Controls.Add(this.ECCC17);
  365. this.panel1.Controls.Add(this.ECCC16);
  366. this.panel1.Controls.Add(this.ECCC15);
  367. this.panel1.Controls.Add(this.ECCC14);
  368. this.panel1.Controls.Add(this.ECCC13);
  369. this.panel1.Controls.Add(this.ECCC12);
  370. this.panel1.Controls.Add(this.ECCC11);
  371. this.panel1.Controls.Add(this.label65);
  372. this.panel1.Controls.Add(this.label64);
  373. this.panel1.Controls.Add(this.label63);
  374. this.panel1.Controls.Add(this.label62);
  375. this.panel1.Controls.Add(this.label61);
  376. this.panel1.Controls.Add(this.label60);
  377. this.panel1.Controls.Add(this.label59);
  378. this.panel1.Controls.Add(this.label58);
  379. this.panel1.Controls.Add(this.label57);
  380. this.panel1.Controls.Add(this.label56);
  381. this.panel1.Controls.Add(this.label55);
  382. this.panel1.Controls.Add(this.label54);
  383. this.panel1.Controls.Add(this.label53);
  384. this.panel1.Controls.Add(this.label52);
  385. this.panel1.Controls.Add(this.BOF42);
  386. this.panel1.Controls.Add(this.BOF411);
  387. this.panel1.Controls.Add(this.BOF410);
  388. this.panel1.Controls.Add(this.BOF49);
  389. this.panel1.Controls.Add(this.BOF48);
  390. this.panel1.Controls.Add(this.BOF47);
  391. this.panel1.Controls.Add(this.BOF46);
  392. this.panel1.Controls.Add(this.BOF45);
  393. this.panel1.Controls.Add(this.BOF44);
  394. this.panel1.Controls.Add(this.BOF43);
  395. this.panel1.Controls.Add(this.BOF41);
  396. this.panel1.Controls.Add(this.BOF311);
  397. this.panel1.Controls.Add(this.BOF310);
  398. this.panel1.Controls.Add(this.BOF39);
  399. this.panel1.Controls.Add(this.BOF38);
  400. this.panel1.Controls.Add(this.BOF37);
  401. this.panel1.Controls.Add(this.BOF36);
  402. this.panel1.Controls.Add(this.BOF35);
  403. this.panel1.Controls.Add(this.BOF34);
  404. this.panel1.Controls.Add(this.BOF33);
  405. this.panel1.Controls.Add(this.BOF32);
  406. this.panel1.Controls.Add(this.BOF31);
  407. this.panel1.Controls.Add(this.label51);
  408. this.panel1.Controls.Add(this.label50);
  409. this.panel1.Controls.Add(this.label49);
  410. this.panel1.Controls.Add(this.label48);
  411. this.panel1.Controls.Add(this.label47);
  412. this.panel1.Controls.Add(this.label46);
  413. this.panel1.Controls.Add(this.label45);
  414. this.panel1.Controls.Add(this.label44);
  415. this.panel1.Controls.Add(this.label43);
  416. this.panel1.Controls.Add(this.label42);
  417. this.panel1.Controls.Add(this.label41);
  418. this.panel1.Controls.Add(this.label40);
  419. this.panel1.Controls.Add(this.label39);
  420. this.panel1.Controls.Add(this.label38);
  421. this.panel1.Controls.Add(this.label37);
  422. this.panel1.Controls.Add(this.label36);
  423. this.panel1.Controls.Add(this.label35);
  424. this.panel1.Controls.Add(this.label34);
  425. this.panel1.Controls.Add(this.label33);
  426. this.panel1.Controls.Add(this.label32);
  427. this.panel1.Controls.Add(this.label31);
  428. this.panel1.Controls.Add(this.label30);
  429. this.panel1.Controls.Add(this.BOF211);
  430. this.panel1.Controls.Add(this.BOF210);
  431. this.panel1.Controls.Add(this.BOF29);
  432. this.panel1.Controls.Add(this.BOF28);
  433. this.panel1.Controls.Add(this.BOF27);
  434. this.panel1.Controls.Add(this.BOF26);
  435. this.panel1.Controls.Add(this.BOF25);
  436. this.panel1.Controls.Add(this.BOF24);
  437. this.panel1.Controls.Add(this.BOF23);
  438. this.panel1.Controls.Add(this.BOF22);
  439. this.panel1.Controls.Add(this.BOF21);
  440. this.panel1.Controls.Add(this.BOF111);
  441. this.panel1.Controls.Add(this.BOF110);
  442. this.panel1.Controls.Add(this.BOF19);
  443. this.panel1.Controls.Add(this.BOF18);
  444. this.panel1.Controls.Add(this.BOF17);
  445. this.panel1.Controls.Add(this.BOF16);
  446. this.panel1.Controls.Add(this.BOF15);
  447. this.panel1.Controls.Add(this.BOF14);
  448. this.panel1.Controls.Add(this.BOF13);
  449. this.panel1.Controls.Add(this.BOF12);
  450. this.panel1.Controls.Add(this.BOF11);
  451. this.panel1.Controls.Add(this.label29);
  452. this.panel1.Controls.Add(this.label28);
  453. this.panel1.Controls.Add(this.label27);
  454. this.panel1.Controls.Add(this.label26);
  455. this.panel1.Controls.Add(this.label25);
  456. this.panel1.Controls.Add(this.label24);
  457. this.panel1.Controls.Add(this.label23);
  458. this.panel1.Controls.Add(this.label22);
  459. this.panel1.Controls.Add(this.label21);
  460. this.panel1.Controls.Add(this.label20);
  461. this.panel1.Controls.Add(this.label19);
  462. this.panel1.Controls.Add(this.label18);
  463. this.panel1.Controls.Add(this.label17);
  464. this.panel1.Controls.Add(this.label16);
  465. this.panel1.Controls.Add(this.label15);
  466. this.panel1.Controls.Add(this.label14);
  467. this.panel1.Controls.Add(this.label13);
  468. this.panel1.Controls.Add(this.label12);
  469. this.panel1.Controls.Add(this.label11);
  470. this.panel1.Controls.Add(this.label10);
  471. this.panel1.Controls.Add(this.label9);
  472. this.panel1.Controls.Add(this.label8);
  473. this.panel1.Controls.Add(this.label7);
  474. this.panel1.Controls.Add(this.label6);
  475. this.panel1.Controls.Add(this.label5);
  476. this.panel1.Controls.Add(this.label4);
  477. this.panel1.Controls.Add(this.label3);
  478. this.panel1.Controls.Add(this.label2);
  479. this.panel1.Controls.Add(this.label1);
  480. this.panel1.Location = new System.Drawing.Point(1, 2);
  481. this.panel1.Name = "panel1";
  482. this.panel1.Size = new System.Drawing.Size(1300, 900);
  483. this.panel1.TabIndex = 0;
  484. //
  485. // FJ68
  486. //
  487. this.FJ68.AutoSize = true;
  488. this.FJ68.Location = new System.Drawing.Point(1104, 720);
  489. this.FJ68.Name = "FJ68";
  490. this.FJ68.Size = new System.Drawing.Size(11, 12);
  491. this.FJ68.TabIndex = 446;
  492. this.FJ68.Text = "0";
  493. //
  494. // FJ67
  495. //
  496. this.FJ67.AutoSize = true;
  497. this.FJ67.Location = new System.Drawing.Point(1104, 680);
  498. this.FJ67.Name = "FJ67";
  499. this.FJ67.Size = new System.Drawing.Size(11, 12);
  500. this.FJ67.TabIndex = 445;
  501. this.FJ67.Text = "0";
  502. //
  503. // FJ66
  504. //
  505. this.FJ66.AutoSize = true;
  506. this.FJ66.Location = new System.Drawing.Point(1104, 640);
  507. this.FJ66.Name = "FJ66";
  508. this.FJ66.Size = new System.Drawing.Size(11, 12);
  509. this.FJ66.TabIndex = 444;
  510. this.FJ66.Text = "0";
  511. //
  512. // FJ65
  513. //
  514. this.FJ65.AutoSize = true;
  515. this.FJ65.Location = new System.Drawing.Point(1104, 600);
  516. this.FJ65.Name = "FJ65";
  517. this.FJ65.Size = new System.Drawing.Size(11, 12);
  518. this.FJ65.TabIndex = 443;
  519. this.FJ65.Text = "0";
  520. //
  521. // FJ64
  522. //
  523. this.FJ64.AutoSize = true;
  524. this.FJ64.Location = new System.Drawing.Point(1104, 560);
  525. this.FJ64.Name = "FJ64";
  526. this.FJ64.Size = new System.Drawing.Size(11, 12);
  527. this.FJ64.TabIndex = 442;
  528. this.FJ64.Text = "0";
  529. //
  530. // FJ63
  531. //
  532. this.FJ63.AutoSize = true;
  533. this.FJ63.Location = new System.Drawing.Point(1104, 520);
  534. this.FJ63.Name = "FJ63";
  535. this.FJ63.Size = new System.Drawing.Size(11, 12);
  536. this.FJ63.TabIndex = 441;
  537. this.FJ63.Text = "0";
  538. //
  539. // FJ62
  540. //
  541. this.FJ62.AutoSize = true;
  542. this.FJ62.Location = new System.Drawing.Point(1104, 480);
  543. this.FJ62.Name = "FJ62";
  544. this.FJ62.Size = new System.Drawing.Size(11, 12);
  545. this.FJ62.TabIndex = 440;
  546. this.FJ62.Text = "0";
  547. //
  548. // FJ61
  549. //
  550. this.FJ61.AutoSize = true;
  551. this.FJ61.Location = new System.Drawing.Point(1104, 440);
  552. this.FJ61.Name = "FJ61";
  553. this.FJ61.Size = new System.Drawing.Size(11, 12);
  554. this.FJ61.TabIndex = 439;
  555. this.FJ61.Text = "0";
  556. //
  557. // FJ58
  558. //
  559. this.FJ58.AutoSize = true;
  560. this.FJ58.Location = new System.Drawing.Point(900, 720);
  561. this.FJ58.Name = "FJ58";
  562. this.FJ58.Size = new System.Drawing.Size(11, 12);
  563. this.FJ58.TabIndex = 438;
  564. this.FJ58.Text = "0";
  565. //
  566. // FJ57
  567. //
  568. this.FJ57.AutoSize = true;
  569. this.FJ57.Location = new System.Drawing.Point(900, 680);
  570. this.FJ57.Name = "FJ57";
  571. this.FJ57.Size = new System.Drawing.Size(11, 12);
  572. this.FJ57.TabIndex = 437;
  573. this.FJ57.Text = "0";
  574. //
  575. // FJ56
  576. //
  577. this.FJ56.AutoSize = true;
  578. this.FJ56.Location = new System.Drawing.Point(900, 640);
  579. this.FJ56.Name = "FJ56";
  580. this.FJ56.Size = new System.Drawing.Size(11, 12);
  581. this.FJ56.TabIndex = 436;
  582. this.FJ56.Text = "0";
  583. //
  584. // FJ55
  585. //
  586. this.FJ55.AutoSize = true;
  587. this.FJ55.Location = new System.Drawing.Point(900, 600);
  588. this.FJ55.Name = "FJ55";
  589. this.FJ55.Size = new System.Drawing.Size(11, 12);
  590. this.FJ55.TabIndex = 435;
  591. this.FJ55.Text = "0";
  592. //
  593. // FJ54
  594. //
  595. this.FJ54.AutoSize = true;
  596. this.FJ54.Location = new System.Drawing.Point(900, 560);
  597. this.FJ54.Name = "FJ54";
  598. this.FJ54.Size = new System.Drawing.Size(11, 12);
  599. this.FJ54.TabIndex = 434;
  600. this.FJ54.Text = "0";
  601. //
  602. // FJ53
  603. //
  604. this.FJ53.AutoSize = true;
  605. this.FJ53.Location = new System.Drawing.Point(900, 520);
  606. this.FJ53.Name = "FJ53";
  607. this.FJ53.Size = new System.Drawing.Size(11, 12);
  608. this.FJ53.TabIndex = 433;
  609. this.FJ53.Text = "0";
  610. //
  611. // FJ52
  612. //
  613. this.FJ52.AutoSize = true;
  614. this.FJ52.Location = new System.Drawing.Point(900, 480);
  615. this.FJ52.Name = "FJ52";
  616. this.FJ52.Size = new System.Drawing.Size(11, 12);
  617. this.FJ52.TabIndex = 432;
  618. this.FJ52.Text = "0";
  619. //
  620. // FJ51
  621. //
  622. this.FJ51.AutoSize = true;
  623. this.FJ51.Location = new System.Drawing.Point(900, 440);
  624. this.FJ51.Name = "FJ51";
  625. this.FJ51.Size = new System.Drawing.Size(11, 12);
  626. this.FJ51.TabIndex = 431;
  627. this.FJ51.Text = "0";
  628. //
  629. // FJ48
  630. //
  631. this.FJ48.AutoSize = true;
  632. this.FJ48.Location = new System.Drawing.Point(703, 720);
  633. this.FJ48.Name = "FJ48";
  634. this.FJ48.Size = new System.Drawing.Size(11, 12);
  635. this.FJ48.TabIndex = 430;
  636. this.FJ48.Text = "0";
  637. //
  638. // FJ47
  639. //
  640. this.FJ47.AutoSize = true;
  641. this.FJ47.Location = new System.Drawing.Point(703, 680);
  642. this.FJ47.Name = "FJ47";
  643. this.FJ47.Size = new System.Drawing.Size(11, 12);
  644. this.FJ47.TabIndex = 429;
  645. this.FJ47.Text = "0";
  646. //
  647. // FJ46
  648. //
  649. this.FJ46.AutoSize = true;
  650. this.FJ46.Location = new System.Drawing.Point(703, 640);
  651. this.FJ46.Name = "FJ46";
  652. this.FJ46.Size = new System.Drawing.Size(11, 12);
  653. this.FJ46.TabIndex = 428;
  654. this.FJ46.Text = "0";
  655. //
  656. // FJ45
  657. //
  658. this.FJ45.AutoSize = true;
  659. this.FJ45.Location = new System.Drawing.Point(703, 600);
  660. this.FJ45.Name = "FJ45";
  661. this.FJ45.Size = new System.Drawing.Size(11, 12);
  662. this.FJ45.TabIndex = 427;
  663. this.FJ45.Text = "0";
  664. //
  665. // FJ44
  666. //
  667. this.FJ44.AutoSize = true;
  668. this.FJ44.Location = new System.Drawing.Point(703, 560);
  669. this.FJ44.Name = "FJ44";
  670. this.FJ44.Size = new System.Drawing.Size(11, 12);
  671. this.FJ44.TabIndex = 426;
  672. this.FJ44.Text = "0";
  673. //
  674. // FJ43
  675. //
  676. this.FJ43.AutoSize = true;
  677. this.FJ43.Location = new System.Drawing.Point(703, 520);
  678. this.FJ43.Name = "FJ43";
  679. this.FJ43.Size = new System.Drawing.Size(11, 12);
  680. this.FJ43.TabIndex = 425;
  681. this.FJ43.Text = "0";
  682. //
  683. // FJ42
  684. //
  685. this.FJ42.AutoSize = true;
  686. this.FJ42.Location = new System.Drawing.Point(703, 480);
  687. this.FJ42.Name = "FJ42";
  688. this.FJ42.Size = new System.Drawing.Size(11, 12);
  689. this.FJ42.TabIndex = 424;
  690. this.FJ42.Text = "0";
  691. //
  692. // FJ41
  693. //
  694. this.FJ41.AutoSize = true;
  695. this.FJ41.Location = new System.Drawing.Point(703, 440);
  696. this.FJ41.Name = "FJ41";
  697. this.FJ41.Size = new System.Drawing.Size(11, 12);
  698. this.FJ41.TabIndex = 423;
  699. this.FJ41.Text = "0";
  700. //
  701. // FJ38
  702. //
  703. this.FJ38.AutoSize = true;
  704. this.FJ38.Location = new System.Drawing.Point(504, 720);
  705. this.FJ38.Name = "FJ38";
  706. this.FJ38.Size = new System.Drawing.Size(11, 12);
  707. this.FJ38.TabIndex = 422;
  708. this.FJ38.Text = "0";
  709. //
  710. // FJ37
  711. //
  712. this.FJ37.AutoSize = true;
  713. this.FJ37.Location = new System.Drawing.Point(504, 680);
  714. this.FJ37.Name = "FJ37";
  715. this.FJ37.Size = new System.Drawing.Size(11, 12);
  716. this.FJ37.TabIndex = 421;
  717. this.FJ37.Text = "0";
  718. //
  719. // FJ36
  720. //
  721. this.FJ36.AutoSize = true;
  722. this.FJ36.Location = new System.Drawing.Point(504, 640);
  723. this.FJ36.Name = "FJ36";
  724. this.FJ36.Size = new System.Drawing.Size(11, 12);
  725. this.FJ36.TabIndex = 420;
  726. this.FJ36.Text = "0";
  727. //
  728. // FJ35
  729. //
  730. this.FJ35.AutoSize = true;
  731. this.FJ35.Location = new System.Drawing.Point(504, 600);
  732. this.FJ35.Name = "FJ35";
  733. this.FJ35.Size = new System.Drawing.Size(11, 12);
  734. this.FJ35.TabIndex = 419;
  735. this.FJ35.Text = "0";
  736. //
  737. // FJ34
  738. //
  739. this.FJ34.AutoSize = true;
  740. this.FJ34.Location = new System.Drawing.Point(504, 560);
  741. this.FJ34.Name = "FJ34";
  742. this.FJ34.Size = new System.Drawing.Size(11, 12);
  743. this.FJ34.TabIndex = 418;
  744. this.FJ34.Text = "0";
  745. //
  746. // FJ33
  747. //
  748. this.FJ33.AutoSize = true;
  749. this.FJ33.Location = new System.Drawing.Point(504, 520);
  750. this.FJ33.Name = "FJ33";
  751. this.FJ33.Size = new System.Drawing.Size(11, 12);
  752. this.FJ33.TabIndex = 417;
  753. this.FJ33.Text = "0";
  754. //
  755. // FJ32
  756. //
  757. this.FJ32.AutoSize = true;
  758. this.FJ32.Location = new System.Drawing.Point(504, 480);
  759. this.FJ32.Name = "FJ32";
  760. this.FJ32.Size = new System.Drawing.Size(11, 12);
  761. this.FJ32.TabIndex = 416;
  762. this.FJ32.Text = "0";
  763. //
  764. // FJ31
  765. //
  766. this.FJ31.AutoSize = true;
  767. this.FJ31.Location = new System.Drawing.Point(504, 440);
  768. this.FJ31.Name = "FJ31";
  769. this.FJ31.Size = new System.Drawing.Size(11, 12);
  770. this.FJ31.TabIndex = 415;
  771. this.FJ31.Text = "0";
  772. //
  773. // label113
  774. //
  775. this.label113.AutoSize = true;
  776. this.label113.Location = new System.Drawing.Point(980, 720);
  777. this.label113.Name = "label113";
  778. this.label113.Size = new System.Drawing.Size(53, 12);
  779. this.label113.TabIndex = 414;
  780. this.label113.Text = "风机转速";
  781. //
  782. // label112
  783. //
  784. this.label112.AutoSize = true;
  785. this.label112.Location = new System.Drawing.Point(980, 680);
  786. this.label112.Name = "label112";
  787. this.label112.Size = new System.Drawing.Size(53, 12);
  788. this.label112.TabIndex = 413;
  789. this.label112.Text = "电机电流";
  790. //
  791. // label111
  792. //
  793. this.label111.AutoSize = true;
  794. this.label111.Location = new System.Drawing.Point(980, 640);
  795. this.label111.Name = "label111";
  796. this.label111.Size = new System.Drawing.Size(89, 12);
  797. this.label111.TabIndex = 412;
  798. this.label111.Text = "固定端垂直振动";
  799. //
  800. // label110
  801. //
  802. this.label110.AutoSize = true;
  803. this.label110.Location = new System.Drawing.Point(980, 600);
  804. this.label110.Name = "label110";
  805. this.label110.Size = new System.Drawing.Size(89, 12);
  806. this.label110.TabIndex = 411;
  807. this.label110.Text = "固定端水平振动";
  808. //
  809. // label109
  810. //
  811. this.label109.AutoSize = true;
  812. this.label109.Location = new System.Drawing.Point(980, 560);
  813. this.label109.Name = "label109";
  814. this.label109.Size = new System.Drawing.Size(89, 12);
  815. this.label109.TabIndex = 410;
  816. this.label109.Text = "自由端垂直振动";
  817. //
  818. // label108
  819. //
  820. this.label108.AutoSize = true;
  821. this.label108.Location = new System.Drawing.Point(980, 520);
  822. this.label108.Name = "label108";
  823. this.label108.Size = new System.Drawing.Size(89, 12);
  824. this.label108.TabIndex = 409;
  825. this.label108.Text = "自由端水平振动";
  826. //
  827. // label107
  828. //
  829. this.label107.AutoSize = true;
  830. this.label107.Location = new System.Drawing.Point(980, 480);
  831. this.label107.Name = "label107";
  832. this.label107.Size = new System.Drawing.Size(77, 12);
  833. this.label107.TabIndex = 408;
  834. this.label107.Text = "液偶进油压力";
  835. //
  836. // label106
  837. //
  838. this.label106.AutoSize = true;
  839. this.label106.Location = new System.Drawing.Point(980, 440);
  840. this.label106.Name = "label106";
  841. this.label106.Size = new System.Drawing.Size(89, 12);
  842. this.label106.TabIndex = 407;
  843. this.label106.Text = "液偶润滑油压力";
  844. //
  845. // label105
  846. //
  847. this.label105.AutoSize = true;
  848. this.label105.Location = new System.Drawing.Point(803, 720);
  849. this.label105.Name = "label105";
  850. this.label105.Size = new System.Drawing.Size(77, 12);
  851. this.label105.TabIndex = 406;
  852. this.label105.Text = "外置油泵压力";
  853. //
  854. // label104
  855. //
  856. this.label104.AutoSize = true;
  857. this.label104.Location = new System.Drawing.Point(803, 680);
  858. this.label104.Name = "label104";
  859. this.label104.Size = new System.Drawing.Size(83, 12);
  860. this.label104.TabIndex = 405;
  861. this.label104.Text = "电机定子温度3";
  862. //
  863. // label103
  864. //
  865. this.label103.AutoSize = true;
  866. this.label103.Location = new System.Drawing.Point(803, 640);
  867. this.label103.Name = "label103";
  868. this.label103.Size = new System.Drawing.Size(83, 12);
  869. this.label103.TabIndex = 404;
  870. this.label103.Text = "电机定子温度2";
  871. //
  872. // label102
  873. //
  874. this.label102.AutoSize = true;
  875. this.label102.Location = new System.Drawing.Point(803, 600);
  876. this.label102.Name = "label102";
  877. this.label102.Size = new System.Drawing.Size(83, 12);
  878. this.label102.TabIndex = 403;
  879. this.label102.Text = "电机定子温度1";
  880. //
  881. // label101
  882. //
  883. this.label101.AutoSize = true;
  884. this.label101.Location = new System.Drawing.Point(803, 560);
  885. this.label101.Name = "label101";
  886. this.label101.Size = new System.Drawing.Size(89, 12);
  887. this.label101.TabIndex = 402;
  888. this.label101.Text = "风机后轴承轴温";
  889. //
  890. // label100
  891. //
  892. this.label100.AutoSize = true;
  893. this.label100.Location = new System.Drawing.Point(803, 520);
  894. this.label100.Name = "label100";
  895. this.label100.Size = new System.Drawing.Size(89, 12);
  896. this.label100.TabIndex = 401;
  897. this.label100.Text = "风机前轴承轴温";
  898. //
  899. // label99
  900. //
  901. this.label99.AutoSize = true;
  902. this.label99.Location = new System.Drawing.Point(803, 480);
  903. this.label99.Name = "label99";
  904. this.label99.Size = new System.Drawing.Size(89, 12);
  905. this.label99.TabIndex = 400;
  906. this.label99.Text = "电机后轴承轴温";
  907. //
  908. // label98
  909. //
  910. this.label98.AutoSize = true;
  911. this.label98.Location = new System.Drawing.Point(803, 440);
  912. this.label98.Name = "label98";
  913. this.label98.Size = new System.Drawing.Size(89, 12);
  914. this.label98.TabIndex = 399;
  915. this.label98.Text = "电机前轴承轴温";
  916. //
  917. // label97
  918. //
  919. this.label97.AutoSize = true;
  920. this.label97.Location = new System.Drawing.Point(600, 720);
  921. this.label97.Name = "label97";
  922. this.label97.Size = new System.Drawing.Size(53, 12);
  923. this.label97.TabIndex = 398;
  924. this.label97.Text = "风机转速";
  925. //
  926. // label96
  927. //
  928. this.label96.AutoSize = true;
  929. this.label96.Location = new System.Drawing.Point(600, 680);
  930. this.label96.Name = "label96";
  931. this.label96.Size = new System.Drawing.Size(53, 12);
  932. this.label96.TabIndex = 397;
  933. this.label96.Text = "电机电流";
  934. //
  935. // label95
  936. //
  937. this.label95.AutoSize = true;
  938. this.label95.Location = new System.Drawing.Point(600, 640);
  939. this.label95.Name = "label95";
  940. this.label95.Size = new System.Drawing.Size(89, 12);
  941. this.label95.TabIndex = 396;
  942. this.label95.Text = "固定端垂直振动";
  943. //
  944. // label94
  945. //
  946. this.label94.AutoSize = true;
  947. this.label94.Location = new System.Drawing.Point(600, 600);
  948. this.label94.Name = "label94";
  949. this.label94.Size = new System.Drawing.Size(89, 12);
  950. this.label94.TabIndex = 395;
  951. this.label94.Text = "固定端水平振动";
  952. //
  953. // label93
  954. //
  955. this.label93.AutoSize = true;
  956. this.label93.Location = new System.Drawing.Point(600, 560);
  957. this.label93.Name = "label93";
  958. this.label93.Size = new System.Drawing.Size(89, 12);
  959. this.label93.TabIndex = 394;
  960. this.label93.Text = "自由端垂直振动";
  961. //
  962. // label92
  963. //
  964. this.label92.AutoSize = true;
  965. this.label92.Location = new System.Drawing.Point(600, 520);
  966. this.label92.Name = "label92";
  967. this.label92.Size = new System.Drawing.Size(89, 12);
  968. this.label92.TabIndex = 393;
  969. this.label92.Text = "自由端水平振动";
  970. //
  971. // label91
  972. //
  973. this.label91.AutoSize = true;
  974. this.label91.Location = new System.Drawing.Point(600, 480);
  975. this.label91.Name = "label91";
  976. this.label91.Size = new System.Drawing.Size(77, 12);
  977. this.label91.TabIndex = 392;
  978. this.label91.Text = "液偶进油压力";
  979. //
  980. // label90
  981. //
  982. this.label90.AutoSize = true;
  983. this.label90.Location = new System.Drawing.Point(600, 440);
  984. this.label90.Name = "label90";
  985. this.label90.Size = new System.Drawing.Size(89, 12);
  986. this.label90.TabIndex = 391;
  987. this.label90.Text = "液偶润滑油压力";
  988. //
  989. // label89
  990. //
  991. this.label89.AutoSize = true;
  992. this.label89.Location = new System.Drawing.Point(403, 720);
  993. this.label89.Name = "label89";
  994. this.label89.Size = new System.Drawing.Size(77, 12);
  995. this.label89.TabIndex = 390;
  996. this.label89.Text = "外置油泵压力";
  997. //
  998. // label88
  999. //
  1000. this.label88.AutoSize = true;
  1001. this.label88.Location = new System.Drawing.Point(403, 680);
  1002. this.label88.Name = "label88";
  1003. this.label88.Size = new System.Drawing.Size(83, 12);
  1004. this.label88.TabIndex = 389;
  1005. this.label88.Text = "电机定子温度3";
  1006. //
  1007. // label87
  1008. //
  1009. this.label87.AutoSize = true;
  1010. this.label87.Location = new System.Drawing.Point(403, 640);
  1011. this.label87.Name = "label87";
  1012. this.label87.Size = new System.Drawing.Size(83, 12);
  1013. this.label87.TabIndex = 388;
  1014. this.label87.Text = "电机定子温度2";
  1015. //
  1016. // label86
  1017. //
  1018. this.label86.AutoSize = true;
  1019. this.label86.Location = new System.Drawing.Point(403, 600);
  1020. this.label86.Name = "label86";
  1021. this.label86.Size = new System.Drawing.Size(83, 12);
  1022. this.label86.TabIndex = 387;
  1023. this.label86.Text = "电机定子温度1";
  1024. //
  1025. // label85
  1026. //
  1027. this.label85.AutoSize = true;
  1028. this.label85.Location = new System.Drawing.Point(403, 560);
  1029. this.label85.Name = "label85";
  1030. this.label85.Size = new System.Drawing.Size(89, 12);
  1031. this.label85.TabIndex = 386;
  1032. this.label85.Text = "风机后轴承轴温";
  1033. //
  1034. // label84
  1035. //
  1036. this.label84.AutoSize = true;
  1037. this.label84.Location = new System.Drawing.Point(403, 520);
  1038. this.label84.Name = "label84";
  1039. this.label84.Size = new System.Drawing.Size(89, 12);
  1040. this.label84.TabIndex = 385;
  1041. this.label84.Text = "风机前轴承轴温";
  1042. //
  1043. // label83
  1044. //
  1045. this.label83.AutoSize = true;
  1046. this.label83.Location = new System.Drawing.Point(403, 480);
  1047. this.label83.Name = "label83";
  1048. this.label83.Size = new System.Drawing.Size(89, 12);
  1049. this.label83.TabIndex = 384;
  1050. this.label83.Text = "电机后轴承轴温";
  1051. //
  1052. // label82
  1053. //
  1054. this.label82.AutoSize = true;
  1055. this.label82.Location = new System.Drawing.Point(403, 440);
  1056. this.label82.Name = "label82";
  1057. this.label82.Size = new System.Drawing.Size(89, 12);
  1058. this.label82.TabIndex = 383;
  1059. this.label82.Text = "电机前轴承轴温";
  1060. //
  1061. // FJ28
  1062. //
  1063. this.FJ28.AutoSize = true;
  1064. this.FJ28.Location = new System.Drawing.Point(310, 720);
  1065. this.FJ28.Name = "FJ28";
  1066. this.FJ28.Size = new System.Drawing.Size(11, 12);
  1067. this.FJ28.TabIndex = 382;
  1068. this.FJ28.Text = "0";
  1069. //
  1070. // FJ27
  1071. //
  1072. this.FJ27.AutoSize = true;
  1073. this.FJ27.Location = new System.Drawing.Point(310, 680);
  1074. this.FJ27.Name = "FJ27";
  1075. this.FJ27.Size = new System.Drawing.Size(11, 12);
  1076. this.FJ27.TabIndex = 381;
  1077. this.FJ27.Text = "0";
  1078. //
  1079. // FJ26
  1080. //
  1081. this.FJ26.AutoSize = true;
  1082. this.FJ26.Location = new System.Drawing.Point(310, 640);
  1083. this.FJ26.Name = "FJ26";
  1084. this.FJ26.Size = new System.Drawing.Size(11, 12);
  1085. this.FJ26.TabIndex = 380;
  1086. this.FJ26.Text = "0";
  1087. //
  1088. // FJ25
  1089. //
  1090. this.FJ25.AutoSize = true;
  1091. this.FJ25.Location = new System.Drawing.Point(310, 600);
  1092. this.FJ25.Name = "FJ25";
  1093. this.FJ25.Size = new System.Drawing.Size(11, 12);
  1094. this.FJ25.TabIndex = 379;
  1095. this.FJ25.Text = "0";
  1096. //
  1097. // FJ24
  1098. //
  1099. this.FJ24.AutoSize = true;
  1100. this.FJ24.Location = new System.Drawing.Point(310, 560);
  1101. this.FJ24.Name = "FJ24";
  1102. this.FJ24.Size = new System.Drawing.Size(11, 12);
  1103. this.FJ24.TabIndex = 378;
  1104. this.FJ24.Text = "0";
  1105. //
  1106. // FJ23
  1107. //
  1108. this.FJ23.AutoSize = true;
  1109. this.FJ23.Location = new System.Drawing.Point(310, 520);
  1110. this.FJ23.Name = "FJ23";
  1111. this.FJ23.Size = new System.Drawing.Size(11, 12);
  1112. this.FJ23.TabIndex = 377;
  1113. this.FJ23.Text = "0";
  1114. //
  1115. // FJ22
  1116. //
  1117. this.FJ22.AutoSize = true;
  1118. this.FJ22.Location = new System.Drawing.Point(310, 480);
  1119. this.FJ22.Name = "FJ22";
  1120. this.FJ22.Size = new System.Drawing.Size(11, 12);
  1121. this.FJ22.TabIndex = 376;
  1122. this.FJ22.Text = "0";
  1123. //
  1124. // FJ21
  1125. //
  1126. this.FJ21.AutoSize = true;
  1127. this.FJ21.Location = new System.Drawing.Point(310, 440);
  1128. this.FJ21.Name = "FJ21";
  1129. this.FJ21.Size = new System.Drawing.Size(11, 12);
  1130. this.FJ21.TabIndex = 375;
  1131. this.FJ21.Text = "0";
  1132. //
  1133. // FJ18
  1134. //
  1135. this.FJ18.AutoSize = true;
  1136. this.FJ18.Location = new System.Drawing.Point(100, 720);
  1137. this.FJ18.Name = "FJ18";
  1138. this.FJ18.Size = new System.Drawing.Size(11, 12);
  1139. this.FJ18.TabIndex = 374;
  1140. this.FJ18.Text = "0";
  1141. //
  1142. // FJ17
  1143. //
  1144. this.FJ17.AutoSize = true;
  1145. this.FJ17.Location = new System.Drawing.Point(100, 680);
  1146. this.FJ17.Name = "FJ17";
  1147. this.FJ17.Size = new System.Drawing.Size(11, 12);
  1148. this.FJ17.TabIndex = 373;
  1149. this.FJ17.Text = "0";
  1150. //
  1151. // FJ16
  1152. //
  1153. this.FJ16.AutoSize = true;
  1154. this.FJ16.Location = new System.Drawing.Point(100, 640);
  1155. this.FJ16.Name = "FJ16";
  1156. this.FJ16.Size = new System.Drawing.Size(11, 12);
  1157. this.FJ16.TabIndex = 372;
  1158. this.FJ16.Text = "0";
  1159. //
  1160. // FJ15
  1161. //
  1162. this.FJ15.AutoSize = true;
  1163. this.FJ15.Location = new System.Drawing.Point(100, 600);
  1164. this.FJ15.Name = "FJ15";
  1165. this.FJ15.Size = new System.Drawing.Size(11, 12);
  1166. this.FJ15.TabIndex = 371;
  1167. this.FJ15.Text = "0";
  1168. //
  1169. // FJ14
  1170. //
  1171. this.FJ14.AutoSize = true;
  1172. this.FJ14.Location = new System.Drawing.Point(100, 560);
  1173. this.FJ14.Name = "FJ14";
  1174. this.FJ14.Size = new System.Drawing.Size(11, 12);
  1175. this.FJ14.TabIndex = 370;
  1176. this.FJ14.Text = "0";
  1177. //
  1178. // FJ13
  1179. //
  1180. this.FJ13.AutoSize = true;
  1181. this.FJ13.Location = new System.Drawing.Point(100, 520);
  1182. this.FJ13.Name = "FJ13";
  1183. this.FJ13.Size = new System.Drawing.Size(11, 12);
  1184. this.FJ13.TabIndex = 369;
  1185. this.FJ13.Text = "0";
  1186. //
  1187. // FJ12
  1188. //
  1189. this.FJ12.AutoSize = true;
  1190. this.FJ12.Location = new System.Drawing.Point(100, 480);
  1191. this.FJ12.Name = "FJ12";
  1192. this.FJ12.Size = new System.Drawing.Size(11, 12);
  1193. this.FJ12.TabIndex = 368;
  1194. this.FJ12.Text = "0";
  1195. //
  1196. // FJ11
  1197. //
  1198. this.FJ11.AutoSize = true;
  1199. this.FJ11.Location = new System.Drawing.Point(100, 440);
  1200. this.FJ11.Name = "FJ11";
  1201. this.FJ11.Size = new System.Drawing.Size(11, 12);
  1202. this.FJ11.TabIndex = 367;
  1203. this.FJ11.Text = "0";
  1204. //
  1205. // label81
  1206. //
  1207. this.label81.AutoSize = true;
  1208. this.label81.Location = new System.Drawing.Point(200, 720);
  1209. this.label81.Name = "label81";
  1210. this.label81.Size = new System.Drawing.Size(53, 12);
  1211. this.label81.TabIndex = 366;
  1212. this.label81.Text = "风机转速";
  1213. //
  1214. // label80
  1215. //
  1216. this.label80.AutoSize = true;
  1217. this.label80.Location = new System.Drawing.Point(200, 680);
  1218. this.label80.Name = "label80";
  1219. this.label80.Size = new System.Drawing.Size(53, 12);
  1220. this.label80.TabIndex = 365;
  1221. this.label80.Text = "电机电流";
  1222. //
  1223. // label79
  1224. //
  1225. this.label79.AutoSize = true;
  1226. this.label79.Location = new System.Drawing.Point(200, 640);
  1227. this.label79.Name = "label79";
  1228. this.label79.Size = new System.Drawing.Size(89, 12);
  1229. this.label79.TabIndex = 364;
  1230. this.label79.Text = "固定端垂直振动";
  1231. //
  1232. // label78
  1233. //
  1234. this.label78.AutoSize = true;
  1235. this.label78.Location = new System.Drawing.Point(200, 600);
  1236. this.label78.Name = "label78";
  1237. this.label78.Size = new System.Drawing.Size(89, 12);
  1238. this.label78.TabIndex = 363;
  1239. this.label78.Text = "固定端水平振动";
  1240. //
  1241. // label77
  1242. //
  1243. this.label77.AutoSize = true;
  1244. this.label77.Location = new System.Drawing.Point(200, 560);
  1245. this.label77.Name = "label77";
  1246. this.label77.Size = new System.Drawing.Size(89, 12);
  1247. this.label77.TabIndex = 362;
  1248. this.label77.Text = "自由端垂直振动";
  1249. //
  1250. // label76
  1251. //
  1252. this.label76.AutoSize = true;
  1253. this.label76.Location = new System.Drawing.Point(200, 520);
  1254. this.label76.Name = "label76";
  1255. this.label76.Size = new System.Drawing.Size(89, 12);
  1256. this.label76.TabIndex = 361;
  1257. this.label76.Text = "自由端水平振动";
  1258. //
  1259. // label75
  1260. //
  1261. this.label75.AutoSize = true;
  1262. this.label75.Location = new System.Drawing.Point(200, 480);
  1263. this.label75.Name = "label75";
  1264. this.label75.Size = new System.Drawing.Size(77, 12);
  1265. this.label75.TabIndex = 360;
  1266. this.label75.Text = "液偶进油压力";
  1267. //
  1268. // label74
  1269. //
  1270. this.label74.AutoSize = true;
  1271. this.label74.Location = new System.Drawing.Point(200, 440);
  1272. this.label74.Name = "label74";
  1273. this.label74.Size = new System.Drawing.Size(89, 12);
  1274. this.label74.TabIndex = 359;
  1275. this.label74.Text = "液偶润滑油压力";
  1276. //
  1277. // label73
  1278. //
  1279. this.label73.AutoSize = true;
  1280. this.label73.Location = new System.Drawing.Point(3, 720);
  1281. this.label73.Name = "label73";
  1282. this.label73.Size = new System.Drawing.Size(77, 12);
  1283. this.label73.TabIndex = 358;
  1284. this.label73.Text = "外置油泵压力";
  1285. //
  1286. // label72
  1287. //
  1288. this.label72.AutoSize = true;
  1289. this.label72.Location = new System.Drawing.Point(3, 680);
  1290. this.label72.Name = "label72";
  1291. this.label72.Size = new System.Drawing.Size(83, 12);
  1292. this.label72.TabIndex = 357;
  1293. this.label72.Text = "电机定子温度3";
  1294. //
  1295. // label71
  1296. //
  1297. this.label71.AutoSize = true;
  1298. this.label71.Location = new System.Drawing.Point(3, 640);
  1299. this.label71.Name = "label71";
  1300. this.label71.Size = new System.Drawing.Size(83, 12);
  1301. this.label71.TabIndex = 356;
  1302. this.label71.Text = "电机定子温度2";
  1303. //
  1304. // label70
  1305. //
  1306. this.label70.AutoSize = true;
  1307. this.label70.Location = new System.Drawing.Point(3, 600);
  1308. this.label70.Name = "label70";
  1309. this.label70.Size = new System.Drawing.Size(83, 12);
  1310. this.label70.TabIndex = 355;
  1311. this.label70.Text = "电机定子温度1";
  1312. //
  1313. // label69
  1314. //
  1315. this.label69.AutoSize = true;
  1316. this.label69.Location = new System.Drawing.Point(3, 560);
  1317. this.label69.Name = "label69";
  1318. this.label69.Size = new System.Drawing.Size(89, 12);
  1319. this.label69.TabIndex = 354;
  1320. this.label69.Text = "风机后轴承轴温";
  1321. //
  1322. // label68
  1323. //
  1324. this.label68.AutoSize = true;
  1325. this.label68.Location = new System.Drawing.Point(3, 520);
  1326. this.label68.Name = "label68";
  1327. this.label68.Size = new System.Drawing.Size(89, 12);
  1328. this.label68.TabIndex = 353;
  1329. this.label68.Text = "风机前轴承轴温";
  1330. //
  1331. // label67
  1332. //
  1333. this.label67.AutoSize = true;
  1334. this.label67.Location = new System.Drawing.Point(3, 480);
  1335. this.label67.Name = "label67";
  1336. this.label67.Size = new System.Drawing.Size(89, 12);
  1337. this.label67.TabIndex = 352;
  1338. this.label67.Text = "电机后轴承轴温";
  1339. //
  1340. // label66
  1341. //
  1342. this.label66.AutoSize = true;
  1343. this.label66.Location = new System.Drawing.Point(3, 440);
  1344. this.label66.Name = "label66";
  1345. this.label66.Size = new System.Drawing.Size(89, 12);
  1346. this.label66.TabIndex = 351;
  1347. this.label66.Text = "电机前轴承轴温";
  1348. //
  1349. // ECCC27
  1350. //
  1351. this.ECCC27.AutoSize = true;
  1352. this.ECCC27.Location = new System.Drawing.Point(1104, 350);
  1353. this.ECCC27.Name = "ECCC27";
  1354. this.ECCC27.Size = new System.Drawing.Size(11, 12);
  1355. this.ECCC27.TabIndex = 350;
  1356. this.ECCC27.Text = "0";
  1357. //
  1358. // ECCC26
  1359. //
  1360. this.ECCC26.AutoSize = true;
  1361. this.ECCC26.Location = new System.Drawing.Point(1104, 300);
  1362. this.ECCC26.Name = "ECCC26";
  1363. this.ECCC26.Size = new System.Drawing.Size(11, 12);
  1364. this.ECCC26.TabIndex = 349;
  1365. this.ECCC26.Text = "0";
  1366. //
  1367. // ECCC25
  1368. //
  1369. this.ECCC25.AutoSize = true;
  1370. this.ECCC25.Location = new System.Drawing.Point(1104, 250);
  1371. this.ECCC25.Name = "ECCC25";
  1372. this.ECCC25.Size = new System.Drawing.Size(11, 12);
  1373. this.ECCC25.TabIndex = 348;
  1374. this.ECCC25.Text = "0";
  1375. //
  1376. // ECCC24
  1377. //
  1378. this.ECCC24.AutoSize = true;
  1379. this.ECCC24.Location = new System.Drawing.Point(1104, 200);
  1380. this.ECCC24.Name = "ECCC24";
  1381. this.ECCC24.Size = new System.Drawing.Size(11, 12);
  1382. this.ECCC24.TabIndex = 347;
  1383. this.ECCC24.Text = "0";
  1384. //
  1385. // ECCC23
  1386. //
  1387. this.ECCC23.AutoSize = true;
  1388. this.ECCC23.Location = new System.Drawing.Point(1104, 150);
  1389. this.ECCC23.Name = "ECCC23";
  1390. this.ECCC23.Size = new System.Drawing.Size(11, 12);
  1391. this.ECCC23.TabIndex = 346;
  1392. this.ECCC23.Text = "0";
  1393. //
  1394. // ECCC22
  1395. //
  1396. this.ECCC22.AutoSize = true;
  1397. this.ECCC22.Location = new System.Drawing.Point(1104, 100);
  1398. this.ECCC22.Name = "ECCC22";
  1399. this.ECCC22.Size = new System.Drawing.Size(11, 12);
  1400. this.ECCC22.TabIndex = 345;
  1401. this.ECCC22.Text = "0";
  1402. //
  1403. // ECCC21
  1404. //
  1405. this.ECCC21.AutoSize = true;
  1406. this.ECCC21.Location = new System.Drawing.Point(1104, 50);
  1407. this.ECCC21.Name = "ECCC21";
  1408. this.ECCC21.Size = new System.Drawing.Size(11, 12);
  1409. this.ECCC21.TabIndex = 344;
  1410. this.ECCC21.Text = "0";
  1411. //
  1412. // ECCC17
  1413. //
  1414. this.ECCC17.AutoSize = true;
  1415. this.ECCC17.Location = new System.Drawing.Point(900, 350);
  1416. this.ECCC17.Name = "ECCC17";
  1417. this.ECCC17.Size = new System.Drawing.Size(11, 12);
  1418. this.ECCC17.TabIndex = 343;
  1419. this.ECCC17.Text = "0";
  1420. //
  1421. // ECCC16
  1422. //
  1423. this.ECCC16.AutoSize = true;
  1424. this.ECCC16.Location = new System.Drawing.Point(900, 300);
  1425. this.ECCC16.Name = "ECCC16";
  1426. this.ECCC16.Size = new System.Drawing.Size(11, 12);
  1427. this.ECCC16.TabIndex = 342;
  1428. this.ECCC16.Text = "0";
  1429. //
  1430. // ECCC15
  1431. //
  1432. this.ECCC15.AutoSize = true;
  1433. this.ECCC15.Location = new System.Drawing.Point(900, 250);
  1434. this.ECCC15.Name = "ECCC15";
  1435. this.ECCC15.Size = new System.Drawing.Size(11, 12);
  1436. this.ECCC15.TabIndex = 341;
  1437. this.ECCC15.Text = "0";
  1438. //
  1439. // ECCC14
  1440. //
  1441. this.ECCC14.AutoSize = true;
  1442. this.ECCC14.Location = new System.Drawing.Point(900, 200);
  1443. this.ECCC14.Name = "ECCC14";
  1444. this.ECCC14.Size = new System.Drawing.Size(11, 12);
  1445. this.ECCC14.TabIndex = 340;
  1446. this.ECCC14.Text = "0";
  1447. //
  1448. // ECCC13
  1449. //
  1450. this.ECCC13.AutoSize = true;
  1451. this.ECCC13.Location = new System.Drawing.Point(900, 150);
  1452. this.ECCC13.Name = "ECCC13";
  1453. this.ECCC13.Size = new System.Drawing.Size(11, 12);
  1454. this.ECCC13.TabIndex = 339;
  1455. this.ECCC13.Text = "0";
  1456. //
  1457. // ECCC12
  1458. //
  1459. this.ECCC12.AutoSize = true;
  1460. this.ECCC12.Location = new System.Drawing.Point(900, 100);
  1461. this.ECCC12.Name = "ECCC12";
  1462. this.ECCC12.Size = new System.Drawing.Size(11, 12);
  1463. this.ECCC12.TabIndex = 338;
  1464. this.ECCC12.Text = "0";
  1465. //
  1466. // ECCC11
  1467. //
  1468. this.ECCC11.AutoSize = true;
  1469. this.ECCC11.Location = new System.Drawing.Point(900, 50);
  1470. this.ECCC11.Name = "ECCC11";
  1471. this.ECCC11.Size = new System.Drawing.Size(11, 12);
  1472. this.ECCC11.TabIndex = 337;
  1473. this.ECCC11.Text = "0";
  1474. //
  1475. // label65
  1476. //
  1477. this.label65.AutoSize = true;
  1478. this.label65.Location = new System.Drawing.Point(980, 350);
  1479. this.label65.Name = "label65";
  1480. this.label65.Size = new System.Drawing.Size(53, 12);
  1481. this.label65.TabIndex = 336;
  1482. this.label65.Text = "风机电流";
  1483. //
  1484. // label64
  1485. //
  1486. this.label64.AutoSize = true;
  1487. this.label64.Location = new System.Drawing.Point(980, 300);
  1488. this.label64.Name = "label64";
  1489. this.label64.Size = new System.Drawing.Size(89, 12);
  1490. this.label64.TabIndex = 335;
  1491. this.label64.Text = "除尘器出口压力";
  1492. //
  1493. // label63
  1494. //
  1495. this.label63.AutoSize = true;
  1496. this.label63.Location = new System.Drawing.Point(980, 250);
  1497. this.label63.Name = "label63";
  1498. this.label63.Size = new System.Drawing.Size(89, 12);
  1499. this.label63.TabIndex = 334;
  1500. this.label63.Text = "除尘器入口压力";
  1501. //
  1502. // label62
  1503. //
  1504. this.label62.AutoSize = true;
  1505. this.label62.Location = new System.Drawing.Point(980, 200);
  1506. this.label62.Name = "label62";
  1507. this.label62.Size = new System.Drawing.Size(113, 12);
  1508. this.label62.TabIndex = 333;
  1509. this.label62.Text = "风机固定端垂直振动";
  1510. //
  1511. // label61
  1512. //
  1513. this.label61.AutoSize = true;
  1514. this.label61.Location = new System.Drawing.Point(980, 150);
  1515. this.label61.Name = "label61";
  1516. this.label61.Size = new System.Drawing.Size(113, 12);
  1517. this.label61.TabIndex = 332;
  1518. this.label61.Text = "风机固定端水平振动";
  1519. //
  1520. // label60
  1521. //
  1522. this.label60.AutoSize = true;
  1523. this.label60.Location = new System.Drawing.Point(980, 100);
  1524. this.label60.Name = "label60";
  1525. this.label60.Size = new System.Drawing.Size(113, 12);
  1526. this.label60.TabIndex = 331;
  1527. this.label60.Text = "风机自由端垂直振动";
  1528. //
  1529. // label59
  1530. //
  1531. this.label59.AutoSize = true;
  1532. this.label59.Location = new System.Drawing.Point(980, 50);
  1533. this.label59.Name = "label59";
  1534. this.label59.Size = new System.Drawing.Size(113, 12);
  1535. this.label59.TabIndex = 330;
  1536. this.label59.Text = "风机自由端水平振动";
  1537. //
  1538. // label58
  1539. //
  1540. this.label58.AutoSize = true;
  1541. this.label58.Location = new System.Drawing.Point(803, 350);
  1542. this.label58.Name = "label58";
  1543. this.label58.Size = new System.Drawing.Size(89, 12);
  1544. this.label58.TabIndex = 329;
  1545. this.label58.Text = "风机自由端温度";
  1546. //
  1547. // label57
  1548. //
  1549. this.label57.AutoSize = true;
  1550. this.label57.Location = new System.Drawing.Point(803, 300);
  1551. this.label57.Name = "label57";
  1552. this.label57.Size = new System.Drawing.Size(89, 12);
  1553. this.label57.TabIndex = 328;
  1554. this.label57.Text = "风机固定端温度";
  1555. //
  1556. // label56
  1557. //
  1558. this.label56.AutoSize = true;
  1559. this.label56.Location = new System.Drawing.Point(803, 250);
  1560. this.label56.Name = "label56";
  1561. this.label56.Size = new System.Drawing.Size(95, 12);
  1562. this.label56.TabIndex = 327;
  1563. this.label56.Text = "电机W相绕组温度";
  1564. //
  1565. // label55
  1566. //
  1567. this.label55.AutoSize = true;
  1568. this.label55.Location = new System.Drawing.Point(803, 200);
  1569. this.label55.Name = "label55";
  1570. this.label55.Size = new System.Drawing.Size(95, 12);
  1571. this.label55.TabIndex = 326;
  1572. this.label55.Text = "电机V相绕组温度";
  1573. //
  1574. // label54
  1575. //
  1576. this.label54.AutoSize = true;
  1577. this.label54.Location = new System.Drawing.Point(803, 150);
  1578. this.label54.Name = "label54";
  1579. this.label54.Size = new System.Drawing.Size(95, 12);
  1580. this.label54.TabIndex = 325;
  1581. this.label54.Text = "电机U相绕组温度";
  1582. //
  1583. // label53
  1584. //
  1585. this.label53.AutoSize = true;
  1586. this.label53.Location = new System.Drawing.Point(803, 100);
  1587. this.label53.Name = "label53";
  1588. this.label53.Size = new System.Drawing.Size(89, 12);
  1589. this.label53.TabIndex = 324;
  1590. this.label53.Text = "电机自由端温度";
  1591. //
  1592. // label52
  1593. //
  1594. this.label52.AutoSize = true;
  1595. this.label52.Location = new System.Drawing.Point(803, 50);
  1596. this.label52.Name = "label52";
  1597. this.label52.Size = new System.Drawing.Size(89, 12);
  1598. this.label52.TabIndex = 323;
  1599. this.label52.Text = "电机固定端温度";
  1600. //
  1601. // BOF42
  1602. //
  1603. this.BOF42.AutoSize = true;
  1604. this.BOF42.Location = new System.Drawing.Point(703, 56);
  1605. this.BOF42.Name = "BOF42";
  1606. this.BOF42.Size = new System.Drawing.Size(11, 12);
  1607. this.BOF42.TabIndex = 322;
  1608. this.BOF42.Text = "0";
  1609. //
  1610. // BOF411
  1611. //
  1612. this.BOF411.AutoSize = true;
  1613. this.BOF411.Location = new System.Drawing.Point(703, 380);
  1614. this.BOF411.Name = "BOF411";
  1615. this.BOF411.Size = new System.Drawing.Size(11, 12);
  1616. this.BOF411.TabIndex = 321;
  1617. this.BOF411.Text = "0";
  1618. //
  1619. // BOF410
  1620. //
  1621. this.BOF410.AutoSize = true;
  1622. this.BOF410.Location = new System.Drawing.Point(703, 344);
  1623. this.BOF410.Name = "BOF410";
  1624. this.BOF410.Size = new System.Drawing.Size(11, 12);
  1625. this.BOF410.TabIndex = 320;
  1626. this.BOF410.Text = "0";
  1627. //
  1628. // BOF49
  1629. //
  1630. this.BOF49.AutoSize = true;
  1631. this.BOF49.Location = new System.Drawing.Point(703, 308);
  1632. this.BOF49.Name = "BOF49";
  1633. this.BOF49.Size = new System.Drawing.Size(11, 12);
  1634. this.BOF49.TabIndex = 319;
  1635. this.BOF49.Text = "0";
  1636. //
  1637. // BOF48
  1638. //
  1639. this.BOF48.AutoSize = true;
  1640. this.BOF48.Location = new System.Drawing.Point(703, 272);
  1641. this.BOF48.Name = "BOF48";
  1642. this.BOF48.Size = new System.Drawing.Size(11, 12);
  1643. this.BOF48.TabIndex = 318;
  1644. this.BOF48.Text = "0";
  1645. //
  1646. // BOF47
  1647. //
  1648. this.BOF47.AutoSize = true;
  1649. this.BOF47.Location = new System.Drawing.Point(703, 236);
  1650. this.BOF47.Name = "BOF47";
  1651. this.BOF47.Size = new System.Drawing.Size(11, 12);
  1652. this.BOF47.TabIndex = 317;
  1653. this.BOF47.Text = "0";
  1654. //
  1655. // BOF46
  1656. //
  1657. this.BOF46.AutoSize = true;
  1658. this.BOF46.Location = new System.Drawing.Point(703, 200);
  1659. this.BOF46.Name = "BOF46";
  1660. this.BOF46.Size = new System.Drawing.Size(11, 12);
  1661. this.BOF46.TabIndex = 316;
  1662. this.BOF46.Text = "0";
  1663. //
  1664. // BOF45
  1665. //
  1666. this.BOF45.AutoSize = true;
  1667. this.BOF45.Location = new System.Drawing.Point(703, 164);
  1668. this.BOF45.Name = "BOF45";
  1669. this.BOF45.Size = new System.Drawing.Size(11, 12);
  1670. this.BOF45.TabIndex = 315;
  1671. this.BOF45.Text = "0";
  1672. //
  1673. // BOF44
  1674. //
  1675. this.BOF44.AutoSize = true;
  1676. this.BOF44.Location = new System.Drawing.Point(703, 128);
  1677. this.BOF44.Name = "BOF44";
  1678. this.BOF44.Size = new System.Drawing.Size(11, 12);
  1679. this.BOF44.TabIndex = 314;
  1680. this.BOF44.Text = "0";
  1681. //
  1682. // BOF43
  1683. //
  1684. this.BOF43.AutoSize = true;
  1685. this.BOF43.Location = new System.Drawing.Point(703, 92);
  1686. this.BOF43.Name = "BOF43";
  1687. this.BOF43.Size = new System.Drawing.Size(11, 12);
  1688. this.BOF43.TabIndex = 313;
  1689. this.BOF43.Text = "0";
  1690. //
  1691. // BOF41
  1692. //
  1693. this.BOF41.AutoSize = true;
  1694. this.BOF41.Location = new System.Drawing.Point(703, 21);
  1695. this.BOF41.Name = "BOF41";
  1696. this.BOF41.Size = new System.Drawing.Size(11, 12);
  1697. this.BOF41.TabIndex = 312;
  1698. this.BOF41.Text = "0";
  1699. //
  1700. // BOF311
  1701. //
  1702. this.BOF311.AutoSize = true;
  1703. this.BOF311.Location = new System.Drawing.Point(504, 380);
  1704. this.BOF311.Name = "BOF311";
  1705. this.BOF311.Size = new System.Drawing.Size(11, 12);
  1706. this.BOF311.TabIndex = 311;
  1707. this.BOF311.Text = "0";
  1708. //
  1709. // BOF310
  1710. //
  1711. this.BOF310.AutoSize = true;
  1712. this.BOF310.Location = new System.Drawing.Point(504, 344);
  1713. this.BOF310.Name = "BOF310";
  1714. this.BOF310.Size = new System.Drawing.Size(11, 12);
  1715. this.BOF310.TabIndex = 310;
  1716. this.BOF310.Text = "0";
  1717. //
  1718. // BOF39
  1719. //
  1720. this.BOF39.AutoSize = true;
  1721. this.BOF39.Location = new System.Drawing.Point(504, 308);
  1722. this.BOF39.Name = "BOF39";
  1723. this.BOF39.Size = new System.Drawing.Size(11, 12);
  1724. this.BOF39.TabIndex = 309;
  1725. this.BOF39.Text = "0";
  1726. //
  1727. // BOF38
  1728. //
  1729. this.BOF38.AutoSize = true;
  1730. this.BOF38.Location = new System.Drawing.Point(504, 272);
  1731. this.BOF38.Name = "BOF38";
  1732. this.BOF38.Size = new System.Drawing.Size(11, 12);
  1733. this.BOF38.TabIndex = 308;
  1734. this.BOF38.Text = "0";
  1735. //
  1736. // BOF37
  1737. //
  1738. this.BOF37.AutoSize = true;
  1739. this.BOF37.Location = new System.Drawing.Point(504, 236);
  1740. this.BOF37.Name = "BOF37";
  1741. this.BOF37.Size = new System.Drawing.Size(11, 12);
  1742. this.BOF37.TabIndex = 307;
  1743. this.BOF37.Text = "0";
  1744. //
  1745. // BOF36
  1746. //
  1747. this.BOF36.AutoSize = true;
  1748. this.BOF36.Location = new System.Drawing.Point(504, 200);
  1749. this.BOF36.Name = "BOF36";
  1750. this.BOF36.Size = new System.Drawing.Size(11, 12);
  1751. this.BOF36.TabIndex = 306;
  1752. this.BOF36.Text = "0";
  1753. //
  1754. // BOF35
  1755. //
  1756. this.BOF35.AutoSize = true;
  1757. this.BOF35.Location = new System.Drawing.Point(504, 164);
  1758. this.BOF35.Name = "BOF35";
  1759. this.BOF35.Size = new System.Drawing.Size(11, 12);
  1760. this.BOF35.TabIndex = 305;
  1761. this.BOF35.Text = "0";
  1762. //
  1763. // BOF34
  1764. //
  1765. this.BOF34.AutoSize = true;
  1766. this.BOF34.Location = new System.Drawing.Point(504, 128);
  1767. this.BOF34.Name = "BOF34";
  1768. this.BOF34.Size = new System.Drawing.Size(11, 12);
  1769. this.BOF34.TabIndex = 304;
  1770. this.BOF34.Text = "0";
  1771. //
  1772. // BOF33
  1773. //
  1774. this.BOF33.AutoSize = true;
  1775. this.BOF33.Location = new System.Drawing.Point(504, 92);
  1776. this.BOF33.Name = "BOF33";
  1777. this.BOF33.Size = new System.Drawing.Size(11, 12);
  1778. this.BOF33.TabIndex = 303;
  1779. this.BOF33.Text = "0";
  1780. //
  1781. // BOF32
  1782. //
  1783. this.BOF32.AutoSize = true;
  1784. this.BOF32.Location = new System.Drawing.Point(504, 56);
  1785. this.BOF32.Name = "BOF32";
  1786. this.BOF32.Size = new System.Drawing.Size(11, 12);
  1787. this.BOF32.TabIndex = 302;
  1788. this.BOF32.Text = "0";
  1789. //
  1790. // BOF31
  1791. //
  1792. this.BOF31.AutoSize = true;
  1793. this.BOF31.Location = new System.Drawing.Point(504, 21);
  1794. this.BOF31.Name = "BOF31";
  1795. this.BOF31.Size = new System.Drawing.Size(11, 12);
  1796. this.BOF31.TabIndex = 301;
  1797. this.BOF31.Text = "0";
  1798. //
  1799. // label51
  1800. //
  1801. this.label51.AutoSize = true;
  1802. this.label51.Location = new System.Drawing.Point(600, 380);
  1803. this.label51.Name = "label51";
  1804. this.label51.Size = new System.Drawing.Size(89, 12);
  1805. this.label51.TabIndex = 300;
  1806. this.label51.Text = "4#倾动电机转距";
  1807. //
  1808. // label50
  1809. //
  1810. this.label50.AutoSize = true;
  1811. this.label50.Location = new System.Drawing.Point(600, 344);
  1812. this.label50.Name = "label50";
  1813. this.label50.Size = new System.Drawing.Size(89, 12);
  1814. this.label50.TabIndex = 299;
  1815. this.label50.Text = "3#倾动电机转距";
  1816. //
  1817. // label49
  1818. //
  1819. this.label49.AutoSize = true;
  1820. this.label49.Location = new System.Drawing.Point(600, 308);
  1821. this.label49.Name = "label49";
  1822. this.label49.Size = new System.Drawing.Size(89, 12);
  1823. this.label49.TabIndex = 298;
  1824. this.label49.Text = "2#倾动电机转距";
  1825. //
  1826. // label48
  1827. //
  1828. this.label48.AutoSize = true;
  1829. this.label48.Location = new System.Drawing.Point(600, 272);
  1830. this.label48.Name = "label48";
  1831. this.label48.Size = new System.Drawing.Size(89, 12);
  1832. this.label48.TabIndex = 297;
  1833. this.label48.Text = "1#倾动电机转距";
  1834. //
  1835. // label47
  1836. //
  1837. this.label47.AutoSize = true;
  1838. this.label47.Location = new System.Drawing.Point(600, 236);
  1839. this.label47.Name = "label47";
  1840. this.label47.Size = new System.Drawing.Size(53, 12);
  1841. this.label47.TabIndex = 296;
  1842. this.label47.Text = "B枪张力2";
  1843. //
  1844. // label46
  1845. //
  1846. this.label46.AutoSize = true;
  1847. this.label46.Location = new System.Drawing.Point(600, 200);
  1848. this.label46.Name = "label46";
  1849. this.label46.Size = new System.Drawing.Size(53, 12);
  1850. this.label46.TabIndex = 295;
  1851. this.label46.Text = "A枪张力2";
  1852. //
  1853. // label45
  1854. //
  1855. this.label45.AutoSize = true;
  1856. this.label45.Location = new System.Drawing.Point(600, 164);
  1857. this.label45.Name = "label45";
  1858. this.label45.Size = new System.Drawing.Size(83, 12);
  1859. this.label45.TabIndex = 294;
  1860. this.label45.Text = "B枪高度编码器";
  1861. //
  1862. // label44
  1863. //
  1864. this.label44.AutoSize = true;
  1865. this.label44.Location = new System.Drawing.Point(600, 128);
  1866. this.label44.Name = "label44";
  1867. this.label44.Size = new System.Drawing.Size(77, 12);
  1868. this.label44.TabIndex = 293;
  1869. this.label44.Text = "倾动摇炉角度";
  1870. //
  1871. // label43
  1872. //
  1873. this.label43.AutoSize = true;
  1874. this.label43.Location = new System.Drawing.Point(600, 92);
  1875. this.label43.Name = "label43";
  1876. this.label43.Size = new System.Drawing.Size(89, 12);
  1877. this.label43.TabIndex = 292;
  1878. this.label43.Text = "炉体冷却水流量";
  1879. //
  1880. // label42
  1881. //
  1882. this.label42.AutoSize = true;
  1883. this.label42.Location = new System.Drawing.Point(600, 56);
  1884. this.label42.Name = "label42";
  1885. this.label42.Size = new System.Drawing.Size(83, 12);
  1886. this.label42.TabIndex = 291;
  1887. this.label42.Text = "氧枪出水流量B";
  1888. //
  1889. // label41
  1890. //
  1891. this.label41.AutoSize = true;
  1892. this.label41.Location = new System.Drawing.Point(600, 21);
  1893. this.label41.Name = "label41";
  1894. this.label41.Size = new System.Drawing.Size(77, 12);
  1895. this.label41.TabIndex = 290;
  1896. this.label41.Text = "氧枪进水流量";
  1897. //
  1898. // label40
  1899. //
  1900. this.label40.AutoSize = true;
  1901. this.label40.Location = new System.Drawing.Point(403, 56);
  1902. this.label40.Name = "label40";
  1903. this.label40.Size = new System.Drawing.Size(83, 12);
  1904. this.label40.TabIndex = 289;
  1905. this.label40.Text = "氧枪出水流量A";
  1906. //
  1907. // label39
  1908. //
  1909. this.label39.AutoSize = true;
  1910. this.label39.Location = new System.Drawing.Point(403, 380);
  1911. this.label39.Name = "label39";
  1912. this.label39.Size = new System.Drawing.Size(89, 12);
  1913. this.label39.TabIndex = 288;
  1914. this.label39.Text = "3#倾动电机电流";
  1915. //
  1916. // label38
  1917. //
  1918. this.label38.AutoSize = true;
  1919. this.label38.Location = new System.Drawing.Point(403, 344);
  1920. this.label38.Name = "label38";
  1921. this.label38.Size = new System.Drawing.Size(89, 12);
  1922. this.label38.TabIndex = 287;
  1923. this.label38.Text = "3#倾动电机电流";
  1924. //
  1925. // label37
  1926. //
  1927. this.label37.AutoSize = true;
  1928. this.label37.Location = new System.Drawing.Point(403, 308);
  1929. this.label37.Name = "label37";
  1930. this.label37.Size = new System.Drawing.Size(89, 12);
  1931. this.label37.TabIndex = 286;
  1932. this.label37.Text = "2#倾动电机电流";
  1933. //
  1934. // label36
  1935. //
  1936. this.label36.AutoSize = true;
  1937. this.label36.Location = new System.Drawing.Point(403, 272);
  1938. this.label36.Name = "label36";
  1939. this.label36.Size = new System.Drawing.Size(89, 12);
  1940. this.label36.TabIndex = 285;
  1941. this.label36.Text = "1#倾动电机电流";
  1942. //
  1943. // label35
  1944. //
  1945. this.label35.AutoSize = true;
  1946. this.label35.Location = new System.Drawing.Point(403, 236);
  1947. this.label35.Name = "label35";
  1948. this.label35.Size = new System.Drawing.Size(53, 12);
  1949. this.label35.TabIndex = 284;
  1950. this.label35.Text = "B枪张力1";
  1951. //
  1952. // label34
  1953. //
  1954. this.label34.AutoSize = true;
  1955. this.label34.Location = new System.Drawing.Point(403, 200);
  1956. this.label34.Name = "label34";
  1957. this.label34.Size = new System.Drawing.Size(53, 12);
  1958. this.label34.TabIndex = 283;
  1959. this.label34.Text = "A枪张力1";
  1960. //
  1961. // label33
  1962. //
  1963. this.label33.AutoSize = true;
  1964. this.label33.Location = new System.Drawing.Point(403, 164);
  1965. this.label33.Name = "label33";
  1966. this.label33.Size = new System.Drawing.Size(83, 12);
  1967. this.label33.TabIndex = 282;
  1968. this.label33.Text = "A枪高度编码器";
  1969. //
  1970. // label32
  1971. //
  1972. this.label32.AutoSize = true;
  1973. this.label32.Location = new System.Drawing.Point(403, 128);
  1974. this.label32.Name = "label32";
  1975. this.label32.Size = new System.Drawing.Size(53, 12);
  1976. this.label32.TabIndex = 281;
  1977. this.label32.Text = "废钢重量";
  1978. //
  1979. // label31
  1980. //
  1981. this.label31.AutoSize = true;
  1982. this.label31.Location = new System.Drawing.Point(403, 92);
  1983. this.label31.Name = "label31";
  1984. this.label31.Size = new System.Drawing.Size(89, 12);
  1985. this.label31.TabIndex = 280;
  1986. this.label31.Text = "炉体冷却水压力";
  1987. //
  1988. // label30
  1989. //
  1990. this.label30.AutoSize = true;
  1991. this.label30.Location = new System.Drawing.Point(403, 21);
  1992. this.label30.Name = "label30";
  1993. this.label30.Size = new System.Drawing.Size(65, 12);
  1994. this.label30.TabIndex = 279;
  1995. this.label30.Text = "氧枪水压力";
  1996. //
  1997. // BOF211
  1998. //
  1999. this.BOF211.AutoSize = true;
  2000. this.BOF211.Location = new System.Drawing.Point(310, 380);
  2001. this.BOF211.Name = "BOF211";
  2002. this.BOF211.Size = new System.Drawing.Size(11, 12);
  2003. this.BOF211.TabIndex = 278;
  2004. this.BOF211.Text = "0";
  2005. //
  2006. // BOF210
  2007. //
  2008. this.BOF210.AutoSize = true;
  2009. this.BOF210.Location = new System.Drawing.Point(310, 344);
  2010. this.BOF210.Name = "BOF210";
  2011. this.BOF210.Size = new System.Drawing.Size(11, 12);
  2012. this.BOF210.TabIndex = 277;
  2013. this.BOF210.Text = "0";
  2014. //
  2015. // BOF29
  2016. //
  2017. this.BOF29.AutoSize = true;
  2018. this.BOF29.Location = new System.Drawing.Point(310, 308);
  2019. this.BOF29.Name = "BOF29";
  2020. this.BOF29.Size = new System.Drawing.Size(11, 12);
  2021. this.BOF29.TabIndex = 276;
  2022. this.BOF29.Text = "0";
  2023. //
  2024. // BOF28
  2025. //
  2026. this.BOF28.AutoSize = true;
  2027. this.BOF28.Location = new System.Drawing.Point(310, 272);
  2028. this.BOF28.Name = "BOF28";
  2029. this.BOF28.Size = new System.Drawing.Size(11, 12);
  2030. this.BOF28.TabIndex = 275;
  2031. this.BOF28.Text = "0";
  2032. //
  2033. // BOF27
  2034. //
  2035. this.BOF27.AutoSize = true;
  2036. this.BOF27.Location = new System.Drawing.Point(310, 236);
  2037. this.BOF27.Name = "BOF27";
  2038. this.BOF27.Size = new System.Drawing.Size(11, 12);
  2039. this.BOF27.TabIndex = 274;
  2040. this.BOF27.Text = "0";
  2041. //
  2042. // BOF26
  2043. //
  2044. this.BOF26.AutoSize = true;
  2045. this.BOF26.Location = new System.Drawing.Point(310, 200);
  2046. this.BOF26.Name = "BOF26";
  2047. this.BOF26.Size = new System.Drawing.Size(11, 12);
  2048. this.BOF26.TabIndex = 273;
  2049. this.BOF26.Text = "0";
  2050. //
  2051. // BOF25
  2052. //
  2053. this.BOF25.AutoSize = true;
  2054. this.BOF25.Location = new System.Drawing.Point(310, 164);
  2055. this.BOF25.Name = "BOF25";
  2056. this.BOF25.Size = new System.Drawing.Size(11, 12);
  2057. this.BOF25.TabIndex = 272;
  2058. this.BOF25.Text = "0";
  2059. //
  2060. // BOF24
  2061. //
  2062. this.BOF24.AutoSize = true;
  2063. this.BOF24.Location = new System.Drawing.Point(310, 128);
  2064. this.BOF24.Name = "BOF24";
  2065. this.BOF24.Size = new System.Drawing.Size(11, 12);
  2066. this.BOF24.TabIndex = 271;
  2067. this.BOF24.Text = "0";
  2068. //
  2069. // BOF23
  2070. //
  2071. this.BOF23.AutoSize = true;
  2072. this.BOF23.Location = new System.Drawing.Point(310, 92);
  2073. this.BOF23.Name = "BOF23";
  2074. this.BOF23.Size = new System.Drawing.Size(11, 12);
  2075. this.BOF23.TabIndex = 270;
  2076. this.BOF23.Text = "0";
  2077. //
  2078. // BOF22
  2079. //
  2080. this.BOF22.AutoSize = true;
  2081. this.BOF22.Location = new System.Drawing.Point(310, 56);
  2082. this.BOF22.Name = "BOF22";
  2083. this.BOF22.Size = new System.Drawing.Size(11, 12);
  2084. this.BOF22.TabIndex = 269;
  2085. this.BOF22.Text = "0";
  2086. //
  2087. // BOF21
  2088. //
  2089. this.BOF21.AutoSize = true;
  2090. this.BOF21.Location = new System.Drawing.Point(310, 21);
  2091. this.BOF21.Name = "BOF21";
  2092. this.BOF21.Size = new System.Drawing.Size(11, 12);
  2093. this.BOF21.TabIndex = 268;
  2094. this.BOF21.Text = "0";
  2095. //
  2096. // BOF111
  2097. //
  2098. this.BOF111.AutoSize = true;
  2099. this.BOF111.Location = new System.Drawing.Point(100, 380);
  2100. this.BOF111.Name = "BOF111";
  2101. this.BOF111.Size = new System.Drawing.Size(11, 12);
  2102. this.BOF111.TabIndex = 267;
  2103. this.BOF111.Text = "0";
  2104. //
  2105. // BOF110
  2106. //
  2107. this.BOF110.AutoSize = true;
  2108. this.BOF110.Location = new System.Drawing.Point(100, 344);
  2109. this.BOF110.Name = "BOF110";
  2110. this.BOF110.Size = new System.Drawing.Size(11, 12);
  2111. this.BOF110.TabIndex = 266;
  2112. this.BOF110.Text = "0";
  2113. //
  2114. // BOF19
  2115. //
  2116. this.BOF19.AutoSize = true;
  2117. this.BOF19.Location = new System.Drawing.Point(100, 308);
  2118. this.BOF19.Name = "BOF19";
  2119. this.BOF19.Size = new System.Drawing.Size(11, 12);
  2120. this.BOF19.TabIndex = 265;
  2121. this.BOF19.Text = "0";
  2122. //
  2123. // BOF18
  2124. //
  2125. this.BOF18.AutoSize = true;
  2126. this.BOF18.Location = new System.Drawing.Point(100, 272);
  2127. this.BOF18.Name = "BOF18";
  2128. this.BOF18.Size = new System.Drawing.Size(11, 12);
  2129. this.BOF18.TabIndex = 264;
  2130. this.BOF18.Text = "0";
  2131. //
  2132. // BOF17
  2133. //
  2134. this.BOF17.AutoSize = true;
  2135. this.BOF17.Location = new System.Drawing.Point(100, 236);
  2136. this.BOF17.Name = "BOF17";
  2137. this.BOF17.Size = new System.Drawing.Size(11, 12);
  2138. this.BOF17.TabIndex = 263;
  2139. this.BOF17.Text = "0";
  2140. //
  2141. // BOF16
  2142. //
  2143. this.BOF16.AutoSize = true;
  2144. this.BOF16.Location = new System.Drawing.Point(100, 200);
  2145. this.BOF16.Name = "BOF16";
  2146. this.BOF16.Size = new System.Drawing.Size(11, 12);
  2147. this.BOF16.TabIndex = 262;
  2148. this.BOF16.Text = "0";
  2149. //
  2150. // BOF15
  2151. //
  2152. this.BOF15.AutoSize = true;
  2153. this.BOF15.Location = new System.Drawing.Point(100, 164);
  2154. this.BOF15.Name = "BOF15";
  2155. this.BOF15.Size = new System.Drawing.Size(11, 12);
  2156. this.BOF15.TabIndex = 261;
  2157. this.BOF15.Text = "0";
  2158. //
  2159. // BOF14
  2160. //
  2161. this.BOF14.AutoSize = true;
  2162. this.BOF14.Location = new System.Drawing.Point(100, 128);
  2163. this.BOF14.Name = "BOF14";
  2164. this.BOF14.Size = new System.Drawing.Size(11, 12);
  2165. this.BOF14.TabIndex = 260;
  2166. this.BOF14.Text = "0";
  2167. //
  2168. // BOF13
  2169. //
  2170. this.BOF13.AutoSize = true;
  2171. this.BOF13.Location = new System.Drawing.Point(100, 92);
  2172. this.BOF13.Name = "BOF13";
  2173. this.BOF13.Size = new System.Drawing.Size(11, 12);
  2174. this.BOF13.TabIndex = 259;
  2175. this.BOF13.Text = "0";
  2176. //
  2177. // BOF12
  2178. //
  2179. this.BOF12.AutoSize = true;
  2180. this.BOF12.Location = new System.Drawing.Point(100, 56);
  2181. this.BOF12.Name = "BOF12";
  2182. this.BOF12.Size = new System.Drawing.Size(11, 12);
  2183. this.BOF12.TabIndex = 258;
  2184. this.BOF12.Text = "0";
  2185. //
  2186. // BOF11
  2187. //
  2188. this.BOF11.AutoSize = true;
  2189. this.BOF11.Location = new System.Drawing.Point(100, 21);
  2190. this.BOF11.Name = "BOF11";
  2191. this.BOF11.Size = new System.Drawing.Size(11, 12);
  2192. this.BOF11.TabIndex = 257;
  2193. this.BOF11.Text = "0";
  2194. //
  2195. // label29
  2196. //
  2197. this.label29.AutoSize = true;
  2198. this.label29.Location = new System.Drawing.Point(200, 380);
  2199. this.label29.Name = "label29";
  2200. this.label29.Size = new System.Drawing.Size(89, 12);
  2201. this.label29.TabIndex = 256;
  2202. this.label29.Text = "4#倾动电机转距";
  2203. //
  2204. // label28
  2205. //
  2206. this.label28.AutoSize = true;
  2207. this.label28.Location = new System.Drawing.Point(200, 344);
  2208. this.label28.Name = "label28";
  2209. this.label28.Size = new System.Drawing.Size(89, 12);
  2210. this.label28.TabIndex = 255;
  2211. this.label28.Text = "3#倾动电机转距";
  2212. //
  2213. // label27
  2214. //
  2215. this.label27.AutoSize = true;
  2216. this.label27.Location = new System.Drawing.Point(200, 308);
  2217. this.label27.Name = "label27";
  2218. this.label27.Size = new System.Drawing.Size(89, 12);
  2219. this.label27.TabIndex = 254;
  2220. this.label27.Text = "2#倾动电机转距";
  2221. //
  2222. // label26
  2223. //
  2224. this.label26.AutoSize = true;
  2225. this.label26.Location = new System.Drawing.Point(200, 272);
  2226. this.label26.Name = "label26";
  2227. this.label26.Size = new System.Drawing.Size(89, 12);
  2228. this.label26.TabIndex = 253;
  2229. this.label26.Text = "1#倾动电机转距";
  2230. //
  2231. // label25
  2232. //
  2233. this.label25.AutoSize = true;
  2234. this.label25.Location = new System.Drawing.Point(200, 236);
  2235. this.label25.Name = "label25";
  2236. this.label25.Size = new System.Drawing.Size(53, 12);
  2237. this.label25.TabIndex = 252;
  2238. this.label25.Text = "B枪张力2";
  2239. //
  2240. // label24
  2241. //
  2242. this.label24.AutoSize = true;
  2243. this.label24.Location = new System.Drawing.Point(200, 200);
  2244. this.label24.Name = "label24";
  2245. this.label24.Size = new System.Drawing.Size(53, 12);
  2246. this.label24.TabIndex = 251;
  2247. this.label24.Text = "A枪张力2";
  2248. //
  2249. // label23
  2250. //
  2251. this.label23.AutoSize = true;
  2252. this.label23.Location = new System.Drawing.Point(200, 164);
  2253. this.label23.Name = "label23";
  2254. this.label23.Size = new System.Drawing.Size(83, 12);
  2255. this.label23.TabIndex = 250;
  2256. this.label23.Text = "B枪高度编码器";
  2257. //
  2258. // label22
  2259. //
  2260. this.label22.AutoSize = true;
  2261. this.label22.Location = new System.Drawing.Point(200, 128);
  2262. this.label22.Name = "label22";
  2263. this.label22.Size = new System.Drawing.Size(77, 12);
  2264. this.label22.TabIndex = 249;
  2265. this.label22.Text = "倾动摇炉角度";
  2266. //
  2267. // label21
  2268. //
  2269. this.label21.AutoSize = true;
  2270. this.label21.Location = new System.Drawing.Point(200, 92);
  2271. this.label21.Name = "label21";
  2272. this.label21.Size = new System.Drawing.Size(89, 12);
  2273. this.label21.TabIndex = 248;
  2274. this.label21.Text = "炉体冷却水流量";
  2275. //
  2276. // label20
  2277. //
  2278. this.label20.AutoSize = true;
  2279. this.label20.Location = new System.Drawing.Point(200, 56);
  2280. this.label20.Name = "label20";
  2281. this.label20.Size = new System.Drawing.Size(83, 12);
  2282. this.label20.TabIndex = 247;
  2283. this.label20.Text = "氧枪出水流量B";
  2284. //
  2285. // label19
  2286. //
  2287. this.label19.AutoSize = true;
  2288. this.label19.Location = new System.Drawing.Point(200, 21);
  2289. this.label19.Name = "label19";
  2290. this.label19.Size = new System.Drawing.Size(77, 12);
  2291. this.label19.TabIndex = 246;
  2292. this.label19.Text = "氧枪进水流量";
  2293. //
  2294. // label18
  2295. //
  2296. this.label18.AutoSize = true;
  2297. this.label18.Location = new System.Drawing.Point(3, 380);
  2298. this.label18.Name = "label18";
  2299. this.label18.Size = new System.Drawing.Size(89, 12);
  2300. this.label18.TabIndex = 245;
  2301. this.label18.Text = "4#倾动电机电流";
  2302. //
  2303. // label17
  2304. //
  2305. this.label17.AutoSize = true;
  2306. this.label17.Location = new System.Drawing.Point(3, 344);
  2307. this.label17.Name = "label17";
  2308. this.label17.Size = new System.Drawing.Size(89, 12);
  2309. this.label17.TabIndex = 244;
  2310. this.label17.Text = "3#倾动电机电流";
  2311. //
  2312. // label16
  2313. //
  2314. this.label16.AutoSize = true;
  2315. this.label16.Location = new System.Drawing.Point(3, 308);
  2316. this.label16.Name = "label16";
  2317. this.label16.Size = new System.Drawing.Size(89, 12);
  2318. this.label16.TabIndex = 243;
  2319. this.label16.Text = "2#倾动电机电流";
  2320. //
  2321. // label15
  2322. //
  2323. this.label15.AutoSize = true;
  2324. this.label15.Location = new System.Drawing.Point(3, 272);
  2325. this.label15.Name = "label15";
  2326. this.label15.Size = new System.Drawing.Size(89, 12);
  2327. this.label15.TabIndex = 242;
  2328. this.label15.Text = "1#倾动电机电流";
  2329. //
  2330. // label14
  2331. //
  2332. this.label14.AutoSize = true;
  2333. this.label14.Location = new System.Drawing.Point(3, 236);
  2334. this.label14.Name = "label14";
  2335. this.label14.Size = new System.Drawing.Size(53, 12);
  2336. this.label14.TabIndex = 241;
  2337. this.label14.Text = "B枪张力1";
  2338. //
  2339. // label13
  2340. //
  2341. this.label13.AutoSize = true;
  2342. this.label13.Location = new System.Drawing.Point(3, 200);
  2343. this.label13.Name = "label13";
  2344. this.label13.Size = new System.Drawing.Size(53, 12);
  2345. this.label13.TabIndex = 240;
  2346. this.label13.Text = "A枪张力1";
  2347. //
  2348. // label12
  2349. //
  2350. this.label12.AutoSize = true;
  2351. this.label12.Location = new System.Drawing.Point(3, 164);
  2352. this.label12.Name = "label12";
  2353. this.label12.Size = new System.Drawing.Size(83, 12);
  2354. this.label12.TabIndex = 239;
  2355. this.label12.Text = "A枪高度编码器";
  2356. //
  2357. // label11
  2358. //
  2359. this.label11.AutoSize = true;
  2360. this.label11.Location = new System.Drawing.Point(3, 128);
  2361. this.label11.Name = "label11";
  2362. this.label11.Size = new System.Drawing.Size(53, 12);
  2363. this.label11.TabIndex = 238;
  2364. this.label11.Text = "废钢重量";
  2365. this.label11.TextAlign = System.Drawing.ContentAlignment.TopRight;
  2366. //
  2367. // label10
  2368. //
  2369. this.label10.AutoSize = true;
  2370. this.label10.Location = new System.Drawing.Point(3, 92);
  2371. this.label10.Name = "label10";
  2372. this.label10.Size = new System.Drawing.Size(89, 12);
  2373. this.label10.TabIndex = 237;
  2374. this.label10.Text = "炉体冷却水压力";
  2375. //
  2376. // label9
  2377. //
  2378. this.label9.AutoSize = true;
  2379. this.label9.Location = new System.Drawing.Point(3, 56);
  2380. this.label9.Name = "label9";
  2381. this.label9.Size = new System.Drawing.Size(83, 12);
  2382. this.label9.TabIndex = 236;
  2383. this.label9.Text = "氧枪出水流量A";
  2384. //
  2385. // label8
  2386. //
  2387. this.label8.AutoSize = true;
  2388. this.label8.Location = new System.Drawing.Point(3, 21);
  2389. this.label8.Name = "label8";
  2390. this.label8.Size = new System.Drawing.Size(65, 12);
  2391. this.label8.TabIndex = 235;
  2392. this.label8.Text = "氧枪水压力";
  2393. //
  2394. // label7
  2395. //
  2396. this.label7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2397. this.label7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2398. this.label7.ForeColor = System.Drawing.Color.Blue;
  2399. this.label7.Location = new System.Drawing.Point(800, 400);
  2400. this.label7.Name = "label7";
  2401. this.label7.Size = new System.Drawing.Size(500, 400);
  2402. this.label7.TabIndex = 234;
  2403. this.label7.Text = "一次除尘3#风机";
  2404. //
  2405. // label6
  2406. //
  2407. this.label6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2408. this.label6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2409. this.label6.ForeColor = System.Drawing.Color.Blue;
  2410. this.label6.Location = new System.Drawing.Point(400, 400);
  2411. this.label6.Name = "label6";
  2412. this.label6.Size = new System.Drawing.Size(400, 400);
  2413. this.label6.TabIndex = 233;
  2414. this.label6.Text = "一次除尘2#风机";
  2415. //
  2416. // label5
  2417. //
  2418. this.label5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2419. this.label5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2420. this.label5.ForeColor = System.Drawing.Color.Blue;
  2421. this.label5.Location = new System.Drawing.Point(800, 0);
  2422. this.label5.Name = "label5";
  2423. this.label5.Size = new System.Drawing.Size(500, 400);
  2424. this.label5.TabIndex = 232;
  2425. this.label5.Text = "二次除尘风机";
  2426. //
  2427. // label4
  2428. //
  2429. this.label4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2430. this.label4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2431. this.label4.ForeColor = System.Drawing.Color.Blue;
  2432. this.label4.Location = new System.Drawing.Point(0, 400);
  2433. this.label4.Name = "label4";
  2434. this.label4.Size = new System.Drawing.Size(400, 400);
  2435. this.label4.TabIndex = 231;
  2436. this.label4.Text = "一次除尘1#风机";
  2437. //
  2438. // label3
  2439. //
  2440. this.label3.AutoSize = true;
  2441. this.label3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2442. this.label3.ForeColor = System.Drawing.Color.Blue;
  2443. this.label3.Location = new System.Drawing.Point(890, 17);
  2444. this.label3.Name = "label3";
  2445. this.label3.Size = new System.Drawing.Size(0, 16);
  2446. this.label3.TabIndex = 230;
  2447. //
  2448. // label2
  2449. //
  2450. this.label2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2451. this.label2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2452. this.label2.ForeColor = System.Drawing.Color.Blue;
  2453. this.label2.Location = new System.Drawing.Point(400, 0);
  2454. this.label2.Name = "label2";
  2455. this.label2.Size = new System.Drawing.Size(400, 400);
  2456. this.label2.TabIndex = 228;
  2457. this.label2.Text = "2#转炉";
  2458. //
  2459. // label1
  2460. //
  2461. this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2462. this.label1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2463. this.label1.ForeColor = System.Drawing.Color.Blue;
  2464. this.label1.Location = new System.Drawing.Point(0, 0);
  2465. this.label1.Name = "label1";
  2466. this.label1.Size = new System.Drawing.Size(400, 400);
  2467. this.label1.TabIndex = 227;
  2468. this.label1.Text = "1#转炉";
  2469. //
  2470. // ultraDataSource1
  2471. //
  2472. this.ultraDataSource1.Band.Columns.AddRange(new object[] {
  2473. ultraDataColumn1,
  2474. ultraDataColumn2,
  2475. ultraDataColumn3,
  2476. ultraDataColumn4});
  2477. //
  2478. // FrmEquipmentMonitor
  2479. //
  2480. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  2481. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2482. this.ClientSize = new System.Drawing.Size(1202, 735);
  2483. this.Controls.Add(this.panel1);
  2484. this.Name = "FrmEquipmentMonitor";
  2485. this.Text = "设备运行参数监控";
  2486. this.Load += new System.EventHandler(this.FrmEquipmentMonitor_Load);
  2487. this.panel1.ResumeLayout(false);
  2488. this.panel1.PerformLayout();
  2489. ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).EndInit();
  2490. this.ResumeLayout(false);
  2491. }
  2492. #endregion
  2493. private System.Windows.Forms.Panel panel1;
  2494. public Infragistics.Win.UltraWinDataSource.UltraDataSource ultraDataSource1;
  2495. private System.Windows.Forms.Label label2;
  2496. private System.Windows.Forms.Label label1;
  2497. private System.Windows.Forms.Label label5;
  2498. private System.Windows.Forms.Label label4;
  2499. private System.Windows.Forms.Label label3;
  2500. private System.Windows.Forms.Label label7;
  2501. private System.Windows.Forms.Label label6;
  2502. private System.Windows.Forms.Label label9;
  2503. private System.Windows.Forms.Label label8;
  2504. private System.Windows.Forms.Label label29;
  2505. private System.Windows.Forms.Label label28;
  2506. private System.Windows.Forms.Label label27;
  2507. private System.Windows.Forms.Label label26;
  2508. private System.Windows.Forms.Label label25;
  2509. private System.Windows.Forms.Label label24;
  2510. private System.Windows.Forms.Label label23;
  2511. private System.Windows.Forms.Label label22;
  2512. private System.Windows.Forms.Label label21;
  2513. private System.Windows.Forms.Label label20;
  2514. private System.Windows.Forms.Label label19;
  2515. private System.Windows.Forms.Label label18;
  2516. private System.Windows.Forms.Label label17;
  2517. private System.Windows.Forms.Label label16;
  2518. private System.Windows.Forms.Label label15;
  2519. private System.Windows.Forms.Label label14;
  2520. private System.Windows.Forms.Label label13;
  2521. private System.Windows.Forms.Label label12;
  2522. private System.Windows.Forms.Label label11;
  2523. private System.Windows.Forms.Label label10;
  2524. private System.Windows.Forms.Label BOF211;
  2525. private System.Windows.Forms.Label BOF210;
  2526. private System.Windows.Forms.Label BOF29;
  2527. private System.Windows.Forms.Label BOF28;
  2528. private System.Windows.Forms.Label BOF27;
  2529. private System.Windows.Forms.Label BOF26;
  2530. private System.Windows.Forms.Label BOF25;
  2531. private System.Windows.Forms.Label BOF24;
  2532. private System.Windows.Forms.Label BOF23;
  2533. private System.Windows.Forms.Label BOF22;
  2534. private System.Windows.Forms.Label BOF21;
  2535. private System.Windows.Forms.Label BOF111;
  2536. private System.Windows.Forms.Label BOF110;
  2537. private System.Windows.Forms.Label BOF19;
  2538. private System.Windows.Forms.Label BOF18;
  2539. private System.Windows.Forms.Label BOF17;
  2540. private System.Windows.Forms.Label BOF16;
  2541. private System.Windows.Forms.Label BOF15;
  2542. private System.Windows.Forms.Label BOF14;
  2543. private System.Windows.Forms.Label BOF13;
  2544. private System.Windows.Forms.Label BOF12;
  2545. private System.Windows.Forms.Label BOF11;
  2546. private System.Windows.Forms.Label label41;
  2547. private System.Windows.Forms.Label label40;
  2548. private System.Windows.Forms.Label label39;
  2549. private System.Windows.Forms.Label label38;
  2550. private System.Windows.Forms.Label label37;
  2551. private System.Windows.Forms.Label label36;
  2552. private System.Windows.Forms.Label label35;
  2553. private System.Windows.Forms.Label label34;
  2554. private System.Windows.Forms.Label label33;
  2555. private System.Windows.Forms.Label label32;
  2556. private System.Windows.Forms.Label label31;
  2557. private System.Windows.Forms.Label label30;
  2558. private System.Windows.Forms.Label label51;
  2559. private System.Windows.Forms.Label label50;
  2560. private System.Windows.Forms.Label label49;
  2561. private System.Windows.Forms.Label label48;
  2562. private System.Windows.Forms.Label label47;
  2563. private System.Windows.Forms.Label label46;
  2564. private System.Windows.Forms.Label label45;
  2565. private System.Windows.Forms.Label label44;
  2566. private System.Windows.Forms.Label label43;
  2567. private System.Windows.Forms.Label label42;
  2568. private System.Windows.Forms.Label BOF42;
  2569. private System.Windows.Forms.Label BOF411;
  2570. private System.Windows.Forms.Label BOF410;
  2571. private System.Windows.Forms.Label BOF49;
  2572. private System.Windows.Forms.Label BOF48;
  2573. private System.Windows.Forms.Label BOF47;
  2574. private System.Windows.Forms.Label BOF46;
  2575. private System.Windows.Forms.Label BOF45;
  2576. private System.Windows.Forms.Label BOF44;
  2577. private System.Windows.Forms.Label BOF43;
  2578. private System.Windows.Forms.Label BOF41;
  2579. private System.Windows.Forms.Label BOF311;
  2580. private System.Windows.Forms.Label BOF310;
  2581. private System.Windows.Forms.Label BOF39;
  2582. private System.Windows.Forms.Label BOF38;
  2583. private System.Windows.Forms.Label BOF37;
  2584. private System.Windows.Forms.Label BOF36;
  2585. private System.Windows.Forms.Label BOF35;
  2586. private System.Windows.Forms.Label BOF34;
  2587. private System.Windows.Forms.Label BOF33;
  2588. private System.Windows.Forms.Label BOF32;
  2589. private System.Windows.Forms.Label BOF31;
  2590. private System.Windows.Forms.Label label65;
  2591. private System.Windows.Forms.Label label64;
  2592. private System.Windows.Forms.Label label63;
  2593. private System.Windows.Forms.Label label62;
  2594. private System.Windows.Forms.Label label61;
  2595. private System.Windows.Forms.Label label60;
  2596. private System.Windows.Forms.Label label59;
  2597. private System.Windows.Forms.Label label58;
  2598. private System.Windows.Forms.Label label57;
  2599. private System.Windows.Forms.Label label56;
  2600. private System.Windows.Forms.Label label55;
  2601. private System.Windows.Forms.Label label54;
  2602. private System.Windows.Forms.Label label53;
  2603. private System.Windows.Forms.Label label52;
  2604. private System.Windows.Forms.Label ECCC27;
  2605. private System.Windows.Forms.Label ECCC26;
  2606. private System.Windows.Forms.Label ECCC25;
  2607. private System.Windows.Forms.Label ECCC24;
  2608. private System.Windows.Forms.Label ECCC23;
  2609. private System.Windows.Forms.Label ECCC22;
  2610. private System.Windows.Forms.Label ECCC21;
  2611. private System.Windows.Forms.Label ECCC17;
  2612. private System.Windows.Forms.Label ECCC16;
  2613. private System.Windows.Forms.Label ECCC15;
  2614. private System.Windows.Forms.Label ECCC14;
  2615. private System.Windows.Forms.Label ECCC13;
  2616. private System.Windows.Forms.Label ECCC12;
  2617. private System.Windows.Forms.Label ECCC11;
  2618. private System.Windows.Forms.Label label73;
  2619. private System.Windows.Forms.Label label72;
  2620. private System.Windows.Forms.Label label71;
  2621. private System.Windows.Forms.Label label70;
  2622. private System.Windows.Forms.Label label69;
  2623. private System.Windows.Forms.Label label68;
  2624. private System.Windows.Forms.Label label67;
  2625. private System.Windows.Forms.Label label66;
  2626. private System.Windows.Forms.Label FJ28;
  2627. private System.Windows.Forms.Label FJ27;
  2628. private System.Windows.Forms.Label FJ26;
  2629. private System.Windows.Forms.Label FJ25;
  2630. private System.Windows.Forms.Label FJ24;
  2631. private System.Windows.Forms.Label FJ23;
  2632. private System.Windows.Forms.Label FJ22;
  2633. private System.Windows.Forms.Label FJ21;
  2634. private System.Windows.Forms.Label FJ18;
  2635. private System.Windows.Forms.Label FJ17;
  2636. private System.Windows.Forms.Label FJ16;
  2637. private System.Windows.Forms.Label FJ15;
  2638. private System.Windows.Forms.Label FJ14;
  2639. private System.Windows.Forms.Label FJ13;
  2640. private System.Windows.Forms.Label FJ12;
  2641. private System.Windows.Forms.Label FJ11;
  2642. private System.Windows.Forms.Label label81;
  2643. private System.Windows.Forms.Label label80;
  2644. private System.Windows.Forms.Label label79;
  2645. private System.Windows.Forms.Label label78;
  2646. private System.Windows.Forms.Label label77;
  2647. private System.Windows.Forms.Label label76;
  2648. private System.Windows.Forms.Label label75;
  2649. private System.Windows.Forms.Label label74;
  2650. private System.Windows.Forms.Label label89;
  2651. private System.Windows.Forms.Label label88;
  2652. private System.Windows.Forms.Label label87;
  2653. private System.Windows.Forms.Label label86;
  2654. private System.Windows.Forms.Label label85;
  2655. private System.Windows.Forms.Label label84;
  2656. private System.Windows.Forms.Label label83;
  2657. private System.Windows.Forms.Label label82;
  2658. private System.Windows.Forms.Label label97;
  2659. private System.Windows.Forms.Label label96;
  2660. private System.Windows.Forms.Label label95;
  2661. private System.Windows.Forms.Label label94;
  2662. private System.Windows.Forms.Label label93;
  2663. private System.Windows.Forms.Label label92;
  2664. private System.Windows.Forms.Label label91;
  2665. private System.Windows.Forms.Label label90;
  2666. private System.Windows.Forms.Label FJ58;
  2667. private System.Windows.Forms.Label FJ57;
  2668. private System.Windows.Forms.Label FJ56;
  2669. private System.Windows.Forms.Label FJ55;
  2670. private System.Windows.Forms.Label FJ54;
  2671. private System.Windows.Forms.Label FJ53;
  2672. private System.Windows.Forms.Label FJ52;
  2673. private System.Windows.Forms.Label FJ51;
  2674. private System.Windows.Forms.Label FJ48;
  2675. private System.Windows.Forms.Label FJ47;
  2676. private System.Windows.Forms.Label FJ46;
  2677. private System.Windows.Forms.Label FJ45;
  2678. private System.Windows.Forms.Label FJ44;
  2679. private System.Windows.Forms.Label FJ43;
  2680. private System.Windows.Forms.Label FJ42;
  2681. private System.Windows.Forms.Label FJ41;
  2682. private System.Windows.Forms.Label FJ38;
  2683. private System.Windows.Forms.Label FJ37;
  2684. private System.Windows.Forms.Label FJ36;
  2685. private System.Windows.Forms.Label FJ35;
  2686. private System.Windows.Forms.Label FJ34;
  2687. private System.Windows.Forms.Label FJ33;
  2688. private System.Windows.Forms.Label FJ32;
  2689. private System.Windows.Forms.Label FJ31;
  2690. private System.Windows.Forms.Label label113;
  2691. private System.Windows.Forms.Label label112;
  2692. private System.Windows.Forms.Label label111;
  2693. private System.Windows.Forms.Label label110;
  2694. private System.Windows.Forms.Label label109;
  2695. private System.Windows.Forms.Label label108;
  2696. private System.Windows.Forms.Label label107;
  2697. private System.Windows.Forms.Label label106;
  2698. private System.Windows.Forms.Label label105;
  2699. private System.Windows.Forms.Label label104;
  2700. private System.Windows.Forms.Label label103;
  2701. private System.Windows.Forms.Label label102;
  2702. private System.Windows.Forms.Label label101;
  2703. private System.Windows.Forms.Label label100;
  2704. private System.Windows.Forms.Label label99;
  2705. private System.Windows.Forms.Label label98;
  2706. private System.Windows.Forms.Label FJ68;
  2707. private System.Windows.Forms.Label FJ67;
  2708. private System.Windows.Forms.Label FJ66;
  2709. private System.Windows.Forms.Label FJ65;
  2710. private System.Windows.Forms.Label FJ64;
  2711. private System.Windows.Forms.Label FJ63;
  2712. private System.Windows.Forms.Label FJ62;
  2713. private System.Windows.Forms.Label FJ61;
  2714. }
  2715. }