| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721 |
- namespace Core.LgMes.Client.lgIntegrationQuery
- {
- partial class FrmEquipmentMonitor
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn1 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("IRONID");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn2 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("INNO");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn3 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("HMPNO");
- Infragistics.Win.UltraWinDataSource.UltraDataColumn ultraDataColumn4 = new Infragistics.Win.UltraWinDataSource.UltraDataColumn("BOFNO");
- this.panel1 = new System.Windows.Forms.Panel();
- this.FJ68 = new System.Windows.Forms.Label();
- this.FJ67 = new System.Windows.Forms.Label();
- this.FJ66 = new System.Windows.Forms.Label();
- this.FJ65 = new System.Windows.Forms.Label();
- this.FJ64 = new System.Windows.Forms.Label();
- this.FJ63 = new System.Windows.Forms.Label();
- this.FJ62 = new System.Windows.Forms.Label();
- this.FJ61 = new System.Windows.Forms.Label();
- this.FJ58 = new System.Windows.Forms.Label();
- this.FJ57 = new System.Windows.Forms.Label();
- this.FJ56 = new System.Windows.Forms.Label();
- this.FJ55 = new System.Windows.Forms.Label();
- this.FJ54 = new System.Windows.Forms.Label();
- this.FJ53 = new System.Windows.Forms.Label();
- this.FJ52 = new System.Windows.Forms.Label();
- this.FJ51 = new System.Windows.Forms.Label();
- this.FJ48 = new System.Windows.Forms.Label();
- this.FJ47 = new System.Windows.Forms.Label();
- this.FJ46 = new System.Windows.Forms.Label();
- this.FJ45 = new System.Windows.Forms.Label();
- this.FJ44 = new System.Windows.Forms.Label();
- this.FJ43 = new System.Windows.Forms.Label();
- this.FJ42 = new System.Windows.Forms.Label();
- this.FJ41 = new System.Windows.Forms.Label();
- this.FJ38 = new System.Windows.Forms.Label();
- this.FJ37 = new System.Windows.Forms.Label();
- this.FJ36 = new System.Windows.Forms.Label();
- this.FJ35 = new System.Windows.Forms.Label();
- this.FJ34 = new System.Windows.Forms.Label();
- this.FJ33 = new System.Windows.Forms.Label();
- this.FJ32 = new System.Windows.Forms.Label();
- this.FJ31 = new System.Windows.Forms.Label();
- this.label113 = new System.Windows.Forms.Label();
- this.label112 = new System.Windows.Forms.Label();
- this.label111 = new System.Windows.Forms.Label();
- this.label110 = new System.Windows.Forms.Label();
- this.label109 = new System.Windows.Forms.Label();
- this.label108 = new System.Windows.Forms.Label();
- this.label107 = new System.Windows.Forms.Label();
- this.label106 = new System.Windows.Forms.Label();
- this.label105 = new System.Windows.Forms.Label();
- this.label104 = new System.Windows.Forms.Label();
- this.label103 = new System.Windows.Forms.Label();
- this.label102 = new System.Windows.Forms.Label();
- this.label101 = new System.Windows.Forms.Label();
- this.label100 = new System.Windows.Forms.Label();
- this.label99 = new System.Windows.Forms.Label();
- this.label98 = new System.Windows.Forms.Label();
- this.label97 = new System.Windows.Forms.Label();
- this.label96 = new System.Windows.Forms.Label();
- this.label95 = new System.Windows.Forms.Label();
- this.label94 = new System.Windows.Forms.Label();
- this.label93 = new System.Windows.Forms.Label();
- this.label92 = new System.Windows.Forms.Label();
- this.label91 = new System.Windows.Forms.Label();
- this.label90 = new System.Windows.Forms.Label();
- this.label89 = new System.Windows.Forms.Label();
- this.label88 = new System.Windows.Forms.Label();
- this.label87 = new System.Windows.Forms.Label();
- this.label86 = new System.Windows.Forms.Label();
- this.label85 = new System.Windows.Forms.Label();
- this.label84 = new System.Windows.Forms.Label();
- this.label83 = new System.Windows.Forms.Label();
- this.label82 = new System.Windows.Forms.Label();
- this.FJ28 = new System.Windows.Forms.Label();
- this.FJ27 = new System.Windows.Forms.Label();
- this.FJ26 = new System.Windows.Forms.Label();
- this.FJ25 = new System.Windows.Forms.Label();
- this.FJ24 = new System.Windows.Forms.Label();
- this.FJ23 = new System.Windows.Forms.Label();
- this.FJ22 = new System.Windows.Forms.Label();
- this.FJ21 = new System.Windows.Forms.Label();
- this.FJ18 = new System.Windows.Forms.Label();
- this.FJ17 = new System.Windows.Forms.Label();
- this.FJ16 = new System.Windows.Forms.Label();
- this.FJ15 = new System.Windows.Forms.Label();
- this.FJ14 = new System.Windows.Forms.Label();
- this.FJ13 = new System.Windows.Forms.Label();
- this.FJ12 = new System.Windows.Forms.Label();
- this.FJ11 = new System.Windows.Forms.Label();
- this.label81 = new System.Windows.Forms.Label();
- this.label80 = new System.Windows.Forms.Label();
- this.label79 = new System.Windows.Forms.Label();
- this.label78 = new System.Windows.Forms.Label();
- this.label77 = new System.Windows.Forms.Label();
- this.label76 = new System.Windows.Forms.Label();
- this.label75 = new System.Windows.Forms.Label();
- this.label74 = new System.Windows.Forms.Label();
- this.label73 = new System.Windows.Forms.Label();
- this.label72 = new System.Windows.Forms.Label();
- this.label71 = new System.Windows.Forms.Label();
- this.label70 = new System.Windows.Forms.Label();
- this.label69 = new System.Windows.Forms.Label();
- this.label68 = new System.Windows.Forms.Label();
- this.label67 = new System.Windows.Forms.Label();
- this.label66 = new System.Windows.Forms.Label();
- this.ECCC27 = new System.Windows.Forms.Label();
- this.ECCC26 = new System.Windows.Forms.Label();
- this.ECCC25 = new System.Windows.Forms.Label();
- this.ECCC24 = new System.Windows.Forms.Label();
- this.ECCC23 = new System.Windows.Forms.Label();
- this.ECCC22 = new System.Windows.Forms.Label();
- this.ECCC21 = new System.Windows.Forms.Label();
- this.ECCC17 = new System.Windows.Forms.Label();
- this.ECCC16 = new System.Windows.Forms.Label();
- this.ECCC15 = new System.Windows.Forms.Label();
- this.ECCC14 = new System.Windows.Forms.Label();
- this.ECCC13 = new System.Windows.Forms.Label();
- this.ECCC12 = new System.Windows.Forms.Label();
- this.ECCC11 = new System.Windows.Forms.Label();
- this.label65 = new System.Windows.Forms.Label();
- this.label64 = new System.Windows.Forms.Label();
- this.label63 = new System.Windows.Forms.Label();
- this.label62 = new System.Windows.Forms.Label();
- this.label61 = new System.Windows.Forms.Label();
- this.label60 = new System.Windows.Forms.Label();
- this.label59 = new System.Windows.Forms.Label();
- this.label58 = new System.Windows.Forms.Label();
- this.label57 = new System.Windows.Forms.Label();
- this.label56 = new System.Windows.Forms.Label();
- this.label55 = new System.Windows.Forms.Label();
- this.label54 = new System.Windows.Forms.Label();
- this.label53 = new System.Windows.Forms.Label();
- this.label52 = new System.Windows.Forms.Label();
- this.BOF42 = new System.Windows.Forms.Label();
- this.BOF411 = new System.Windows.Forms.Label();
- this.BOF410 = new System.Windows.Forms.Label();
- this.BOF49 = new System.Windows.Forms.Label();
- this.BOF48 = new System.Windows.Forms.Label();
- this.BOF47 = new System.Windows.Forms.Label();
- this.BOF46 = new System.Windows.Forms.Label();
- this.BOF45 = new System.Windows.Forms.Label();
- this.BOF44 = new System.Windows.Forms.Label();
- this.BOF43 = new System.Windows.Forms.Label();
- this.BOF41 = new System.Windows.Forms.Label();
- this.BOF311 = new System.Windows.Forms.Label();
- this.BOF310 = new System.Windows.Forms.Label();
- this.BOF39 = new System.Windows.Forms.Label();
- this.BOF38 = new System.Windows.Forms.Label();
- this.BOF37 = new System.Windows.Forms.Label();
- this.BOF36 = new System.Windows.Forms.Label();
- this.BOF35 = new System.Windows.Forms.Label();
- this.BOF34 = new System.Windows.Forms.Label();
- this.BOF33 = new System.Windows.Forms.Label();
- this.BOF32 = new System.Windows.Forms.Label();
- this.BOF31 = new System.Windows.Forms.Label();
- this.label51 = new System.Windows.Forms.Label();
- this.label50 = new System.Windows.Forms.Label();
- this.label49 = new System.Windows.Forms.Label();
- this.label48 = new System.Windows.Forms.Label();
- this.label47 = new System.Windows.Forms.Label();
- this.label46 = new System.Windows.Forms.Label();
- this.label45 = new System.Windows.Forms.Label();
- this.label44 = new System.Windows.Forms.Label();
- this.label43 = new System.Windows.Forms.Label();
- this.label42 = new System.Windows.Forms.Label();
- this.label41 = new System.Windows.Forms.Label();
- this.label40 = new System.Windows.Forms.Label();
- this.label39 = new System.Windows.Forms.Label();
- this.label38 = new System.Windows.Forms.Label();
- this.label37 = new System.Windows.Forms.Label();
- this.label36 = new System.Windows.Forms.Label();
- this.label35 = new System.Windows.Forms.Label();
- this.label34 = new System.Windows.Forms.Label();
- this.label33 = new System.Windows.Forms.Label();
- this.label32 = new System.Windows.Forms.Label();
- this.label31 = new System.Windows.Forms.Label();
- this.label30 = new System.Windows.Forms.Label();
- this.BOF211 = new System.Windows.Forms.Label();
- this.BOF210 = new System.Windows.Forms.Label();
- this.BOF29 = new System.Windows.Forms.Label();
- this.BOF28 = new System.Windows.Forms.Label();
- this.BOF27 = new System.Windows.Forms.Label();
- this.BOF26 = new System.Windows.Forms.Label();
- this.BOF25 = new System.Windows.Forms.Label();
- this.BOF24 = new System.Windows.Forms.Label();
- this.BOF23 = new System.Windows.Forms.Label();
- this.BOF22 = new System.Windows.Forms.Label();
- this.BOF21 = new System.Windows.Forms.Label();
- this.BOF111 = new System.Windows.Forms.Label();
- this.BOF110 = new System.Windows.Forms.Label();
- this.BOF19 = new System.Windows.Forms.Label();
- this.BOF18 = new System.Windows.Forms.Label();
- this.BOF17 = new System.Windows.Forms.Label();
- this.BOF16 = new System.Windows.Forms.Label();
- this.BOF15 = new System.Windows.Forms.Label();
- this.BOF14 = new System.Windows.Forms.Label();
- this.BOF13 = new System.Windows.Forms.Label();
- this.BOF12 = new System.Windows.Forms.Label();
- this.BOF11 = new System.Windows.Forms.Label();
- this.label29 = new System.Windows.Forms.Label();
- this.label28 = new System.Windows.Forms.Label();
- this.label27 = new System.Windows.Forms.Label();
- this.label26 = new System.Windows.Forms.Label();
- this.label25 = new System.Windows.Forms.Label();
- this.label24 = new System.Windows.Forms.Label();
- this.label23 = new System.Windows.Forms.Label();
- this.label22 = new System.Windows.Forms.Label();
- this.label21 = new System.Windows.Forms.Label();
- this.label20 = new System.Windows.Forms.Label();
- this.label19 = new System.Windows.Forms.Label();
- this.label18 = new System.Windows.Forms.Label();
- this.label17 = new System.Windows.Forms.Label();
- this.label16 = new System.Windows.Forms.Label();
- this.label15 = new System.Windows.Forms.Label();
- this.label14 = new System.Windows.Forms.Label();
- this.label13 = new System.Windows.Forms.Label();
- this.label12 = new System.Windows.Forms.Label();
- this.label11 = new System.Windows.Forms.Label();
- this.label10 = new System.Windows.Forms.Label();
- this.label9 = new System.Windows.Forms.Label();
- this.label8 = new System.Windows.Forms.Label();
- this.label7 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.label5 = new System.Windows.Forms.Label();
- this.label4 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.label1 = new System.Windows.Forms.Label();
- this.ultraDataSource1 = new Infragistics.Win.UltraWinDataSource.UltraDataSource(this.components);
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).BeginInit();
- this.SuspendLayout();
- //
- // panel1
- //
- this.panel1.BackColor = System.Drawing.Color.White;
- this.panel1.Controls.Add(this.FJ68);
- this.panel1.Controls.Add(this.FJ67);
- this.panel1.Controls.Add(this.FJ66);
- this.panel1.Controls.Add(this.FJ65);
- this.panel1.Controls.Add(this.FJ64);
- this.panel1.Controls.Add(this.FJ63);
- this.panel1.Controls.Add(this.FJ62);
- this.panel1.Controls.Add(this.FJ61);
- this.panel1.Controls.Add(this.FJ58);
- this.panel1.Controls.Add(this.FJ57);
- this.panel1.Controls.Add(this.FJ56);
- this.panel1.Controls.Add(this.FJ55);
- this.panel1.Controls.Add(this.FJ54);
- this.panel1.Controls.Add(this.FJ53);
- this.panel1.Controls.Add(this.FJ52);
- this.panel1.Controls.Add(this.FJ51);
- this.panel1.Controls.Add(this.FJ48);
- this.panel1.Controls.Add(this.FJ47);
- this.panel1.Controls.Add(this.FJ46);
- this.panel1.Controls.Add(this.FJ45);
- this.panel1.Controls.Add(this.FJ44);
- this.panel1.Controls.Add(this.FJ43);
- this.panel1.Controls.Add(this.FJ42);
- this.panel1.Controls.Add(this.FJ41);
- this.panel1.Controls.Add(this.FJ38);
- this.panel1.Controls.Add(this.FJ37);
- this.panel1.Controls.Add(this.FJ36);
- this.panel1.Controls.Add(this.FJ35);
- this.panel1.Controls.Add(this.FJ34);
- this.panel1.Controls.Add(this.FJ33);
- this.panel1.Controls.Add(this.FJ32);
- this.panel1.Controls.Add(this.FJ31);
- this.panel1.Controls.Add(this.label113);
- this.panel1.Controls.Add(this.label112);
- this.panel1.Controls.Add(this.label111);
- this.panel1.Controls.Add(this.label110);
- this.panel1.Controls.Add(this.label109);
- this.panel1.Controls.Add(this.label108);
- this.panel1.Controls.Add(this.label107);
- this.panel1.Controls.Add(this.label106);
- this.panel1.Controls.Add(this.label105);
- this.panel1.Controls.Add(this.label104);
- this.panel1.Controls.Add(this.label103);
- this.panel1.Controls.Add(this.label102);
- this.panel1.Controls.Add(this.label101);
- this.panel1.Controls.Add(this.label100);
- this.panel1.Controls.Add(this.label99);
- this.panel1.Controls.Add(this.label98);
- this.panel1.Controls.Add(this.label97);
- this.panel1.Controls.Add(this.label96);
- this.panel1.Controls.Add(this.label95);
- this.panel1.Controls.Add(this.label94);
- this.panel1.Controls.Add(this.label93);
- this.panel1.Controls.Add(this.label92);
- this.panel1.Controls.Add(this.label91);
- this.panel1.Controls.Add(this.label90);
- this.panel1.Controls.Add(this.label89);
- this.panel1.Controls.Add(this.label88);
- this.panel1.Controls.Add(this.label87);
- this.panel1.Controls.Add(this.label86);
- this.panel1.Controls.Add(this.label85);
- this.panel1.Controls.Add(this.label84);
- this.panel1.Controls.Add(this.label83);
- this.panel1.Controls.Add(this.label82);
- this.panel1.Controls.Add(this.FJ28);
- this.panel1.Controls.Add(this.FJ27);
- this.panel1.Controls.Add(this.FJ26);
- this.panel1.Controls.Add(this.FJ25);
- this.panel1.Controls.Add(this.FJ24);
- this.panel1.Controls.Add(this.FJ23);
- this.panel1.Controls.Add(this.FJ22);
- this.panel1.Controls.Add(this.FJ21);
- this.panel1.Controls.Add(this.FJ18);
- this.panel1.Controls.Add(this.FJ17);
- this.panel1.Controls.Add(this.FJ16);
- this.panel1.Controls.Add(this.FJ15);
- this.panel1.Controls.Add(this.FJ14);
- this.panel1.Controls.Add(this.FJ13);
- this.panel1.Controls.Add(this.FJ12);
- this.panel1.Controls.Add(this.FJ11);
- this.panel1.Controls.Add(this.label81);
- this.panel1.Controls.Add(this.label80);
- this.panel1.Controls.Add(this.label79);
- this.panel1.Controls.Add(this.label78);
- this.panel1.Controls.Add(this.label77);
- this.panel1.Controls.Add(this.label76);
- this.panel1.Controls.Add(this.label75);
- this.panel1.Controls.Add(this.label74);
- this.panel1.Controls.Add(this.label73);
- this.panel1.Controls.Add(this.label72);
- this.panel1.Controls.Add(this.label71);
- this.panel1.Controls.Add(this.label70);
- this.panel1.Controls.Add(this.label69);
- this.panel1.Controls.Add(this.label68);
- this.panel1.Controls.Add(this.label67);
- this.panel1.Controls.Add(this.label66);
- this.panel1.Controls.Add(this.ECCC27);
- this.panel1.Controls.Add(this.ECCC26);
- this.panel1.Controls.Add(this.ECCC25);
- this.panel1.Controls.Add(this.ECCC24);
- this.panel1.Controls.Add(this.ECCC23);
- this.panel1.Controls.Add(this.ECCC22);
- this.panel1.Controls.Add(this.ECCC21);
- this.panel1.Controls.Add(this.ECCC17);
- this.panel1.Controls.Add(this.ECCC16);
- this.panel1.Controls.Add(this.ECCC15);
- this.panel1.Controls.Add(this.ECCC14);
- this.panel1.Controls.Add(this.ECCC13);
- this.panel1.Controls.Add(this.ECCC12);
- this.panel1.Controls.Add(this.ECCC11);
- this.panel1.Controls.Add(this.label65);
- this.panel1.Controls.Add(this.label64);
- this.panel1.Controls.Add(this.label63);
- this.panel1.Controls.Add(this.label62);
- this.panel1.Controls.Add(this.label61);
- this.panel1.Controls.Add(this.label60);
- this.panel1.Controls.Add(this.label59);
- this.panel1.Controls.Add(this.label58);
- this.panel1.Controls.Add(this.label57);
- this.panel1.Controls.Add(this.label56);
- this.panel1.Controls.Add(this.label55);
- this.panel1.Controls.Add(this.label54);
- this.panel1.Controls.Add(this.label53);
- this.panel1.Controls.Add(this.label52);
- this.panel1.Controls.Add(this.BOF42);
- this.panel1.Controls.Add(this.BOF411);
- this.panel1.Controls.Add(this.BOF410);
- this.panel1.Controls.Add(this.BOF49);
- this.panel1.Controls.Add(this.BOF48);
- this.panel1.Controls.Add(this.BOF47);
- this.panel1.Controls.Add(this.BOF46);
- this.panel1.Controls.Add(this.BOF45);
- this.panel1.Controls.Add(this.BOF44);
- this.panel1.Controls.Add(this.BOF43);
- this.panel1.Controls.Add(this.BOF41);
- this.panel1.Controls.Add(this.BOF311);
- this.panel1.Controls.Add(this.BOF310);
- this.panel1.Controls.Add(this.BOF39);
- this.panel1.Controls.Add(this.BOF38);
- this.panel1.Controls.Add(this.BOF37);
- this.panel1.Controls.Add(this.BOF36);
- this.panel1.Controls.Add(this.BOF35);
- this.panel1.Controls.Add(this.BOF34);
- this.panel1.Controls.Add(this.BOF33);
- this.panel1.Controls.Add(this.BOF32);
- this.panel1.Controls.Add(this.BOF31);
- this.panel1.Controls.Add(this.label51);
- this.panel1.Controls.Add(this.label50);
- this.panel1.Controls.Add(this.label49);
- this.panel1.Controls.Add(this.label48);
- this.panel1.Controls.Add(this.label47);
- this.panel1.Controls.Add(this.label46);
- this.panel1.Controls.Add(this.label45);
- this.panel1.Controls.Add(this.label44);
- this.panel1.Controls.Add(this.label43);
- this.panel1.Controls.Add(this.label42);
- this.panel1.Controls.Add(this.label41);
- this.panel1.Controls.Add(this.label40);
- this.panel1.Controls.Add(this.label39);
- this.panel1.Controls.Add(this.label38);
- this.panel1.Controls.Add(this.label37);
- this.panel1.Controls.Add(this.label36);
- this.panel1.Controls.Add(this.label35);
- this.panel1.Controls.Add(this.label34);
- this.panel1.Controls.Add(this.label33);
- this.panel1.Controls.Add(this.label32);
- this.panel1.Controls.Add(this.label31);
- this.panel1.Controls.Add(this.label30);
- this.panel1.Controls.Add(this.BOF211);
- this.panel1.Controls.Add(this.BOF210);
- this.panel1.Controls.Add(this.BOF29);
- this.panel1.Controls.Add(this.BOF28);
- this.panel1.Controls.Add(this.BOF27);
- this.panel1.Controls.Add(this.BOF26);
- this.panel1.Controls.Add(this.BOF25);
- this.panel1.Controls.Add(this.BOF24);
- this.panel1.Controls.Add(this.BOF23);
- this.panel1.Controls.Add(this.BOF22);
- this.panel1.Controls.Add(this.BOF21);
- this.panel1.Controls.Add(this.BOF111);
- this.panel1.Controls.Add(this.BOF110);
- this.panel1.Controls.Add(this.BOF19);
- this.panel1.Controls.Add(this.BOF18);
- this.panel1.Controls.Add(this.BOF17);
- this.panel1.Controls.Add(this.BOF16);
- this.panel1.Controls.Add(this.BOF15);
- this.panel1.Controls.Add(this.BOF14);
- this.panel1.Controls.Add(this.BOF13);
- this.panel1.Controls.Add(this.BOF12);
- this.panel1.Controls.Add(this.BOF11);
- this.panel1.Controls.Add(this.label29);
- this.panel1.Controls.Add(this.label28);
- this.panel1.Controls.Add(this.label27);
- this.panel1.Controls.Add(this.label26);
- this.panel1.Controls.Add(this.label25);
- this.panel1.Controls.Add(this.label24);
- this.panel1.Controls.Add(this.label23);
- this.panel1.Controls.Add(this.label22);
- this.panel1.Controls.Add(this.label21);
- this.panel1.Controls.Add(this.label20);
- this.panel1.Controls.Add(this.label19);
- this.panel1.Controls.Add(this.label18);
- this.panel1.Controls.Add(this.label17);
- this.panel1.Controls.Add(this.label16);
- this.panel1.Controls.Add(this.label15);
- this.panel1.Controls.Add(this.label14);
- this.panel1.Controls.Add(this.label13);
- this.panel1.Controls.Add(this.label12);
- this.panel1.Controls.Add(this.label11);
- this.panel1.Controls.Add(this.label10);
- this.panel1.Controls.Add(this.label9);
- this.panel1.Controls.Add(this.label8);
- this.panel1.Controls.Add(this.label7);
- this.panel1.Controls.Add(this.label6);
- this.panel1.Controls.Add(this.label5);
- this.panel1.Controls.Add(this.label4);
- this.panel1.Controls.Add(this.label3);
- this.panel1.Controls.Add(this.label2);
- this.panel1.Controls.Add(this.label1);
- this.panel1.Location = new System.Drawing.Point(1, 2);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1300, 900);
- this.panel1.TabIndex = 0;
- //
- // FJ68
- //
- this.FJ68.AutoSize = true;
- this.FJ68.Location = new System.Drawing.Point(1104, 720);
- this.FJ68.Name = "FJ68";
- this.FJ68.Size = new System.Drawing.Size(11, 12);
- this.FJ68.TabIndex = 446;
- this.FJ68.Text = "0";
- //
- // FJ67
- //
- this.FJ67.AutoSize = true;
- this.FJ67.Location = new System.Drawing.Point(1104, 680);
- this.FJ67.Name = "FJ67";
- this.FJ67.Size = new System.Drawing.Size(11, 12);
- this.FJ67.TabIndex = 445;
- this.FJ67.Text = "0";
- //
- // FJ66
- //
- this.FJ66.AutoSize = true;
- this.FJ66.Location = new System.Drawing.Point(1104, 640);
- this.FJ66.Name = "FJ66";
- this.FJ66.Size = new System.Drawing.Size(11, 12);
- this.FJ66.TabIndex = 444;
- this.FJ66.Text = "0";
- //
- // FJ65
- //
- this.FJ65.AutoSize = true;
- this.FJ65.Location = new System.Drawing.Point(1104, 600);
- this.FJ65.Name = "FJ65";
- this.FJ65.Size = new System.Drawing.Size(11, 12);
- this.FJ65.TabIndex = 443;
- this.FJ65.Text = "0";
- //
- // FJ64
- //
- this.FJ64.AutoSize = true;
- this.FJ64.Location = new System.Drawing.Point(1104, 560);
- this.FJ64.Name = "FJ64";
- this.FJ64.Size = new System.Drawing.Size(11, 12);
- this.FJ64.TabIndex = 442;
- this.FJ64.Text = "0";
- //
- // FJ63
- //
- this.FJ63.AutoSize = true;
- this.FJ63.Location = new System.Drawing.Point(1104, 520);
- this.FJ63.Name = "FJ63";
- this.FJ63.Size = new System.Drawing.Size(11, 12);
- this.FJ63.TabIndex = 441;
- this.FJ63.Text = "0";
- //
- // FJ62
- //
- this.FJ62.AutoSize = true;
- this.FJ62.Location = new System.Drawing.Point(1104, 480);
- this.FJ62.Name = "FJ62";
- this.FJ62.Size = new System.Drawing.Size(11, 12);
- this.FJ62.TabIndex = 440;
- this.FJ62.Text = "0";
- //
- // FJ61
- //
- this.FJ61.AutoSize = true;
- this.FJ61.Location = new System.Drawing.Point(1104, 440);
- this.FJ61.Name = "FJ61";
- this.FJ61.Size = new System.Drawing.Size(11, 12);
- this.FJ61.TabIndex = 439;
- this.FJ61.Text = "0";
- //
- // FJ58
- //
- this.FJ58.AutoSize = true;
- this.FJ58.Location = new System.Drawing.Point(900, 720);
- this.FJ58.Name = "FJ58";
- this.FJ58.Size = new System.Drawing.Size(11, 12);
- this.FJ58.TabIndex = 438;
- this.FJ58.Text = "0";
- //
- // FJ57
- //
- this.FJ57.AutoSize = true;
- this.FJ57.Location = new System.Drawing.Point(900, 680);
- this.FJ57.Name = "FJ57";
- this.FJ57.Size = new System.Drawing.Size(11, 12);
- this.FJ57.TabIndex = 437;
- this.FJ57.Text = "0";
- //
- // FJ56
- //
- this.FJ56.AutoSize = true;
- this.FJ56.Location = new System.Drawing.Point(900, 640);
- this.FJ56.Name = "FJ56";
- this.FJ56.Size = new System.Drawing.Size(11, 12);
- this.FJ56.TabIndex = 436;
- this.FJ56.Text = "0";
- //
- // FJ55
- //
- this.FJ55.AutoSize = true;
- this.FJ55.Location = new System.Drawing.Point(900, 600);
- this.FJ55.Name = "FJ55";
- this.FJ55.Size = new System.Drawing.Size(11, 12);
- this.FJ55.TabIndex = 435;
- this.FJ55.Text = "0";
- //
- // FJ54
- //
- this.FJ54.AutoSize = true;
- this.FJ54.Location = new System.Drawing.Point(900, 560);
- this.FJ54.Name = "FJ54";
- this.FJ54.Size = new System.Drawing.Size(11, 12);
- this.FJ54.TabIndex = 434;
- this.FJ54.Text = "0";
- //
- // FJ53
- //
- this.FJ53.AutoSize = true;
- this.FJ53.Location = new System.Drawing.Point(900, 520);
- this.FJ53.Name = "FJ53";
- this.FJ53.Size = new System.Drawing.Size(11, 12);
- this.FJ53.TabIndex = 433;
- this.FJ53.Text = "0";
- //
- // FJ52
- //
- this.FJ52.AutoSize = true;
- this.FJ52.Location = new System.Drawing.Point(900, 480);
- this.FJ52.Name = "FJ52";
- this.FJ52.Size = new System.Drawing.Size(11, 12);
- this.FJ52.TabIndex = 432;
- this.FJ52.Text = "0";
- //
- // FJ51
- //
- this.FJ51.AutoSize = true;
- this.FJ51.Location = new System.Drawing.Point(900, 440);
- this.FJ51.Name = "FJ51";
- this.FJ51.Size = new System.Drawing.Size(11, 12);
- this.FJ51.TabIndex = 431;
- this.FJ51.Text = "0";
- //
- // FJ48
- //
- this.FJ48.AutoSize = true;
- this.FJ48.Location = new System.Drawing.Point(703, 720);
- this.FJ48.Name = "FJ48";
- this.FJ48.Size = new System.Drawing.Size(11, 12);
- this.FJ48.TabIndex = 430;
- this.FJ48.Text = "0";
- //
- // FJ47
- //
- this.FJ47.AutoSize = true;
- this.FJ47.Location = new System.Drawing.Point(703, 680);
- this.FJ47.Name = "FJ47";
- this.FJ47.Size = new System.Drawing.Size(11, 12);
- this.FJ47.TabIndex = 429;
- this.FJ47.Text = "0";
- //
- // FJ46
- //
- this.FJ46.AutoSize = true;
- this.FJ46.Location = new System.Drawing.Point(703, 640);
- this.FJ46.Name = "FJ46";
- this.FJ46.Size = new System.Drawing.Size(11, 12);
- this.FJ46.TabIndex = 428;
- this.FJ46.Text = "0";
- //
- // FJ45
- //
- this.FJ45.AutoSize = true;
- this.FJ45.Location = new System.Drawing.Point(703, 600);
- this.FJ45.Name = "FJ45";
- this.FJ45.Size = new System.Drawing.Size(11, 12);
- this.FJ45.TabIndex = 427;
- this.FJ45.Text = "0";
- //
- // FJ44
- //
- this.FJ44.AutoSize = true;
- this.FJ44.Location = new System.Drawing.Point(703, 560);
- this.FJ44.Name = "FJ44";
- this.FJ44.Size = new System.Drawing.Size(11, 12);
- this.FJ44.TabIndex = 426;
- this.FJ44.Text = "0";
- //
- // FJ43
- //
- this.FJ43.AutoSize = true;
- this.FJ43.Location = new System.Drawing.Point(703, 520);
- this.FJ43.Name = "FJ43";
- this.FJ43.Size = new System.Drawing.Size(11, 12);
- this.FJ43.TabIndex = 425;
- this.FJ43.Text = "0";
- //
- // FJ42
- //
- this.FJ42.AutoSize = true;
- this.FJ42.Location = new System.Drawing.Point(703, 480);
- this.FJ42.Name = "FJ42";
- this.FJ42.Size = new System.Drawing.Size(11, 12);
- this.FJ42.TabIndex = 424;
- this.FJ42.Text = "0";
- //
- // FJ41
- //
- this.FJ41.AutoSize = true;
- this.FJ41.Location = new System.Drawing.Point(703, 440);
- this.FJ41.Name = "FJ41";
- this.FJ41.Size = new System.Drawing.Size(11, 12);
- this.FJ41.TabIndex = 423;
- this.FJ41.Text = "0";
- //
- // FJ38
- //
- this.FJ38.AutoSize = true;
- this.FJ38.Location = new System.Drawing.Point(504, 720);
- this.FJ38.Name = "FJ38";
- this.FJ38.Size = new System.Drawing.Size(11, 12);
- this.FJ38.TabIndex = 422;
- this.FJ38.Text = "0";
- //
- // FJ37
- //
- this.FJ37.AutoSize = true;
- this.FJ37.Location = new System.Drawing.Point(504, 680);
- this.FJ37.Name = "FJ37";
- this.FJ37.Size = new System.Drawing.Size(11, 12);
- this.FJ37.TabIndex = 421;
- this.FJ37.Text = "0";
- //
- // FJ36
- //
- this.FJ36.AutoSize = true;
- this.FJ36.Location = new System.Drawing.Point(504, 640);
- this.FJ36.Name = "FJ36";
- this.FJ36.Size = new System.Drawing.Size(11, 12);
- this.FJ36.TabIndex = 420;
- this.FJ36.Text = "0";
- //
- // FJ35
- //
- this.FJ35.AutoSize = true;
- this.FJ35.Location = new System.Drawing.Point(504, 600);
- this.FJ35.Name = "FJ35";
- this.FJ35.Size = new System.Drawing.Size(11, 12);
- this.FJ35.TabIndex = 419;
- this.FJ35.Text = "0";
- //
- // FJ34
- //
- this.FJ34.AutoSize = true;
- this.FJ34.Location = new System.Drawing.Point(504, 560);
- this.FJ34.Name = "FJ34";
- this.FJ34.Size = new System.Drawing.Size(11, 12);
- this.FJ34.TabIndex = 418;
- this.FJ34.Text = "0";
- //
- // FJ33
- //
- this.FJ33.AutoSize = true;
- this.FJ33.Location = new System.Drawing.Point(504, 520);
- this.FJ33.Name = "FJ33";
- this.FJ33.Size = new System.Drawing.Size(11, 12);
- this.FJ33.TabIndex = 417;
- this.FJ33.Text = "0";
- //
- // FJ32
- //
- this.FJ32.AutoSize = true;
- this.FJ32.Location = new System.Drawing.Point(504, 480);
- this.FJ32.Name = "FJ32";
- this.FJ32.Size = new System.Drawing.Size(11, 12);
- this.FJ32.TabIndex = 416;
- this.FJ32.Text = "0";
- //
- // FJ31
- //
- this.FJ31.AutoSize = true;
- this.FJ31.Location = new System.Drawing.Point(504, 440);
- this.FJ31.Name = "FJ31";
- this.FJ31.Size = new System.Drawing.Size(11, 12);
- this.FJ31.TabIndex = 415;
- this.FJ31.Text = "0";
- //
- // label113
- //
- this.label113.AutoSize = true;
- this.label113.Location = new System.Drawing.Point(980, 720);
- this.label113.Name = "label113";
- this.label113.Size = new System.Drawing.Size(53, 12);
- this.label113.TabIndex = 414;
- this.label113.Text = "风机转速";
- //
- // label112
- //
- this.label112.AutoSize = true;
- this.label112.Location = new System.Drawing.Point(980, 680);
- this.label112.Name = "label112";
- this.label112.Size = new System.Drawing.Size(53, 12);
- this.label112.TabIndex = 413;
- this.label112.Text = "电机电流";
- //
- // label111
- //
- this.label111.AutoSize = true;
- this.label111.Location = new System.Drawing.Point(980, 640);
- this.label111.Name = "label111";
- this.label111.Size = new System.Drawing.Size(89, 12);
- this.label111.TabIndex = 412;
- this.label111.Text = "固定端垂直振动";
- //
- // label110
- //
- this.label110.AutoSize = true;
- this.label110.Location = new System.Drawing.Point(980, 600);
- this.label110.Name = "label110";
- this.label110.Size = new System.Drawing.Size(89, 12);
- this.label110.TabIndex = 411;
- this.label110.Text = "固定端水平振动";
- //
- // label109
- //
- this.label109.AutoSize = true;
- this.label109.Location = new System.Drawing.Point(980, 560);
- this.label109.Name = "label109";
- this.label109.Size = new System.Drawing.Size(89, 12);
- this.label109.TabIndex = 410;
- this.label109.Text = "自由端垂直振动";
- //
- // label108
- //
- this.label108.AutoSize = true;
- this.label108.Location = new System.Drawing.Point(980, 520);
- this.label108.Name = "label108";
- this.label108.Size = new System.Drawing.Size(89, 12);
- this.label108.TabIndex = 409;
- this.label108.Text = "自由端水平振动";
- //
- // label107
- //
- this.label107.AutoSize = true;
- this.label107.Location = new System.Drawing.Point(980, 480);
- this.label107.Name = "label107";
- this.label107.Size = new System.Drawing.Size(77, 12);
- this.label107.TabIndex = 408;
- this.label107.Text = "液偶进油压力";
- //
- // label106
- //
- this.label106.AutoSize = true;
- this.label106.Location = new System.Drawing.Point(980, 440);
- this.label106.Name = "label106";
- this.label106.Size = new System.Drawing.Size(89, 12);
- this.label106.TabIndex = 407;
- this.label106.Text = "液偶润滑油压力";
- //
- // label105
- //
- this.label105.AutoSize = true;
- this.label105.Location = new System.Drawing.Point(803, 720);
- this.label105.Name = "label105";
- this.label105.Size = new System.Drawing.Size(77, 12);
- this.label105.TabIndex = 406;
- this.label105.Text = "外置油泵压力";
- //
- // label104
- //
- this.label104.AutoSize = true;
- this.label104.Location = new System.Drawing.Point(803, 680);
- this.label104.Name = "label104";
- this.label104.Size = new System.Drawing.Size(83, 12);
- this.label104.TabIndex = 405;
- this.label104.Text = "电机定子温度3";
- //
- // label103
- //
- this.label103.AutoSize = true;
- this.label103.Location = new System.Drawing.Point(803, 640);
- this.label103.Name = "label103";
- this.label103.Size = new System.Drawing.Size(83, 12);
- this.label103.TabIndex = 404;
- this.label103.Text = "电机定子温度2";
- //
- // label102
- //
- this.label102.AutoSize = true;
- this.label102.Location = new System.Drawing.Point(803, 600);
- this.label102.Name = "label102";
- this.label102.Size = new System.Drawing.Size(83, 12);
- this.label102.TabIndex = 403;
- this.label102.Text = "电机定子温度1";
- //
- // label101
- //
- this.label101.AutoSize = true;
- this.label101.Location = new System.Drawing.Point(803, 560);
- this.label101.Name = "label101";
- this.label101.Size = new System.Drawing.Size(89, 12);
- this.label101.TabIndex = 402;
- this.label101.Text = "风机后轴承轴温";
- //
- // label100
- //
- this.label100.AutoSize = true;
- this.label100.Location = new System.Drawing.Point(803, 520);
- this.label100.Name = "label100";
- this.label100.Size = new System.Drawing.Size(89, 12);
- this.label100.TabIndex = 401;
- this.label100.Text = "风机前轴承轴温";
- //
- // label99
- //
- this.label99.AutoSize = true;
- this.label99.Location = new System.Drawing.Point(803, 480);
- this.label99.Name = "label99";
- this.label99.Size = new System.Drawing.Size(89, 12);
- this.label99.TabIndex = 400;
- this.label99.Text = "电机后轴承轴温";
- //
- // label98
- //
- this.label98.AutoSize = true;
- this.label98.Location = new System.Drawing.Point(803, 440);
- this.label98.Name = "label98";
- this.label98.Size = new System.Drawing.Size(89, 12);
- this.label98.TabIndex = 399;
- this.label98.Text = "电机前轴承轴温";
- //
- // label97
- //
- this.label97.AutoSize = true;
- this.label97.Location = new System.Drawing.Point(600, 720);
- this.label97.Name = "label97";
- this.label97.Size = new System.Drawing.Size(53, 12);
- this.label97.TabIndex = 398;
- this.label97.Text = "风机转速";
- //
- // label96
- //
- this.label96.AutoSize = true;
- this.label96.Location = new System.Drawing.Point(600, 680);
- this.label96.Name = "label96";
- this.label96.Size = new System.Drawing.Size(53, 12);
- this.label96.TabIndex = 397;
- this.label96.Text = "电机电流";
- //
- // label95
- //
- this.label95.AutoSize = true;
- this.label95.Location = new System.Drawing.Point(600, 640);
- this.label95.Name = "label95";
- this.label95.Size = new System.Drawing.Size(89, 12);
- this.label95.TabIndex = 396;
- this.label95.Text = "固定端垂直振动";
- //
- // label94
- //
- this.label94.AutoSize = true;
- this.label94.Location = new System.Drawing.Point(600, 600);
- this.label94.Name = "label94";
- this.label94.Size = new System.Drawing.Size(89, 12);
- this.label94.TabIndex = 395;
- this.label94.Text = "固定端水平振动";
- //
- // label93
- //
- this.label93.AutoSize = true;
- this.label93.Location = new System.Drawing.Point(600, 560);
- this.label93.Name = "label93";
- this.label93.Size = new System.Drawing.Size(89, 12);
- this.label93.TabIndex = 394;
- this.label93.Text = "自由端垂直振动";
- //
- // label92
- //
- this.label92.AutoSize = true;
- this.label92.Location = new System.Drawing.Point(600, 520);
- this.label92.Name = "label92";
- this.label92.Size = new System.Drawing.Size(89, 12);
- this.label92.TabIndex = 393;
- this.label92.Text = "自由端水平振动";
- //
- // label91
- //
- this.label91.AutoSize = true;
- this.label91.Location = new System.Drawing.Point(600, 480);
- this.label91.Name = "label91";
- this.label91.Size = new System.Drawing.Size(77, 12);
- this.label91.TabIndex = 392;
- this.label91.Text = "液偶进油压力";
- //
- // label90
- //
- this.label90.AutoSize = true;
- this.label90.Location = new System.Drawing.Point(600, 440);
- this.label90.Name = "label90";
- this.label90.Size = new System.Drawing.Size(89, 12);
- this.label90.TabIndex = 391;
- this.label90.Text = "液偶润滑油压力";
- //
- // label89
- //
- this.label89.AutoSize = true;
- this.label89.Location = new System.Drawing.Point(403, 720);
- this.label89.Name = "label89";
- this.label89.Size = new System.Drawing.Size(77, 12);
- this.label89.TabIndex = 390;
- this.label89.Text = "外置油泵压力";
- //
- // label88
- //
- this.label88.AutoSize = true;
- this.label88.Location = new System.Drawing.Point(403, 680);
- this.label88.Name = "label88";
- this.label88.Size = new System.Drawing.Size(83, 12);
- this.label88.TabIndex = 389;
- this.label88.Text = "电机定子温度3";
- //
- // label87
- //
- this.label87.AutoSize = true;
- this.label87.Location = new System.Drawing.Point(403, 640);
- this.label87.Name = "label87";
- this.label87.Size = new System.Drawing.Size(83, 12);
- this.label87.TabIndex = 388;
- this.label87.Text = "电机定子温度2";
- //
- // label86
- //
- this.label86.AutoSize = true;
- this.label86.Location = new System.Drawing.Point(403, 600);
- this.label86.Name = "label86";
- this.label86.Size = new System.Drawing.Size(83, 12);
- this.label86.TabIndex = 387;
- this.label86.Text = "电机定子温度1";
- //
- // label85
- //
- this.label85.AutoSize = true;
- this.label85.Location = new System.Drawing.Point(403, 560);
- this.label85.Name = "label85";
- this.label85.Size = new System.Drawing.Size(89, 12);
- this.label85.TabIndex = 386;
- this.label85.Text = "风机后轴承轴温";
- //
- // label84
- //
- this.label84.AutoSize = true;
- this.label84.Location = new System.Drawing.Point(403, 520);
- this.label84.Name = "label84";
- this.label84.Size = new System.Drawing.Size(89, 12);
- this.label84.TabIndex = 385;
- this.label84.Text = "风机前轴承轴温";
- //
- // label83
- //
- this.label83.AutoSize = true;
- this.label83.Location = new System.Drawing.Point(403, 480);
- this.label83.Name = "label83";
- this.label83.Size = new System.Drawing.Size(89, 12);
- this.label83.TabIndex = 384;
- this.label83.Text = "电机后轴承轴温";
- //
- // label82
- //
- this.label82.AutoSize = true;
- this.label82.Location = new System.Drawing.Point(403, 440);
- this.label82.Name = "label82";
- this.label82.Size = new System.Drawing.Size(89, 12);
- this.label82.TabIndex = 383;
- this.label82.Text = "电机前轴承轴温";
- //
- // FJ28
- //
- this.FJ28.AutoSize = true;
- this.FJ28.Location = new System.Drawing.Point(310, 720);
- this.FJ28.Name = "FJ28";
- this.FJ28.Size = new System.Drawing.Size(11, 12);
- this.FJ28.TabIndex = 382;
- this.FJ28.Text = "0";
- //
- // FJ27
- //
- this.FJ27.AutoSize = true;
- this.FJ27.Location = new System.Drawing.Point(310, 680);
- this.FJ27.Name = "FJ27";
- this.FJ27.Size = new System.Drawing.Size(11, 12);
- this.FJ27.TabIndex = 381;
- this.FJ27.Text = "0";
- //
- // FJ26
- //
- this.FJ26.AutoSize = true;
- this.FJ26.Location = new System.Drawing.Point(310, 640);
- this.FJ26.Name = "FJ26";
- this.FJ26.Size = new System.Drawing.Size(11, 12);
- this.FJ26.TabIndex = 380;
- this.FJ26.Text = "0";
- //
- // FJ25
- //
- this.FJ25.AutoSize = true;
- this.FJ25.Location = new System.Drawing.Point(310, 600);
- this.FJ25.Name = "FJ25";
- this.FJ25.Size = new System.Drawing.Size(11, 12);
- this.FJ25.TabIndex = 379;
- this.FJ25.Text = "0";
- //
- // FJ24
- //
- this.FJ24.AutoSize = true;
- this.FJ24.Location = new System.Drawing.Point(310, 560);
- this.FJ24.Name = "FJ24";
- this.FJ24.Size = new System.Drawing.Size(11, 12);
- this.FJ24.TabIndex = 378;
- this.FJ24.Text = "0";
- //
- // FJ23
- //
- this.FJ23.AutoSize = true;
- this.FJ23.Location = new System.Drawing.Point(310, 520);
- this.FJ23.Name = "FJ23";
- this.FJ23.Size = new System.Drawing.Size(11, 12);
- this.FJ23.TabIndex = 377;
- this.FJ23.Text = "0";
- //
- // FJ22
- //
- this.FJ22.AutoSize = true;
- this.FJ22.Location = new System.Drawing.Point(310, 480);
- this.FJ22.Name = "FJ22";
- this.FJ22.Size = new System.Drawing.Size(11, 12);
- this.FJ22.TabIndex = 376;
- this.FJ22.Text = "0";
- //
- // FJ21
- //
- this.FJ21.AutoSize = true;
- this.FJ21.Location = new System.Drawing.Point(310, 440);
- this.FJ21.Name = "FJ21";
- this.FJ21.Size = new System.Drawing.Size(11, 12);
- this.FJ21.TabIndex = 375;
- this.FJ21.Text = "0";
- //
- // FJ18
- //
- this.FJ18.AutoSize = true;
- this.FJ18.Location = new System.Drawing.Point(100, 720);
- this.FJ18.Name = "FJ18";
- this.FJ18.Size = new System.Drawing.Size(11, 12);
- this.FJ18.TabIndex = 374;
- this.FJ18.Text = "0";
- //
- // FJ17
- //
- this.FJ17.AutoSize = true;
- this.FJ17.Location = new System.Drawing.Point(100, 680);
- this.FJ17.Name = "FJ17";
- this.FJ17.Size = new System.Drawing.Size(11, 12);
- this.FJ17.TabIndex = 373;
- this.FJ17.Text = "0";
- //
- // FJ16
- //
- this.FJ16.AutoSize = true;
- this.FJ16.Location = new System.Drawing.Point(100, 640);
- this.FJ16.Name = "FJ16";
- this.FJ16.Size = new System.Drawing.Size(11, 12);
- this.FJ16.TabIndex = 372;
- this.FJ16.Text = "0";
- //
- // FJ15
- //
- this.FJ15.AutoSize = true;
- this.FJ15.Location = new System.Drawing.Point(100, 600);
- this.FJ15.Name = "FJ15";
- this.FJ15.Size = new System.Drawing.Size(11, 12);
- this.FJ15.TabIndex = 371;
- this.FJ15.Text = "0";
- //
- // FJ14
- //
- this.FJ14.AutoSize = true;
- this.FJ14.Location = new System.Drawing.Point(100, 560);
- this.FJ14.Name = "FJ14";
- this.FJ14.Size = new System.Drawing.Size(11, 12);
- this.FJ14.TabIndex = 370;
- this.FJ14.Text = "0";
- //
- // FJ13
- //
- this.FJ13.AutoSize = true;
- this.FJ13.Location = new System.Drawing.Point(100, 520);
- this.FJ13.Name = "FJ13";
- this.FJ13.Size = new System.Drawing.Size(11, 12);
- this.FJ13.TabIndex = 369;
- this.FJ13.Text = "0";
- //
- // FJ12
- //
- this.FJ12.AutoSize = true;
- this.FJ12.Location = new System.Drawing.Point(100, 480);
- this.FJ12.Name = "FJ12";
- this.FJ12.Size = new System.Drawing.Size(11, 12);
- this.FJ12.TabIndex = 368;
- this.FJ12.Text = "0";
- //
- // FJ11
- //
- this.FJ11.AutoSize = true;
- this.FJ11.Location = new System.Drawing.Point(100, 440);
- this.FJ11.Name = "FJ11";
- this.FJ11.Size = new System.Drawing.Size(11, 12);
- this.FJ11.TabIndex = 367;
- this.FJ11.Text = "0";
- //
- // label81
- //
- this.label81.AutoSize = true;
- this.label81.Location = new System.Drawing.Point(200, 720);
- this.label81.Name = "label81";
- this.label81.Size = new System.Drawing.Size(53, 12);
- this.label81.TabIndex = 366;
- this.label81.Text = "风机转速";
- //
- // label80
- //
- this.label80.AutoSize = true;
- this.label80.Location = new System.Drawing.Point(200, 680);
- this.label80.Name = "label80";
- this.label80.Size = new System.Drawing.Size(53, 12);
- this.label80.TabIndex = 365;
- this.label80.Text = "电机电流";
- //
- // label79
- //
- this.label79.AutoSize = true;
- this.label79.Location = new System.Drawing.Point(200, 640);
- this.label79.Name = "label79";
- this.label79.Size = new System.Drawing.Size(89, 12);
- this.label79.TabIndex = 364;
- this.label79.Text = "固定端垂直振动";
- //
- // label78
- //
- this.label78.AutoSize = true;
- this.label78.Location = new System.Drawing.Point(200, 600);
- this.label78.Name = "label78";
- this.label78.Size = new System.Drawing.Size(89, 12);
- this.label78.TabIndex = 363;
- this.label78.Text = "固定端水平振动";
- //
- // label77
- //
- this.label77.AutoSize = true;
- this.label77.Location = new System.Drawing.Point(200, 560);
- this.label77.Name = "label77";
- this.label77.Size = new System.Drawing.Size(89, 12);
- this.label77.TabIndex = 362;
- this.label77.Text = "自由端垂直振动";
- //
- // label76
- //
- this.label76.AutoSize = true;
- this.label76.Location = new System.Drawing.Point(200, 520);
- this.label76.Name = "label76";
- this.label76.Size = new System.Drawing.Size(89, 12);
- this.label76.TabIndex = 361;
- this.label76.Text = "自由端水平振动";
- //
- // label75
- //
- this.label75.AutoSize = true;
- this.label75.Location = new System.Drawing.Point(200, 480);
- this.label75.Name = "label75";
- this.label75.Size = new System.Drawing.Size(77, 12);
- this.label75.TabIndex = 360;
- this.label75.Text = "液偶进油压力";
- //
- // label74
- //
- this.label74.AutoSize = true;
- this.label74.Location = new System.Drawing.Point(200, 440);
- this.label74.Name = "label74";
- this.label74.Size = new System.Drawing.Size(89, 12);
- this.label74.TabIndex = 359;
- this.label74.Text = "液偶润滑油压力";
- //
- // label73
- //
- this.label73.AutoSize = true;
- this.label73.Location = new System.Drawing.Point(3, 720);
- this.label73.Name = "label73";
- this.label73.Size = new System.Drawing.Size(77, 12);
- this.label73.TabIndex = 358;
- this.label73.Text = "外置油泵压力";
- //
- // label72
- //
- this.label72.AutoSize = true;
- this.label72.Location = new System.Drawing.Point(3, 680);
- this.label72.Name = "label72";
- this.label72.Size = new System.Drawing.Size(83, 12);
- this.label72.TabIndex = 357;
- this.label72.Text = "电机定子温度3";
- //
- // label71
- //
- this.label71.AutoSize = true;
- this.label71.Location = new System.Drawing.Point(3, 640);
- this.label71.Name = "label71";
- this.label71.Size = new System.Drawing.Size(83, 12);
- this.label71.TabIndex = 356;
- this.label71.Text = "电机定子温度2";
- //
- // label70
- //
- this.label70.AutoSize = true;
- this.label70.Location = new System.Drawing.Point(3, 600);
- this.label70.Name = "label70";
- this.label70.Size = new System.Drawing.Size(83, 12);
- this.label70.TabIndex = 355;
- this.label70.Text = "电机定子温度1";
- //
- // label69
- //
- this.label69.AutoSize = true;
- this.label69.Location = new System.Drawing.Point(3, 560);
- this.label69.Name = "label69";
- this.label69.Size = new System.Drawing.Size(89, 12);
- this.label69.TabIndex = 354;
- this.label69.Text = "风机后轴承轴温";
- //
- // label68
- //
- this.label68.AutoSize = true;
- this.label68.Location = new System.Drawing.Point(3, 520);
- this.label68.Name = "label68";
- this.label68.Size = new System.Drawing.Size(89, 12);
- this.label68.TabIndex = 353;
- this.label68.Text = "风机前轴承轴温";
- //
- // label67
- //
- this.label67.AutoSize = true;
- this.label67.Location = new System.Drawing.Point(3, 480);
- this.label67.Name = "label67";
- this.label67.Size = new System.Drawing.Size(89, 12);
- this.label67.TabIndex = 352;
- this.label67.Text = "电机后轴承轴温";
- //
- // label66
- //
- this.label66.AutoSize = true;
- this.label66.Location = new System.Drawing.Point(3, 440);
- this.label66.Name = "label66";
- this.label66.Size = new System.Drawing.Size(89, 12);
- this.label66.TabIndex = 351;
- this.label66.Text = "电机前轴承轴温";
- //
- // ECCC27
- //
- this.ECCC27.AutoSize = true;
- this.ECCC27.Location = new System.Drawing.Point(1104, 350);
- this.ECCC27.Name = "ECCC27";
- this.ECCC27.Size = new System.Drawing.Size(11, 12);
- this.ECCC27.TabIndex = 350;
- this.ECCC27.Text = "0";
- //
- // ECCC26
- //
- this.ECCC26.AutoSize = true;
- this.ECCC26.Location = new System.Drawing.Point(1104, 300);
- this.ECCC26.Name = "ECCC26";
- this.ECCC26.Size = new System.Drawing.Size(11, 12);
- this.ECCC26.TabIndex = 349;
- this.ECCC26.Text = "0";
- //
- // ECCC25
- //
- this.ECCC25.AutoSize = true;
- this.ECCC25.Location = new System.Drawing.Point(1104, 250);
- this.ECCC25.Name = "ECCC25";
- this.ECCC25.Size = new System.Drawing.Size(11, 12);
- this.ECCC25.TabIndex = 348;
- this.ECCC25.Text = "0";
- //
- // ECCC24
- //
- this.ECCC24.AutoSize = true;
- this.ECCC24.Location = new System.Drawing.Point(1104, 200);
- this.ECCC24.Name = "ECCC24";
- this.ECCC24.Size = new System.Drawing.Size(11, 12);
- this.ECCC24.TabIndex = 347;
- this.ECCC24.Text = "0";
- //
- // ECCC23
- //
- this.ECCC23.AutoSize = true;
- this.ECCC23.Location = new System.Drawing.Point(1104, 150);
- this.ECCC23.Name = "ECCC23";
- this.ECCC23.Size = new System.Drawing.Size(11, 12);
- this.ECCC23.TabIndex = 346;
- this.ECCC23.Text = "0";
- //
- // ECCC22
- //
- this.ECCC22.AutoSize = true;
- this.ECCC22.Location = new System.Drawing.Point(1104, 100);
- this.ECCC22.Name = "ECCC22";
- this.ECCC22.Size = new System.Drawing.Size(11, 12);
- this.ECCC22.TabIndex = 345;
- this.ECCC22.Text = "0";
- //
- // ECCC21
- //
- this.ECCC21.AutoSize = true;
- this.ECCC21.Location = new System.Drawing.Point(1104, 50);
- this.ECCC21.Name = "ECCC21";
- this.ECCC21.Size = new System.Drawing.Size(11, 12);
- this.ECCC21.TabIndex = 344;
- this.ECCC21.Text = "0";
- //
- // ECCC17
- //
- this.ECCC17.AutoSize = true;
- this.ECCC17.Location = new System.Drawing.Point(900, 350);
- this.ECCC17.Name = "ECCC17";
- this.ECCC17.Size = new System.Drawing.Size(11, 12);
- this.ECCC17.TabIndex = 343;
- this.ECCC17.Text = "0";
- //
- // ECCC16
- //
- this.ECCC16.AutoSize = true;
- this.ECCC16.Location = new System.Drawing.Point(900, 300);
- this.ECCC16.Name = "ECCC16";
- this.ECCC16.Size = new System.Drawing.Size(11, 12);
- this.ECCC16.TabIndex = 342;
- this.ECCC16.Text = "0";
- //
- // ECCC15
- //
- this.ECCC15.AutoSize = true;
- this.ECCC15.Location = new System.Drawing.Point(900, 250);
- this.ECCC15.Name = "ECCC15";
- this.ECCC15.Size = new System.Drawing.Size(11, 12);
- this.ECCC15.TabIndex = 341;
- this.ECCC15.Text = "0";
- //
- // ECCC14
- //
- this.ECCC14.AutoSize = true;
- this.ECCC14.Location = new System.Drawing.Point(900, 200);
- this.ECCC14.Name = "ECCC14";
- this.ECCC14.Size = new System.Drawing.Size(11, 12);
- this.ECCC14.TabIndex = 340;
- this.ECCC14.Text = "0";
- //
- // ECCC13
- //
- this.ECCC13.AutoSize = true;
- this.ECCC13.Location = new System.Drawing.Point(900, 150);
- this.ECCC13.Name = "ECCC13";
- this.ECCC13.Size = new System.Drawing.Size(11, 12);
- this.ECCC13.TabIndex = 339;
- this.ECCC13.Text = "0";
- //
- // ECCC12
- //
- this.ECCC12.AutoSize = true;
- this.ECCC12.Location = new System.Drawing.Point(900, 100);
- this.ECCC12.Name = "ECCC12";
- this.ECCC12.Size = new System.Drawing.Size(11, 12);
- this.ECCC12.TabIndex = 338;
- this.ECCC12.Text = "0";
- //
- // ECCC11
- //
- this.ECCC11.AutoSize = true;
- this.ECCC11.Location = new System.Drawing.Point(900, 50);
- this.ECCC11.Name = "ECCC11";
- this.ECCC11.Size = new System.Drawing.Size(11, 12);
- this.ECCC11.TabIndex = 337;
- this.ECCC11.Text = "0";
- //
- // label65
- //
- this.label65.AutoSize = true;
- this.label65.Location = new System.Drawing.Point(980, 350);
- this.label65.Name = "label65";
- this.label65.Size = new System.Drawing.Size(53, 12);
- this.label65.TabIndex = 336;
- this.label65.Text = "风机电流";
- //
- // label64
- //
- this.label64.AutoSize = true;
- this.label64.Location = new System.Drawing.Point(980, 300);
- this.label64.Name = "label64";
- this.label64.Size = new System.Drawing.Size(89, 12);
- this.label64.TabIndex = 335;
- this.label64.Text = "除尘器出口压力";
- //
- // label63
- //
- this.label63.AutoSize = true;
- this.label63.Location = new System.Drawing.Point(980, 250);
- this.label63.Name = "label63";
- this.label63.Size = new System.Drawing.Size(89, 12);
- this.label63.TabIndex = 334;
- this.label63.Text = "除尘器入口压力";
- //
- // label62
- //
- this.label62.AutoSize = true;
- this.label62.Location = new System.Drawing.Point(980, 200);
- this.label62.Name = "label62";
- this.label62.Size = new System.Drawing.Size(113, 12);
- this.label62.TabIndex = 333;
- this.label62.Text = "风机固定端垂直振动";
- //
- // label61
- //
- this.label61.AutoSize = true;
- this.label61.Location = new System.Drawing.Point(980, 150);
- this.label61.Name = "label61";
- this.label61.Size = new System.Drawing.Size(113, 12);
- this.label61.TabIndex = 332;
- this.label61.Text = "风机固定端水平振动";
- //
- // label60
- //
- this.label60.AutoSize = true;
- this.label60.Location = new System.Drawing.Point(980, 100);
- this.label60.Name = "label60";
- this.label60.Size = new System.Drawing.Size(113, 12);
- this.label60.TabIndex = 331;
- this.label60.Text = "风机自由端垂直振动";
- //
- // label59
- //
- this.label59.AutoSize = true;
- this.label59.Location = new System.Drawing.Point(980, 50);
- this.label59.Name = "label59";
- this.label59.Size = new System.Drawing.Size(113, 12);
- this.label59.TabIndex = 330;
- this.label59.Text = "风机自由端水平振动";
- //
- // label58
- //
- this.label58.AutoSize = true;
- this.label58.Location = new System.Drawing.Point(803, 350);
- this.label58.Name = "label58";
- this.label58.Size = new System.Drawing.Size(89, 12);
- this.label58.TabIndex = 329;
- this.label58.Text = "风机自由端温度";
- //
- // label57
- //
- this.label57.AutoSize = true;
- this.label57.Location = new System.Drawing.Point(803, 300);
- this.label57.Name = "label57";
- this.label57.Size = new System.Drawing.Size(89, 12);
- this.label57.TabIndex = 328;
- this.label57.Text = "风机固定端温度";
- //
- // label56
- //
- this.label56.AutoSize = true;
- this.label56.Location = new System.Drawing.Point(803, 250);
- this.label56.Name = "label56";
- this.label56.Size = new System.Drawing.Size(95, 12);
- this.label56.TabIndex = 327;
- this.label56.Text = "电机W相绕组温度";
- //
- // label55
- //
- this.label55.AutoSize = true;
- this.label55.Location = new System.Drawing.Point(803, 200);
- this.label55.Name = "label55";
- this.label55.Size = new System.Drawing.Size(95, 12);
- this.label55.TabIndex = 326;
- this.label55.Text = "电机V相绕组温度";
- //
- // label54
- //
- this.label54.AutoSize = true;
- this.label54.Location = new System.Drawing.Point(803, 150);
- this.label54.Name = "label54";
- this.label54.Size = new System.Drawing.Size(95, 12);
- this.label54.TabIndex = 325;
- this.label54.Text = "电机U相绕组温度";
- //
- // label53
- //
- this.label53.AutoSize = true;
- this.label53.Location = new System.Drawing.Point(803, 100);
- this.label53.Name = "label53";
- this.label53.Size = new System.Drawing.Size(89, 12);
- this.label53.TabIndex = 324;
- this.label53.Text = "电机自由端温度";
- //
- // label52
- //
- this.label52.AutoSize = true;
- this.label52.Location = new System.Drawing.Point(803, 50);
- this.label52.Name = "label52";
- this.label52.Size = new System.Drawing.Size(89, 12);
- this.label52.TabIndex = 323;
- this.label52.Text = "电机固定端温度";
- //
- // BOF42
- //
- this.BOF42.AutoSize = true;
- this.BOF42.Location = new System.Drawing.Point(703, 56);
- this.BOF42.Name = "BOF42";
- this.BOF42.Size = new System.Drawing.Size(11, 12);
- this.BOF42.TabIndex = 322;
- this.BOF42.Text = "0";
- //
- // BOF411
- //
- this.BOF411.AutoSize = true;
- this.BOF411.Location = new System.Drawing.Point(703, 380);
- this.BOF411.Name = "BOF411";
- this.BOF411.Size = new System.Drawing.Size(11, 12);
- this.BOF411.TabIndex = 321;
- this.BOF411.Text = "0";
- //
- // BOF410
- //
- this.BOF410.AutoSize = true;
- this.BOF410.Location = new System.Drawing.Point(703, 344);
- this.BOF410.Name = "BOF410";
- this.BOF410.Size = new System.Drawing.Size(11, 12);
- this.BOF410.TabIndex = 320;
- this.BOF410.Text = "0";
- //
- // BOF49
- //
- this.BOF49.AutoSize = true;
- this.BOF49.Location = new System.Drawing.Point(703, 308);
- this.BOF49.Name = "BOF49";
- this.BOF49.Size = new System.Drawing.Size(11, 12);
- this.BOF49.TabIndex = 319;
- this.BOF49.Text = "0";
- //
- // BOF48
- //
- this.BOF48.AutoSize = true;
- this.BOF48.Location = new System.Drawing.Point(703, 272);
- this.BOF48.Name = "BOF48";
- this.BOF48.Size = new System.Drawing.Size(11, 12);
- this.BOF48.TabIndex = 318;
- this.BOF48.Text = "0";
- //
- // BOF47
- //
- this.BOF47.AutoSize = true;
- this.BOF47.Location = new System.Drawing.Point(703, 236);
- this.BOF47.Name = "BOF47";
- this.BOF47.Size = new System.Drawing.Size(11, 12);
- this.BOF47.TabIndex = 317;
- this.BOF47.Text = "0";
- //
- // BOF46
- //
- this.BOF46.AutoSize = true;
- this.BOF46.Location = new System.Drawing.Point(703, 200);
- this.BOF46.Name = "BOF46";
- this.BOF46.Size = new System.Drawing.Size(11, 12);
- this.BOF46.TabIndex = 316;
- this.BOF46.Text = "0";
- //
- // BOF45
- //
- this.BOF45.AutoSize = true;
- this.BOF45.Location = new System.Drawing.Point(703, 164);
- this.BOF45.Name = "BOF45";
- this.BOF45.Size = new System.Drawing.Size(11, 12);
- this.BOF45.TabIndex = 315;
- this.BOF45.Text = "0";
- //
- // BOF44
- //
- this.BOF44.AutoSize = true;
- this.BOF44.Location = new System.Drawing.Point(703, 128);
- this.BOF44.Name = "BOF44";
- this.BOF44.Size = new System.Drawing.Size(11, 12);
- this.BOF44.TabIndex = 314;
- this.BOF44.Text = "0";
- //
- // BOF43
- //
- this.BOF43.AutoSize = true;
- this.BOF43.Location = new System.Drawing.Point(703, 92);
- this.BOF43.Name = "BOF43";
- this.BOF43.Size = new System.Drawing.Size(11, 12);
- this.BOF43.TabIndex = 313;
- this.BOF43.Text = "0";
- //
- // BOF41
- //
- this.BOF41.AutoSize = true;
- this.BOF41.Location = new System.Drawing.Point(703, 21);
- this.BOF41.Name = "BOF41";
- this.BOF41.Size = new System.Drawing.Size(11, 12);
- this.BOF41.TabIndex = 312;
- this.BOF41.Text = "0";
- //
- // BOF311
- //
- this.BOF311.AutoSize = true;
- this.BOF311.Location = new System.Drawing.Point(504, 380);
- this.BOF311.Name = "BOF311";
- this.BOF311.Size = new System.Drawing.Size(11, 12);
- this.BOF311.TabIndex = 311;
- this.BOF311.Text = "0";
- //
- // BOF310
- //
- this.BOF310.AutoSize = true;
- this.BOF310.Location = new System.Drawing.Point(504, 344);
- this.BOF310.Name = "BOF310";
- this.BOF310.Size = new System.Drawing.Size(11, 12);
- this.BOF310.TabIndex = 310;
- this.BOF310.Text = "0";
- //
- // BOF39
- //
- this.BOF39.AutoSize = true;
- this.BOF39.Location = new System.Drawing.Point(504, 308);
- this.BOF39.Name = "BOF39";
- this.BOF39.Size = new System.Drawing.Size(11, 12);
- this.BOF39.TabIndex = 309;
- this.BOF39.Text = "0";
- //
- // BOF38
- //
- this.BOF38.AutoSize = true;
- this.BOF38.Location = new System.Drawing.Point(504, 272);
- this.BOF38.Name = "BOF38";
- this.BOF38.Size = new System.Drawing.Size(11, 12);
- this.BOF38.TabIndex = 308;
- this.BOF38.Text = "0";
- //
- // BOF37
- //
- this.BOF37.AutoSize = true;
- this.BOF37.Location = new System.Drawing.Point(504, 236);
- this.BOF37.Name = "BOF37";
- this.BOF37.Size = new System.Drawing.Size(11, 12);
- this.BOF37.TabIndex = 307;
- this.BOF37.Text = "0";
- //
- // BOF36
- //
- this.BOF36.AutoSize = true;
- this.BOF36.Location = new System.Drawing.Point(504, 200);
- this.BOF36.Name = "BOF36";
- this.BOF36.Size = new System.Drawing.Size(11, 12);
- this.BOF36.TabIndex = 306;
- this.BOF36.Text = "0";
- //
- // BOF35
- //
- this.BOF35.AutoSize = true;
- this.BOF35.Location = new System.Drawing.Point(504, 164);
- this.BOF35.Name = "BOF35";
- this.BOF35.Size = new System.Drawing.Size(11, 12);
- this.BOF35.TabIndex = 305;
- this.BOF35.Text = "0";
- //
- // BOF34
- //
- this.BOF34.AutoSize = true;
- this.BOF34.Location = new System.Drawing.Point(504, 128);
- this.BOF34.Name = "BOF34";
- this.BOF34.Size = new System.Drawing.Size(11, 12);
- this.BOF34.TabIndex = 304;
- this.BOF34.Text = "0";
- //
- // BOF33
- //
- this.BOF33.AutoSize = true;
- this.BOF33.Location = new System.Drawing.Point(504, 92);
- this.BOF33.Name = "BOF33";
- this.BOF33.Size = new System.Drawing.Size(11, 12);
- this.BOF33.TabIndex = 303;
- this.BOF33.Text = "0";
- //
- // BOF32
- //
- this.BOF32.AutoSize = true;
- this.BOF32.Location = new System.Drawing.Point(504, 56);
- this.BOF32.Name = "BOF32";
- this.BOF32.Size = new System.Drawing.Size(11, 12);
- this.BOF32.TabIndex = 302;
- this.BOF32.Text = "0";
- //
- // BOF31
- //
- this.BOF31.AutoSize = true;
- this.BOF31.Location = new System.Drawing.Point(504, 21);
- this.BOF31.Name = "BOF31";
- this.BOF31.Size = new System.Drawing.Size(11, 12);
- this.BOF31.TabIndex = 301;
- this.BOF31.Text = "0";
- //
- // label51
- //
- this.label51.AutoSize = true;
- this.label51.Location = new System.Drawing.Point(600, 380);
- this.label51.Name = "label51";
- this.label51.Size = new System.Drawing.Size(89, 12);
- this.label51.TabIndex = 300;
- this.label51.Text = "4#倾动电机转距";
- //
- // label50
- //
- this.label50.AutoSize = true;
- this.label50.Location = new System.Drawing.Point(600, 344);
- this.label50.Name = "label50";
- this.label50.Size = new System.Drawing.Size(89, 12);
- this.label50.TabIndex = 299;
- this.label50.Text = "3#倾动电机转距";
- //
- // label49
- //
- this.label49.AutoSize = true;
- this.label49.Location = new System.Drawing.Point(600, 308);
- this.label49.Name = "label49";
- this.label49.Size = new System.Drawing.Size(89, 12);
- this.label49.TabIndex = 298;
- this.label49.Text = "2#倾动电机转距";
- //
- // label48
- //
- this.label48.AutoSize = true;
- this.label48.Location = new System.Drawing.Point(600, 272);
- this.label48.Name = "label48";
- this.label48.Size = new System.Drawing.Size(89, 12);
- this.label48.TabIndex = 297;
- this.label48.Text = "1#倾动电机转距";
- //
- // label47
- //
- this.label47.AutoSize = true;
- this.label47.Location = new System.Drawing.Point(600, 236);
- this.label47.Name = "label47";
- this.label47.Size = new System.Drawing.Size(53, 12);
- this.label47.TabIndex = 296;
- this.label47.Text = "B枪张力2";
- //
- // label46
- //
- this.label46.AutoSize = true;
- this.label46.Location = new System.Drawing.Point(600, 200);
- this.label46.Name = "label46";
- this.label46.Size = new System.Drawing.Size(53, 12);
- this.label46.TabIndex = 295;
- this.label46.Text = "A枪张力2";
- //
- // label45
- //
- this.label45.AutoSize = true;
- this.label45.Location = new System.Drawing.Point(600, 164);
- this.label45.Name = "label45";
- this.label45.Size = new System.Drawing.Size(83, 12);
- this.label45.TabIndex = 294;
- this.label45.Text = "B枪高度编码器";
- //
- // label44
- //
- this.label44.AutoSize = true;
- this.label44.Location = new System.Drawing.Point(600, 128);
- this.label44.Name = "label44";
- this.label44.Size = new System.Drawing.Size(77, 12);
- this.label44.TabIndex = 293;
- this.label44.Text = "倾动摇炉角度";
- //
- // label43
- //
- this.label43.AutoSize = true;
- this.label43.Location = new System.Drawing.Point(600, 92);
- this.label43.Name = "label43";
- this.label43.Size = new System.Drawing.Size(89, 12);
- this.label43.TabIndex = 292;
- this.label43.Text = "炉体冷却水流量";
- //
- // label42
- //
- this.label42.AutoSize = true;
- this.label42.Location = new System.Drawing.Point(600, 56);
- this.label42.Name = "label42";
- this.label42.Size = new System.Drawing.Size(83, 12);
- this.label42.TabIndex = 291;
- this.label42.Text = "氧枪出水流量B";
- //
- // label41
- //
- this.label41.AutoSize = true;
- this.label41.Location = new System.Drawing.Point(600, 21);
- this.label41.Name = "label41";
- this.label41.Size = new System.Drawing.Size(77, 12);
- this.label41.TabIndex = 290;
- this.label41.Text = "氧枪进水流量";
- //
- // label40
- //
- this.label40.AutoSize = true;
- this.label40.Location = new System.Drawing.Point(403, 56);
- this.label40.Name = "label40";
- this.label40.Size = new System.Drawing.Size(83, 12);
- this.label40.TabIndex = 289;
- this.label40.Text = "氧枪出水流量A";
- //
- // label39
- //
- this.label39.AutoSize = true;
- this.label39.Location = new System.Drawing.Point(403, 380);
- this.label39.Name = "label39";
- this.label39.Size = new System.Drawing.Size(89, 12);
- this.label39.TabIndex = 288;
- this.label39.Text = "3#倾动电机电流";
- //
- // label38
- //
- this.label38.AutoSize = true;
- this.label38.Location = new System.Drawing.Point(403, 344);
- this.label38.Name = "label38";
- this.label38.Size = new System.Drawing.Size(89, 12);
- this.label38.TabIndex = 287;
- this.label38.Text = "3#倾动电机电流";
- //
- // label37
- //
- this.label37.AutoSize = true;
- this.label37.Location = new System.Drawing.Point(403, 308);
- this.label37.Name = "label37";
- this.label37.Size = new System.Drawing.Size(89, 12);
- this.label37.TabIndex = 286;
- this.label37.Text = "2#倾动电机电流";
- //
- // label36
- //
- this.label36.AutoSize = true;
- this.label36.Location = new System.Drawing.Point(403, 272);
- this.label36.Name = "label36";
- this.label36.Size = new System.Drawing.Size(89, 12);
- this.label36.TabIndex = 285;
- this.label36.Text = "1#倾动电机电流";
- //
- // label35
- //
- this.label35.AutoSize = true;
- this.label35.Location = new System.Drawing.Point(403, 236);
- this.label35.Name = "label35";
- this.label35.Size = new System.Drawing.Size(53, 12);
- this.label35.TabIndex = 284;
- this.label35.Text = "B枪张力1";
- //
- // label34
- //
- this.label34.AutoSize = true;
- this.label34.Location = new System.Drawing.Point(403, 200);
- this.label34.Name = "label34";
- this.label34.Size = new System.Drawing.Size(53, 12);
- this.label34.TabIndex = 283;
- this.label34.Text = "A枪张力1";
- //
- // label33
- //
- this.label33.AutoSize = true;
- this.label33.Location = new System.Drawing.Point(403, 164);
- this.label33.Name = "label33";
- this.label33.Size = new System.Drawing.Size(83, 12);
- this.label33.TabIndex = 282;
- this.label33.Text = "A枪高度编码器";
- //
- // label32
- //
- this.label32.AutoSize = true;
- this.label32.Location = new System.Drawing.Point(403, 128);
- this.label32.Name = "label32";
- this.label32.Size = new System.Drawing.Size(53, 12);
- this.label32.TabIndex = 281;
- this.label32.Text = "废钢重量";
- //
- // label31
- //
- this.label31.AutoSize = true;
- this.label31.Location = new System.Drawing.Point(403, 92);
- this.label31.Name = "label31";
- this.label31.Size = new System.Drawing.Size(89, 12);
- this.label31.TabIndex = 280;
- this.label31.Text = "炉体冷却水压力";
- //
- // label30
- //
- this.label30.AutoSize = true;
- this.label30.Location = new System.Drawing.Point(403, 21);
- this.label30.Name = "label30";
- this.label30.Size = new System.Drawing.Size(65, 12);
- this.label30.TabIndex = 279;
- this.label30.Text = "氧枪水压力";
- //
- // BOF211
- //
- this.BOF211.AutoSize = true;
- this.BOF211.Location = new System.Drawing.Point(310, 380);
- this.BOF211.Name = "BOF211";
- this.BOF211.Size = new System.Drawing.Size(11, 12);
- this.BOF211.TabIndex = 278;
- this.BOF211.Text = "0";
- //
- // BOF210
- //
- this.BOF210.AutoSize = true;
- this.BOF210.Location = new System.Drawing.Point(310, 344);
- this.BOF210.Name = "BOF210";
- this.BOF210.Size = new System.Drawing.Size(11, 12);
- this.BOF210.TabIndex = 277;
- this.BOF210.Text = "0";
- //
- // BOF29
- //
- this.BOF29.AutoSize = true;
- this.BOF29.Location = new System.Drawing.Point(310, 308);
- this.BOF29.Name = "BOF29";
- this.BOF29.Size = new System.Drawing.Size(11, 12);
- this.BOF29.TabIndex = 276;
- this.BOF29.Text = "0";
- //
- // BOF28
- //
- this.BOF28.AutoSize = true;
- this.BOF28.Location = new System.Drawing.Point(310, 272);
- this.BOF28.Name = "BOF28";
- this.BOF28.Size = new System.Drawing.Size(11, 12);
- this.BOF28.TabIndex = 275;
- this.BOF28.Text = "0";
- //
- // BOF27
- //
- this.BOF27.AutoSize = true;
- this.BOF27.Location = new System.Drawing.Point(310, 236);
- this.BOF27.Name = "BOF27";
- this.BOF27.Size = new System.Drawing.Size(11, 12);
- this.BOF27.TabIndex = 274;
- this.BOF27.Text = "0";
- //
- // BOF26
- //
- this.BOF26.AutoSize = true;
- this.BOF26.Location = new System.Drawing.Point(310, 200);
- this.BOF26.Name = "BOF26";
- this.BOF26.Size = new System.Drawing.Size(11, 12);
- this.BOF26.TabIndex = 273;
- this.BOF26.Text = "0";
- //
- // BOF25
- //
- this.BOF25.AutoSize = true;
- this.BOF25.Location = new System.Drawing.Point(310, 164);
- this.BOF25.Name = "BOF25";
- this.BOF25.Size = new System.Drawing.Size(11, 12);
- this.BOF25.TabIndex = 272;
- this.BOF25.Text = "0";
- //
- // BOF24
- //
- this.BOF24.AutoSize = true;
- this.BOF24.Location = new System.Drawing.Point(310, 128);
- this.BOF24.Name = "BOF24";
- this.BOF24.Size = new System.Drawing.Size(11, 12);
- this.BOF24.TabIndex = 271;
- this.BOF24.Text = "0";
- //
- // BOF23
- //
- this.BOF23.AutoSize = true;
- this.BOF23.Location = new System.Drawing.Point(310, 92);
- this.BOF23.Name = "BOF23";
- this.BOF23.Size = new System.Drawing.Size(11, 12);
- this.BOF23.TabIndex = 270;
- this.BOF23.Text = "0";
- //
- // BOF22
- //
- this.BOF22.AutoSize = true;
- this.BOF22.Location = new System.Drawing.Point(310, 56);
- this.BOF22.Name = "BOF22";
- this.BOF22.Size = new System.Drawing.Size(11, 12);
- this.BOF22.TabIndex = 269;
- this.BOF22.Text = "0";
- //
- // BOF21
- //
- this.BOF21.AutoSize = true;
- this.BOF21.Location = new System.Drawing.Point(310, 21);
- this.BOF21.Name = "BOF21";
- this.BOF21.Size = new System.Drawing.Size(11, 12);
- this.BOF21.TabIndex = 268;
- this.BOF21.Text = "0";
- //
- // BOF111
- //
- this.BOF111.AutoSize = true;
- this.BOF111.Location = new System.Drawing.Point(100, 380);
- this.BOF111.Name = "BOF111";
- this.BOF111.Size = new System.Drawing.Size(11, 12);
- this.BOF111.TabIndex = 267;
- this.BOF111.Text = "0";
- //
- // BOF110
- //
- this.BOF110.AutoSize = true;
- this.BOF110.Location = new System.Drawing.Point(100, 344);
- this.BOF110.Name = "BOF110";
- this.BOF110.Size = new System.Drawing.Size(11, 12);
- this.BOF110.TabIndex = 266;
- this.BOF110.Text = "0";
- //
- // BOF19
- //
- this.BOF19.AutoSize = true;
- this.BOF19.Location = new System.Drawing.Point(100, 308);
- this.BOF19.Name = "BOF19";
- this.BOF19.Size = new System.Drawing.Size(11, 12);
- this.BOF19.TabIndex = 265;
- this.BOF19.Text = "0";
- //
- // BOF18
- //
- this.BOF18.AutoSize = true;
- this.BOF18.Location = new System.Drawing.Point(100, 272);
- this.BOF18.Name = "BOF18";
- this.BOF18.Size = new System.Drawing.Size(11, 12);
- this.BOF18.TabIndex = 264;
- this.BOF18.Text = "0";
- //
- // BOF17
- //
- this.BOF17.AutoSize = true;
- this.BOF17.Location = new System.Drawing.Point(100, 236);
- this.BOF17.Name = "BOF17";
- this.BOF17.Size = new System.Drawing.Size(11, 12);
- this.BOF17.TabIndex = 263;
- this.BOF17.Text = "0";
- //
- // BOF16
- //
- this.BOF16.AutoSize = true;
- this.BOF16.Location = new System.Drawing.Point(100, 200);
- this.BOF16.Name = "BOF16";
- this.BOF16.Size = new System.Drawing.Size(11, 12);
- this.BOF16.TabIndex = 262;
- this.BOF16.Text = "0";
- //
- // BOF15
- //
- this.BOF15.AutoSize = true;
- this.BOF15.Location = new System.Drawing.Point(100, 164);
- this.BOF15.Name = "BOF15";
- this.BOF15.Size = new System.Drawing.Size(11, 12);
- this.BOF15.TabIndex = 261;
- this.BOF15.Text = "0";
- //
- // BOF14
- //
- this.BOF14.AutoSize = true;
- this.BOF14.Location = new System.Drawing.Point(100, 128);
- this.BOF14.Name = "BOF14";
- this.BOF14.Size = new System.Drawing.Size(11, 12);
- this.BOF14.TabIndex = 260;
- this.BOF14.Text = "0";
- //
- // BOF13
- //
- this.BOF13.AutoSize = true;
- this.BOF13.Location = new System.Drawing.Point(100, 92);
- this.BOF13.Name = "BOF13";
- this.BOF13.Size = new System.Drawing.Size(11, 12);
- this.BOF13.TabIndex = 259;
- this.BOF13.Text = "0";
- //
- // BOF12
- //
- this.BOF12.AutoSize = true;
- this.BOF12.Location = new System.Drawing.Point(100, 56);
- this.BOF12.Name = "BOF12";
- this.BOF12.Size = new System.Drawing.Size(11, 12);
- this.BOF12.TabIndex = 258;
- this.BOF12.Text = "0";
- //
- // BOF11
- //
- this.BOF11.AutoSize = true;
- this.BOF11.Location = new System.Drawing.Point(100, 21);
- this.BOF11.Name = "BOF11";
- this.BOF11.Size = new System.Drawing.Size(11, 12);
- this.BOF11.TabIndex = 257;
- this.BOF11.Text = "0";
- //
- // label29
- //
- this.label29.AutoSize = true;
- this.label29.Location = new System.Drawing.Point(200, 380);
- this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(89, 12);
- this.label29.TabIndex = 256;
- this.label29.Text = "4#倾动电机转距";
- //
- // label28
- //
- this.label28.AutoSize = true;
- this.label28.Location = new System.Drawing.Point(200, 344);
- this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(89, 12);
- this.label28.TabIndex = 255;
- this.label28.Text = "3#倾动电机转距";
- //
- // label27
- //
- this.label27.AutoSize = true;
- this.label27.Location = new System.Drawing.Point(200, 308);
- this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(89, 12);
- this.label27.TabIndex = 254;
- this.label27.Text = "2#倾动电机转距";
- //
- // label26
- //
- this.label26.AutoSize = true;
- this.label26.Location = new System.Drawing.Point(200, 272);
- this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(89, 12);
- this.label26.TabIndex = 253;
- this.label26.Text = "1#倾动电机转距";
- //
- // label25
- //
- this.label25.AutoSize = true;
- this.label25.Location = new System.Drawing.Point(200, 236);
- this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(53, 12);
- this.label25.TabIndex = 252;
- this.label25.Text = "B枪张力2";
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.Location = new System.Drawing.Point(200, 200);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(53, 12);
- this.label24.TabIndex = 251;
- this.label24.Text = "A枪张力2";
- //
- // label23
- //
- this.label23.AutoSize = true;
- this.label23.Location = new System.Drawing.Point(200, 164);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(83, 12);
- this.label23.TabIndex = 250;
- this.label23.Text = "B枪高度编码器";
- //
- // label22
- //
- this.label22.AutoSize = true;
- this.label22.Location = new System.Drawing.Point(200, 128);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(77, 12);
- this.label22.TabIndex = 249;
- this.label22.Text = "倾动摇炉角度";
- //
- // label21
- //
- this.label21.AutoSize = true;
- this.label21.Location = new System.Drawing.Point(200, 92);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(89, 12);
- this.label21.TabIndex = 248;
- this.label21.Text = "炉体冷却水流量";
- //
- // label20
- //
- this.label20.AutoSize = true;
- this.label20.Location = new System.Drawing.Point(200, 56);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(83, 12);
- this.label20.TabIndex = 247;
- this.label20.Text = "氧枪出水流量B";
- //
- // label19
- //
- this.label19.AutoSize = true;
- this.label19.Location = new System.Drawing.Point(200, 21);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(77, 12);
- this.label19.TabIndex = 246;
- this.label19.Text = "氧枪进水流量";
- //
- // label18
- //
- this.label18.AutoSize = true;
- this.label18.Location = new System.Drawing.Point(3, 380);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(89, 12);
- this.label18.TabIndex = 245;
- this.label18.Text = "4#倾动电机电流";
- //
- // label17
- //
- this.label17.AutoSize = true;
- this.label17.Location = new System.Drawing.Point(3, 344);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(89, 12);
- this.label17.TabIndex = 244;
- this.label17.Text = "3#倾动电机电流";
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.Location = new System.Drawing.Point(3, 308);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(89, 12);
- this.label16.TabIndex = 243;
- this.label16.Text = "2#倾动电机电流";
- //
- // label15
- //
- this.label15.AutoSize = true;
- this.label15.Location = new System.Drawing.Point(3, 272);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(89, 12);
- this.label15.TabIndex = 242;
- this.label15.Text = "1#倾动电机电流";
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.Location = new System.Drawing.Point(3, 236);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(53, 12);
- this.label14.TabIndex = 241;
- this.label14.Text = "B枪张力1";
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.Location = new System.Drawing.Point(3, 200);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(53, 12);
- this.label13.TabIndex = 240;
- this.label13.Text = "A枪张力1";
- //
- // label12
- //
- this.label12.AutoSize = true;
- this.label12.Location = new System.Drawing.Point(3, 164);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(83, 12);
- this.label12.TabIndex = 239;
- this.label12.Text = "A枪高度编码器";
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.Location = new System.Drawing.Point(3, 128);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(53, 12);
- this.label11.TabIndex = 238;
- this.label11.Text = "废钢重量";
- this.label11.TextAlign = System.Drawing.ContentAlignment.TopRight;
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.Location = new System.Drawing.Point(3, 92);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(89, 12);
- this.label10.TabIndex = 237;
- this.label10.Text = "炉体冷却水压力";
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.Location = new System.Drawing.Point(3, 56);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(83, 12);
- this.label9.TabIndex = 236;
- this.label9.Text = "氧枪出水流量A";
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.Location = new System.Drawing.Point(3, 21);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(65, 12);
- this.label8.TabIndex = 235;
- this.label8.Text = "氧枪水压力";
- //
- // label7
- //
- this.label7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.label7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label7.ForeColor = System.Drawing.Color.Blue;
- this.label7.Location = new System.Drawing.Point(800, 400);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(500, 400);
- this.label7.TabIndex = 234;
- this.label7.Text = "一次除尘3#风机";
- //
- // label6
- //
- this.label6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.label6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label6.ForeColor = System.Drawing.Color.Blue;
- this.label6.Location = new System.Drawing.Point(400, 400);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(400, 400);
- this.label6.TabIndex = 233;
- this.label6.Text = "一次除尘2#风机";
- //
- // label5
- //
- this.label5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.label5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label5.ForeColor = System.Drawing.Color.Blue;
- this.label5.Location = new System.Drawing.Point(800, 0);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(500, 400);
- this.label5.TabIndex = 232;
- this.label5.Text = "二次除尘风机";
- //
- // label4
- //
- this.label4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.label4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label4.ForeColor = System.Drawing.Color.Blue;
- this.label4.Location = new System.Drawing.Point(0, 400);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(400, 400);
- this.label4.TabIndex = 231;
- this.label4.Text = "一次除尘1#风机";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label3.ForeColor = System.Drawing.Color.Blue;
- this.label3.Location = new System.Drawing.Point(890, 17);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(0, 16);
- this.label3.TabIndex = 230;
- //
- // label2
- //
- this.label2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.label2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label2.ForeColor = System.Drawing.Color.Blue;
- this.label2.Location = new System.Drawing.Point(400, 0);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(400, 400);
- this.label2.TabIndex = 228;
- this.label2.Text = "2#转炉";
- //
- // label1
- //
- this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.label1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label1.ForeColor = System.Drawing.Color.Blue;
- this.label1.Location = new System.Drawing.Point(0, 0);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(400, 400);
- this.label1.TabIndex = 227;
- this.label1.Text = "1#转炉";
- //
- // ultraDataSource1
- //
- this.ultraDataSource1.Band.Columns.AddRange(new object[] {
- ultraDataColumn1,
- ultraDataColumn2,
- ultraDataColumn3,
- ultraDataColumn4});
- //
- // FrmEquipmentMonitor
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1202, 735);
- this.Controls.Add(this.panel1);
- this.Name = "FrmEquipmentMonitor";
- this.Text = "设备运行参数监控";
- this.Load += new System.EventHandler(this.FrmEquipmentMonitor_Load);
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Panel panel1;
- public Infragistics.Win.UltraWinDataSource.UltraDataSource ultraDataSource1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Label label29;
- private System.Windows.Forms.Label label28;
- private System.Windows.Forms.Label label27;
- private System.Windows.Forms.Label label26;
- private System.Windows.Forms.Label label25;
- private System.Windows.Forms.Label label24;
- private System.Windows.Forms.Label label23;
- private System.Windows.Forms.Label label22;
- private System.Windows.Forms.Label label21;
- private System.Windows.Forms.Label label20;
- private System.Windows.Forms.Label label19;
- private System.Windows.Forms.Label label18;
- private System.Windows.Forms.Label label17;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.Label label15;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.Label label12;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.Label label10;
- private System.Windows.Forms.Label BOF211;
- private System.Windows.Forms.Label BOF210;
- private System.Windows.Forms.Label BOF29;
- private System.Windows.Forms.Label BOF28;
- private System.Windows.Forms.Label BOF27;
- private System.Windows.Forms.Label BOF26;
- private System.Windows.Forms.Label BOF25;
- private System.Windows.Forms.Label BOF24;
- private System.Windows.Forms.Label BOF23;
- private System.Windows.Forms.Label BOF22;
- private System.Windows.Forms.Label BOF21;
- private System.Windows.Forms.Label BOF111;
- private System.Windows.Forms.Label BOF110;
- private System.Windows.Forms.Label BOF19;
- private System.Windows.Forms.Label BOF18;
- private System.Windows.Forms.Label BOF17;
- private System.Windows.Forms.Label BOF16;
- private System.Windows.Forms.Label BOF15;
- private System.Windows.Forms.Label BOF14;
- private System.Windows.Forms.Label BOF13;
- private System.Windows.Forms.Label BOF12;
- private System.Windows.Forms.Label BOF11;
- private System.Windows.Forms.Label label41;
- private System.Windows.Forms.Label label40;
- private System.Windows.Forms.Label label39;
- private System.Windows.Forms.Label label38;
- private System.Windows.Forms.Label label37;
- private System.Windows.Forms.Label label36;
- private System.Windows.Forms.Label label35;
- private System.Windows.Forms.Label label34;
- private System.Windows.Forms.Label label33;
- private System.Windows.Forms.Label label32;
- private System.Windows.Forms.Label label31;
- private System.Windows.Forms.Label label30;
- private System.Windows.Forms.Label label51;
- private System.Windows.Forms.Label label50;
- private System.Windows.Forms.Label label49;
- private System.Windows.Forms.Label label48;
- private System.Windows.Forms.Label label47;
- private System.Windows.Forms.Label label46;
- private System.Windows.Forms.Label label45;
- private System.Windows.Forms.Label label44;
- private System.Windows.Forms.Label label43;
- private System.Windows.Forms.Label label42;
- private System.Windows.Forms.Label BOF42;
- private System.Windows.Forms.Label BOF411;
- private System.Windows.Forms.Label BOF410;
- private System.Windows.Forms.Label BOF49;
- private System.Windows.Forms.Label BOF48;
- private System.Windows.Forms.Label BOF47;
- private System.Windows.Forms.Label BOF46;
- private System.Windows.Forms.Label BOF45;
- private System.Windows.Forms.Label BOF44;
- private System.Windows.Forms.Label BOF43;
- private System.Windows.Forms.Label BOF41;
- private System.Windows.Forms.Label BOF311;
- private System.Windows.Forms.Label BOF310;
- private System.Windows.Forms.Label BOF39;
- private System.Windows.Forms.Label BOF38;
- private System.Windows.Forms.Label BOF37;
- private System.Windows.Forms.Label BOF36;
- private System.Windows.Forms.Label BOF35;
- private System.Windows.Forms.Label BOF34;
- private System.Windows.Forms.Label BOF33;
- private System.Windows.Forms.Label BOF32;
- private System.Windows.Forms.Label BOF31;
- private System.Windows.Forms.Label label65;
- private System.Windows.Forms.Label label64;
- private System.Windows.Forms.Label label63;
- private System.Windows.Forms.Label label62;
- private System.Windows.Forms.Label label61;
- private System.Windows.Forms.Label label60;
- private System.Windows.Forms.Label label59;
- private System.Windows.Forms.Label label58;
- private System.Windows.Forms.Label label57;
- private System.Windows.Forms.Label label56;
- private System.Windows.Forms.Label label55;
- private System.Windows.Forms.Label label54;
- private System.Windows.Forms.Label label53;
- private System.Windows.Forms.Label label52;
- private System.Windows.Forms.Label ECCC27;
- private System.Windows.Forms.Label ECCC26;
- private System.Windows.Forms.Label ECCC25;
- private System.Windows.Forms.Label ECCC24;
- private System.Windows.Forms.Label ECCC23;
- private System.Windows.Forms.Label ECCC22;
- private System.Windows.Forms.Label ECCC21;
- private System.Windows.Forms.Label ECCC17;
- private System.Windows.Forms.Label ECCC16;
- private System.Windows.Forms.Label ECCC15;
- private System.Windows.Forms.Label ECCC14;
- private System.Windows.Forms.Label ECCC13;
- private System.Windows.Forms.Label ECCC12;
- private System.Windows.Forms.Label ECCC11;
- private System.Windows.Forms.Label label73;
- private System.Windows.Forms.Label label72;
- private System.Windows.Forms.Label label71;
- private System.Windows.Forms.Label label70;
- private System.Windows.Forms.Label label69;
- private System.Windows.Forms.Label label68;
- private System.Windows.Forms.Label label67;
- private System.Windows.Forms.Label label66;
- private System.Windows.Forms.Label FJ28;
- private System.Windows.Forms.Label FJ27;
- private System.Windows.Forms.Label FJ26;
- private System.Windows.Forms.Label FJ25;
- private System.Windows.Forms.Label FJ24;
- private System.Windows.Forms.Label FJ23;
- private System.Windows.Forms.Label FJ22;
- private System.Windows.Forms.Label FJ21;
- private System.Windows.Forms.Label FJ18;
- private System.Windows.Forms.Label FJ17;
- private System.Windows.Forms.Label FJ16;
- private System.Windows.Forms.Label FJ15;
- private System.Windows.Forms.Label FJ14;
- private System.Windows.Forms.Label FJ13;
- private System.Windows.Forms.Label FJ12;
- private System.Windows.Forms.Label FJ11;
- private System.Windows.Forms.Label label81;
- private System.Windows.Forms.Label label80;
- private System.Windows.Forms.Label label79;
- private System.Windows.Forms.Label label78;
- private System.Windows.Forms.Label label77;
- private System.Windows.Forms.Label label76;
- private System.Windows.Forms.Label label75;
- private System.Windows.Forms.Label label74;
- private System.Windows.Forms.Label label89;
- private System.Windows.Forms.Label label88;
- private System.Windows.Forms.Label label87;
- private System.Windows.Forms.Label label86;
- private System.Windows.Forms.Label label85;
- private System.Windows.Forms.Label label84;
- private System.Windows.Forms.Label label83;
- private System.Windows.Forms.Label label82;
- private System.Windows.Forms.Label label97;
- private System.Windows.Forms.Label label96;
- private System.Windows.Forms.Label label95;
- private System.Windows.Forms.Label label94;
- private System.Windows.Forms.Label label93;
- private System.Windows.Forms.Label label92;
- private System.Windows.Forms.Label label91;
- private System.Windows.Forms.Label label90;
- private System.Windows.Forms.Label FJ58;
- private System.Windows.Forms.Label FJ57;
- private System.Windows.Forms.Label FJ56;
- private System.Windows.Forms.Label FJ55;
- private System.Windows.Forms.Label FJ54;
- private System.Windows.Forms.Label FJ53;
- private System.Windows.Forms.Label FJ52;
- private System.Windows.Forms.Label FJ51;
- private System.Windows.Forms.Label FJ48;
- private System.Windows.Forms.Label FJ47;
- private System.Windows.Forms.Label FJ46;
- private System.Windows.Forms.Label FJ45;
- private System.Windows.Forms.Label FJ44;
- private System.Windows.Forms.Label FJ43;
- private System.Windows.Forms.Label FJ42;
- private System.Windows.Forms.Label FJ41;
- private System.Windows.Forms.Label FJ38;
- private System.Windows.Forms.Label FJ37;
- private System.Windows.Forms.Label FJ36;
- private System.Windows.Forms.Label FJ35;
- private System.Windows.Forms.Label FJ34;
- private System.Windows.Forms.Label FJ33;
- private System.Windows.Forms.Label FJ32;
- private System.Windows.Forms.Label FJ31;
- private System.Windows.Forms.Label label113;
- private System.Windows.Forms.Label label112;
- private System.Windows.Forms.Label label111;
- private System.Windows.Forms.Label label110;
- private System.Windows.Forms.Label label109;
- private System.Windows.Forms.Label label108;
- private System.Windows.Forms.Label label107;
- private System.Windows.Forms.Label label106;
- private System.Windows.Forms.Label label105;
- private System.Windows.Forms.Label label104;
- private System.Windows.Forms.Label label103;
- private System.Windows.Forms.Label label102;
- private System.Windows.Forms.Label label101;
- private System.Windows.Forms.Label label100;
- private System.Windows.Forms.Label label99;
- private System.Windows.Forms.Label label98;
- private System.Windows.Forms.Label FJ68;
- private System.Windows.Forms.Label FJ67;
- private System.Windows.Forms.Label FJ66;
- private System.Windows.Forms.Label FJ65;
- private System.Windows.Forms.Label FJ64;
- private System.Windows.Forms.Label FJ63;
- private System.Windows.Forms.Label FJ62;
- private System.Windows.Forms.Label FJ61;
- }
- }
|