| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586 |
- namespace YangjieTester.IO监控
- {
- partial class IOForm3
- {
- /// <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.plcUiLight47 = new PlcUiControl.PlcUiLight();
- this.plcUiLight2 = new PlcUiControl.PlcUiLight();
- this.plcUiButton7 = new PlcUiControl.PlcUiButton();
- this.plcUiLight4 = new PlcUiControl.PlcUiLight();
- this.plcUiLight5 = new PlcUiControl.PlcUiLight();
- this.plcUiButton1 = new PlcUiControl.PlcUiButton();
- this.plcUiLight6 = new PlcUiControl.PlcUiLight();
- this.plcUiLight18 = new PlcUiControl.PlcUiLight();
- this.plcUiLight19 = new PlcUiControl.PlcUiLight();
- this.plcUiLight20 = new PlcUiControl.PlcUiLight();
- this.plcUiLight21 = new PlcUiControl.PlcUiLight();
- this.plcUiLight22 = new PlcUiControl.PlcUiLight();
- this.plcUiLight23 = new PlcUiControl.PlcUiLight();
- this.plcUiButton12 = new PlcUiControl.PlcUiButton();
- this.plcUiButton2 = new PlcUiControl.PlcUiButton();
- this.plcUiButton8 = new PlcUiControl.PlcUiButton();
- this.plcUiButton9 = new PlcUiControl.PlcUiButton();
- this.plcUiButton10 = new PlcUiControl.PlcUiButton();
- this.plcUiButton11 = new PlcUiControl.PlcUiButton();
- this.plcUiButton3 = new PlcUiControl.PlcUiButton();
- this.plcUiButton5 = new PlcUiControl.PlcUiButton();
- this.plcUiButton6 = new PlcUiControl.PlcUiButton();
- this.plcUiLight29 = new PlcUiControl.PlcUiLight();
- this.plcUiLight26 = new PlcUiControl.PlcUiLight();
- this.plcUiLight27 = new PlcUiControl.PlcUiLight();
- this.plcUiLight28 = new PlcUiControl.PlcUiLight();
- this.plcUiLight1 = new PlcUiControl.PlcUiLight();
- this.plcUiLight24 = new PlcUiControl.PlcUiLight();
- this.plcUiLight25 = new PlcUiControl.PlcUiLight();
- this.plcUiLight3 = new PlcUiControl.PlcUiLight();
- this.plcUiLight7 = new PlcUiControl.PlcUiLight();
- this.plcUiLight8 = new PlcUiControl.PlcUiLight();
- this.plcUiLight16 = new PlcUiControl.PlcUiLight();
- this.plcUiLight17 = new PlcUiControl.PlcUiLight();
- this.plcUiLight9 = new PlcUiControl.PlcUiLight();
- this.plcUiLight10 = new PlcUiControl.PlcUiLight();
- this.plcUiLight14 = new PlcUiControl.PlcUiLight();
- this.plcUiLight15 = new PlcUiControl.PlcUiLight();
- this.plcUiLight12 = new PlcUiControl.PlcUiLight();
- this.plcUiLight11 = new PlcUiControl.PlcUiLight();
- this.plcUiButton4 = new PlcUiControl.PlcUiButton();
- this.plcUiButton13 = new PlcUiControl.PlcUiButton();
- this.plcUiButton14 = new PlcUiControl.PlcUiButton();
- this.plcUiLight13 = new PlcUiControl.PlcUiLight();
- this.plcUiLight30 = new PlcUiControl.PlcUiLight();
- this.plcUiLight31 = new PlcUiControl.PlcUiLight();
- this.plcUiLight32 = new PlcUiControl.PlcUiLight();
- this.plcUiLight33 = new PlcUiControl.PlcUiLight();
- this.plcUiLight34 = new PlcUiControl.PlcUiLight();
- this.plcUiButton15 = new PlcUiControl.PlcUiButton();
- this.plcUiButton16 = new PlcUiControl.PlcUiButton();
- this.plcUiButton17 = new PlcUiControl.PlcUiButton();
- this.plcUiButton18 = new PlcUiControl.PlcUiButton();
- this.plcUiButton19 = new PlcUiControl.PlcUiButton();
- this.plcUiButton20 = new PlcUiControl.PlcUiButton();
- this.plcUiButton21 = new PlcUiControl.PlcUiButton();
- this.plcUiButton22 = new PlcUiControl.PlcUiButton();
- this.plcUiButton23 = new PlcUiControl.PlcUiButton();
- this.plcUiLight35 = new PlcUiControl.PlcUiLight();
- this.plcUiLight36 = new PlcUiControl.PlcUiLight();
- this.plcUiLight37 = new PlcUiControl.PlcUiLight();
- this.plcUiLight38 = new PlcUiControl.PlcUiLight();
- this.plcUiLight39 = new PlcUiControl.PlcUiLight();
- this.plcUiLight40 = new PlcUiControl.PlcUiLight();
- this.plcUiLight41 = new PlcUiControl.PlcUiLight();
- this.plcUiLight42 = new PlcUiControl.PlcUiLight();
- this.plcUiLight43 = new PlcUiControl.PlcUiLight();
- this.plcUiLight44 = new PlcUiControl.PlcUiLight();
- this.plcUiLight45 = new PlcUiControl.PlcUiLight();
- this.plcUiLight46 = new PlcUiControl.PlcUiLight();
- this.plcUiLight48 = new PlcUiControl.PlcUiLight();
- this.plcUiLight49 = new PlcUiControl.PlcUiLight();
- this.plcUiLight50 = new PlcUiControl.PlcUiLight();
- this.plcUiLight51 = new PlcUiControl.PlcUiLight();
- this.plcUiLight52 = new PlcUiControl.PlcUiLight();
- this.plcUiLight53 = new PlcUiControl.PlcUiLight();
- this.plcUiButton24 = new PlcUiControl.PlcUiButton();
- this.plcUiButton25 = new PlcUiControl.PlcUiButton();
- this.plcUiButton26 = new PlcUiControl.PlcUiButton();
- this.plcUiLight54 = new PlcUiControl.PlcUiLight();
- this.plcUiLight55 = new PlcUiControl.PlcUiLight();
- this.plcUiLight56 = new PlcUiControl.PlcUiLight();
- this.plcUiLight57 = new PlcUiControl.PlcUiLight();
- this.plcUiLight58 = new PlcUiControl.PlcUiLight();
- this.plcUiLight59 = new PlcUiControl.PlcUiLight();
- this.plcUiButton27 = new PlcUiControl.PlcUiButton();
- this.plcUiLight60 = new PlcUiControl.PlcUiLight();
- this.SuspendLayout();
- //
- // plcUiLight47
- //
- this.plcUiLight47.DisabilityTriggerNode = null;
- this.plcUiLight47.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight47.InvisibilityTriggerNode = null;
- this.plcUiLight47.Location = new System.Drawing.Point(1167, 899);
- this.plcUiLight47.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight47.MyTextAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.plcUiLight47.Name = "plcUiLight47";
- this.plcUiLight47.NodeName = "A27测试站5_清机反馈信号";
- this.plcUiLight47.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight47.OffText = null;
- this.plcUiLight47.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight47.OnText = null;
- this.plcUiLight47.Radius = 40;
- this.plcUiLight47.ReadNode = new Node("Application.InPut.A27测试站5_清机反馈信号", NodeType.BOOL, null);
- this.plcUiLight47.ShowText = true;
- this.plcUiLight47.Size = new System.Drawing.Size(200, 40);
- this.plcUiLight47.State = Sunny.UI.UILightState.Off;
- this.plcUiLight47.TabIndex = 269;
- this.plcUiLight47.Text = "A27测试站5_清机反馈信号";
- this.plcUiLight47.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.plcUiLight47.WriteNode = null;
- //
- // plcUiLight2
- //
- this.plcUiLight2.DisabilityTriggerNode = null;
- this.plcUiLight2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight2.InvisibilityTriggerNode = null;
- this.plcUiLight2.Location = new System.Drawing.Point(2, 2);
- this.plcUiLight2.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight2.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight2.Name = "plcUiLight2";
- this.plcUiLight2.NodeName = "A28转向站2_材料检测_低位";
- this.plcUiLight2.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight2.OffText = null;
- this.plcUiLight2.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight2.OnText = null;
- this.plcUiLight2.Radius = 40;
- this.plcUiLight2.ReadNode = new Node("Application.InPut.A28转向站2_材料检测_低位", NodeType.BOOL, null);
- this.plcUiLight2.ShowText = true;
- this.plcUiLight2.Size = new System.Drawing.Size(334, 40);
- this.plcUiLight2.State = Sunny.UI.UILightState.Off;
- this.plcUiLight2.TabIndex = 270;
- this.plcUiLight2.Text = "A28转向站2_材料检测_低位";
- this.plcUiLight2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight2.WriteNode = null;
- //
- // plcUiButton7
- //
- this.plcUiButton7.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton7.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton7.DisabilityTriggerNode = null;
- this.plcUiButton7.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton7.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton7.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton7.InvisibilityTriggerNode = null;
- this.plcUiButton7.IsReadWriteNodeSame = false;
- this.plcUiButton7.Location = new System.Drawing.Point(1448, 2);
- this.plcUiButton7.Maximum = 0D;
- this.plcUiButton7.Minimum = 0D;
- this.plcUiButton7.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton7.Name = "plcUiButton7";
- this.plcUiButton7.NeedUserEnsure = false;
- this.plcUiButton7.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton7.OffSymbol = 0;
- this.plcUiButton7.OffText = "A29_3D画像SOT";
- this.plcUiButton7.OnColor = System.Drawing.Color.Green;
- this.plcUiButton7.OnSymbol = 0;
- this.plcUiButton7.OnText = "A29_3D画像SOT";
- this.plcUiButton7.ReadNode = new Node("Application.OutPut.A29_3D画像SOT", NodeType.BOOL, null);
- this.plcUiButton7.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton7.Symbol = 0;
- this.plcUiButton7.TabIndex = 273;
- this.plcUiButton7.Text = "A29_3D画像SOT";
- this.plcUiButton7.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton7.WriteNode = null;
- //
- // plcUiLight4
- //
- this.plcUiLight4.DisabilityTriggerNode = null;
- this.plcUiLight4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight4.InvisibilityTriggerNode = null;
- this.plcUiLight4.Location = new System.Drawing.Point(2, 152);
- this.plcUiLight4.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight4.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight4.Name = "plcUiLight4";
- this.plcUiLight4.NodeName = "A29三维打标检测_OKorNG";
- this.plcUiLight4.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight4.OffText = null;
- this.plcUiLight4.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight4.OnText = null;
- this.plcUiLight4.Radius = 40;
- this.plcUiLight4.ReadNode = new Node("Application.InPut.A29三维打标检测_OKorNG", NodeType.BOOL, null);
- this.plcUiLight4.ShowText = true;
- this.plcUiLight4.Size = new System.Drawing.Size(334, 40);
- this.plcUiLight4.State = Sunny.UI.UILightState.Off;
- this.plcUiLight4.TabIndex = 272;
- this.plcUiLight4.Text = "A29三维打标检测_OKorNG";
- this.plcUiLight4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight4.WriteNode = null;
- //
- // plcUiLight5
- //
- this.plcUiLight5.DisabilityTriggerNode = null;
- this.plcUiLight5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight5.InvisibilityTriggerNode = null;
- this.plcUiLight5.Location = new System.Drawing.Point(2, 102);
- this.plcUiLight5.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight5.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight5.Name = "plcUiLight5";
- this.plcUiLight5.NodeName = "A29三维打标检测_画像EOT";
- this.plcUiLight5.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight5.OffText = null;
- this.plcUiLight5.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight5.OnText = null;
- this.plcUiLight5.Radius = 40;
- this.plcUiLight5.ReadNode = new Node("Application.InPut.A29三维打标检测_画像EOT", NodeType.BOOL, null);
- this.plcUiLight5.ShowText = true;
- this.plcUiLight5.Size = new System.Drawing.Size(334, 40);
- this.plcUiLight5.State = Sunny.UI.UILightState.Off;
- this.plcUiLight5.TabIndex = 271;
- this.plcUiLight5.Text = "A29三维打标检测_画像EOT";
- this.plcUiLight5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight5.WriteNode = null;
- //
- // plcUiButton1
- //
- this.plcUiButton1.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton1.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton1.DisabilityTriggerNode = null;
- this.plcUiButton1.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton1.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton1.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton1.InvisibilityTriggerNode = null;
- this.plcUiButton1.IsReadWriteNodeSame = false;
- this.plcUiButton1.Location = new System.Drawing.Point(1448, 52);
- this.plcUiButton1.Maximum = 0D;
- this.plcUiButton1.Minimum = 0D;
- this.plcUiButton1.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton1.Name = "plcUiButton1";
- this.plcUiButton1.NeedUserEnsure = false;
- this.plcUiButton1.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton1.OffSymbol = 0;
- this.plcUiButton1.OffText = "A30_3D检测NG吸嘴破真空电磁阀";
- this.plcUiButton1.OnColor = System.Drawing.Color.Green;
- this.plcUiButton1.OnSymbol = 0;
- this.plcUiButton1.OnText = "A30_3D检测NG吸嘴破真空电磁阀";
- this.plcUiButton1.ReadNode = new Node("Application.OutPut.A30_3D检测NG吸嘴破真空电磁阀", NodeType.BOOL, null);
- this.plcUiButton1.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton1.Symbol = 0;
- this.plcUiButton1.TabIndex = 280;
- this.plcUiButton1.Text = "A30_3D检测NG吸嘴破真空电磁阀";
- this.plcUiButton1.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton1.WriteNode = null;
- //
- // plcUiLight6
- //
- this.plcUiLight6.DisabilityTriggerNode = null;
- this.plcUiLight6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight6.InvisibilityTriggerNode = null;
- this.plcUiLight6.Location = new System.Drawing.Point(2, 502);
- this.plcUiLight6.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight6.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight6.Name = "plcUiLight6";
- this.plcUiLight6.NodeName = "A30三维检测NG四排料_材料检测_高位";
- this.plcUiLight6.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight6.OffText = null;
- this.plcUiLight6.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight6.OnText = null;
- this.plcUiLight6.Radius = 40;
- this.plcUiLight6.ReadNode = new Node("Application.InPut.A30三维检测NG四排料_材料检测_高位", NodeType.BOOL, null);
- this.plcUiLight6.ShowText = true;
- this.plcUiLight6.Size = new System.Drawing.Size(334, 40);
- this.plcUiLight6.State = Sunny.UI.UILightState.Off;
- this.plcUiLight6.TabIndex = 279;
- this.plcUiLight6.Text = "A30三维检测NG四排料_材料检测_高位";
- this.plcUiLight6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight6.WriteNode = null;
- //
- // plcUiLight18
- //
- this.plcUiLight18.DisabilityTriggerNode = null;
- this.plcUiLight18.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight18.InvisibilityTriggerNode = null;
- this.plcUiLight18.Location = new System.Drawing.Point(2, 452);
- this.plcUiLight18.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight18.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight18.Name = "plcUiLight18";
- this.plcUiLight18.NodeName = "A30三维检测NG四排料_料盒抽屉到位感应";
- this.plcUiLight18.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight18.OffText = null;
- this.plcUiLight18.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight18.OnText = null;
- this.plcUiLight18.Radius = 40;
- this.plcUiLight18.ReadNode = new Node("Application.InPut.A30三维检测NG四排料_料盒抽屉到位感应", NodeType.BOOL, null);
- this.plcUiLight18.ShowText = true;
- this.plcUiLight18.Size = new System.Drawing.Size(334, 40);
- this.plcUiLight18.State = Sunny.UI.UILightState.Off;
- this.plcUiLight18.TabIndex = 278;
- this.plcUiLight18.Text = "A30三维检测NG四排料_料盒抽屉到位感应";
- this.plcUiLight18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight18.WriteNode = null;
- //
- // plcUiLight19
- //
- this.plcUiLight19.DisabilityTriggerNode = null;
- this.plcUiLight19.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight19.InvisibilityTriggerNode = null;
- this.plcUiLight19.Location = new System.Drawing.Point(2, 402);
- this.plcUiLight19.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight19.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight19.Name = "plcUiLight19";
- this.plcUiLight19.NodeName = "A30三维检测NG四排料_料盒4缺失";
- this.plcUiLight19.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight19.OffText = null;
- this.plcUiLight19.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight19.OnText = null;
- this.plcUiLight19.Radius = 40;
- this.plcUiLight19.ReadNode = new Node("Application.InPut.A30三维检测NG四排料_料盒4缺失", NodeType.BOOL, null);
- this.plcUiLight19.ShowText = true;
- this.plcUiLight19.Size = new System.Drawing.Size(334, 40);
- this.plcUiLight19.State = Sunny.UI.UILightState.Off;
- this.plcUiLight19.TabIndex = 277;
- this.plcUiLight19.Text = "A30三维检测NG四排料_料盒4缺失";
- this.plcUiLight19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight19.WriteNode = null;
- //
- // plcUiLight20
- //
- this.plcUiLight20.DisabilityTriggerNode = null;
- this.plcUiLight20.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight20.InvisibilityTriggerNode = null;
- this.plcUiLight20.Location = new System.Drawing.Point(2, 352);
- this.plcUiLight20.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight20.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight20.Name = "plcUiLight20";
- this.plcUiLight20.NodeName = "A30三维检测NG四排料_料盒3缺失";
- this.plcUiLight20.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight20.OffText = null;
- this.plcUiLight20.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight20.OnText = null;
- this.plcUiLight20.Radius = 40;
- this.plcUiLight20.ReadNode = new Node("Application.InPut.A30三维检测NG四排料_料盒3缺失", NodeType.BOOL, null);
- this.plcUiLight20.ShowText = true;
- this.plcUiLight20.Size = new System.Drawing.Size(334, 40);
- this.plcUiLight20.State = Sunny.UI.UILightState.Off;
- this.plcUiLight20.TabIndex = 276;
- this.plcUiLight20.Text = "A30三维检测NG四排料_料盒3缺失";
- this.plcUiLight20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight20.WriteNode = null;
- //
- // plcUiLight21
- //
- this.plcUiLight21.DisabilityTriggerNode = null;
- this.plcUiLight21.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight21.InvisibilityTriggerNode = null;
- this.plcUiLight21.Location = new System.Drawing.Point(2, 302);
- this.plcUiLight21.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight21.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight21.Name = "plcUiLight21";
- this.plcUiLight21.NodeName = "A30三维检测NG四排料_料盒2缺失";
- this.plcUiLight21.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight21.OffText = null;
- this.plcUiLight21.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight21.OnText = null;
- this.plcUiLight21.Radius = 40;
- this.plcUiLight21.ReadNode = new Node("Application.InPut.A30三维检测NG四排料_料盒2缺失", NodeType.BOOL, null);
- this.plcUiLight21.ShowText = true;
- this.plcUiLight21.Size = new System.Drawing.Size(334, 40);
- this.plcUiLight21.State = Sunny.UI.UILightState.Off;
- this.plcUiLight21.TabIndex = 275;
- this.plcUiLight21.Text = "A30三维检测NG四排料_料盒2缺失";
- this.plcUiLight21.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight21.WriteNode = null;
- //
- // plcUiLight22
- //
- this.plcUiLight22.DisabilityTriggerNode = null;
- this.plcUiLight22.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight22.InvisibilityTriggerNode = null;
- this.plcUiLight22.Location = new System.Drawing.Point(2, 252);
- this.plcUiLight22.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight22.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight22.Name = "plcUiLight22";
- this.plcUiLight22.NodeName = "A30三维检测NG四排料_料盒1缺失";
- this.plcUiLight22.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight22.OffText = null;
- this.plcUiLight22.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight22.OnText = null;
- this.plcUiLight22.Radius = 40;
- this.plcUiLight22.ReadNode = new Node("Application.InPut.A30三维检测NG四排料_料盒1缺失", NodeType.BOOL, null);
- this.plcUiLight22.ShowText = true;
- this.plcUiLight22.Size = new System.Drawing.Size(334, 40);
- this.plcUiLight22.State = Sunny.UI.UILightState.Off;
- this.plcUiLight22.TabIndex = 274;
- this.plcUiLight22.Text = "A30三维检测NG四排料_料盒1缺失";
- this.plcUiLight22.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight22.WriteNode = null;
- //
- // plcUiLight23
- //
- this.plcUiLight23.DisabilityTriggerNode = null;
- this.plcUiLight23.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight23.InvisibilityTriggerNode = null;
- this.plcUiLight23.Location = new System.Drawing.Point(2, 602);
- this.plcUiLight23.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight23.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight23.Name = "plcUiLight23";
- this.plcUiLight23.NodeName = "A31封装1前定位_材料检测_低位";
- this.plcUiLight23.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight23.OffText = null;
- this.plcUiLight23.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight23.OnText = null;
- this.plcUiLight23.Radius = 40;
- this.plcUiLight23.ReadNode = new Node("Application.InPut.A31封装1前定位_材料检测_低位", NodeType.BOOL, null);
- this.plcUiLight23.ShowText = true;
- this.plcUiLight23.Size = new System.Drawing.Size(334, 40);
- this.plcUiLight23.State = Sunny.UI.UILightState.Off;
- this.plcUiLight23.TabIndex = 281;
- this.plcUiLight23.Text = "A31封装1前定位_材料检测_低位";
- this.plcUiLight23.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight23.WriteNode = null;
- //
- // plcUiButton12
- //
- this.plcUiButton12.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton12.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton12.DisabilityTriggerNode = null;
- this.plcUiButton12.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton12.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton12.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton12.InvisibilityTriggerNode = null;
- this.plcUiButton12.IsReadWriteNodeSame = false;
- this.plcUiButton12.Location = new System.Drawing.Point(1448, 652);
- this.plcUiButton12.Maximum = 0D;
- this.plcUiButton12.Minimum = 0D;
- this.plcUiButton12.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton12.Name = "plcUiButton12";
- this.plcUiButton12.NeedUserEnsure = false;
- this.plcUiButton12.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton12.OffSymbol = 0;
- this.plcUiButton12.OffText = "A33封装1温控供电";
- this.plcUiButton12.OnColor = System.Drawing.Color.Green;
- this.plcUiButton12.OnSymbol = 0;
- this.plcUiButton12.OnText = "A33封装1温控供电";
- this.plcUiButton12.ReadNode = new Node("Application.OutPut.A33封装1温控供电", NodeType.BOOL, null);
- this.plcUiButton12.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton12.Symbol = 0;
- this.plcUiButton12.TabIndex = 316;
- this.plcUiButton12.Text = "A33封装1温控供电";
- this.plcUiButton12.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton12.WriteNode = null;
- //
- // plcUiButton2
- //
- this.plcUiButton2.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton2.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton2.DisabilityTriggerNode = null;
- this.plcUiButton2.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton2.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton2.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton2.InvisibilityTriggerNode = null;
- this.plcUiButton2.IsReadWriteNodeSame = false;
- this.plcUiButton2.Location = new System.Drawing.Point(1448, 602);
- this.plcUiButton2.Maximum = 0D;
- this.plcUiButton2.Minimum = 0D;
- this.plcUiButton2.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton2.Name = "plcUiButton2";
- this.plcUiButton2.NeedUserEnsure = false;
- this.plcUiButton2.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton2.OffSymbol = 0;
- this.plcUiButton2.OffText = "A33封装1收料盘_步进";
- this.plcUiButton2.OnColor = System.Drawing.Color.Green;
- this.plcUiButton2.OnSymbol = 0;
- this.plcUiButton2.OnText = "A33封装1收料盘_步进";
- this.plcUiButton2.ReadNode = new Node("Application.OutPut.A33封装1收料盘_步进", NodeType.BOOL, null);
- this.plcUiButton2.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton2.Symbol = 0;
- this.plcUiButton2.TabIndex = 315;
- this.plcUiButton2.Text = "A33封装1收料盘_步进";
- this.plcUiButton2.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton2.WriteNode = null;
- //
- // plcUiButton8
- //
- this.plcUiButton8.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton8.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton8.DisabilityTriggerNode = null;
- this.plcUiButton8.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton8.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton8.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton8.InvisibilityTriggerNode = null;
- this.plcUiButton8.IsReadWriteNodeSame = false;
- this.plcUiButton8.Location = new System.Drawing.Point(1448, 552);
- this.plcUiButton8.Maximum = 0D;
- this.plcUiButton8.Minimum = 0D;
- this.plcUiButton8.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton8.Name = "plcUiButton8";
- this.plcUiButton8.NeedUserEnsure = false;
- this.plcUiButton8.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton8.OffSymbol = 0;
- this.plcUiButton8.OffText = "A33封装1感应电机";
- this.plcUiButton8.OnColor = System.Drawing.Color.Green;
- this.plcUiButton8.OnSymbol = 0;
- this.plcUiButton8.OnText = "A33封装1感应电机";
- this.plcUiButton8.ReadNode = new Node("Application.OutPut.A33封装1感应电机", NodeType.BOOL, null);
- this.plcUiButton8.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton8.Symbol = 0;
- this.plcUiButton8.TabIndex = 314;
- this.plcUiButton8.Text = "A33封装1感应电机";
- this.plcUiButton8.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton8.WriteNode = null;
- //
- // plcUiButton9
- //
- this.plcUiButton9.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton9.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton9.DisabilityTriggerNode = null;
- this.plcUiButton9.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton9.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton9.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton9.InvisibilityTriggerNode = null;
- this.plcUiButton9.IsReadWriteNodeSame = false;
- this.plcUiButton9.Location = new System.Drawing.Point(1448, 502);
- this.plcUiButton9.Maximum = 0D;
- this.plcUiButton9.Minimum = 0D;
- this.plcUiButton9.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton9.Name = "plcUiButton9";
- this.plcUiButton9.NeedUserEnsure = false;
- this.plcUiButton9.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton9.OffSymbol = 0;
- this.plcUiButton9.OffText = "A33_手动运行按钮灯";
- this.plcUiButton9.OnColor = System.Drawing.Color.Green;
- this.plcUiButton9.OnSymbol = 0;
- this.plcUiButton9.OnText = "A33_手动运行按钮灯";
- this.plcUiButton9.ReadNode = new Node("Application.OutPut.A33_手动运行按钮灯", NodeType.BOOL, null);
- this.plcUiButton9.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton9.Symbol = 0;
- this.plcUiButton9.TabIndex = 313;
- this.plcUiButton9.Text = "A33_手动运行按钮灯";
- this.plcUiButton9.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton9.WriteNode = null;
- //
- // plcUiButton10
- //
- this.plcUiButton10.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton10.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton10.DisabilityTriggerNode = null;
- this.plcUiButton10.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton10.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton10.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton10.InvisibilityTriggerNode = null;
- this.plcUiButton10.IsReadWriteNodeSame = false;
- this.plcUiButton10.Location = new System.Drawing.Point(1448, 452);
- this.plcUiButton10.Maximum = 0D;
- this.plcUiButton10.Minimum = 0D;
- this.plcUiButton10.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton10.Name = "plcUiButton10";
- this.plcUiButton10.NeedUserEnsure = false;
- this.plcUiButton10.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton10.OffSymbol = 0;
- this.plcUiButton10.OffText = "A33_手动穿带按钮灯";
- this.plcUiButton10.OnColor = System.Drawing.Color.Green;
- this.plcUiButton10.OnSymbol = 0;
- this.plcUiButton10.OnText = "A33_手动穿带按钮灯";
- this.plcUiButton10.ReadNode = new Node("Application.OutPut.A33_手动穿带按钮灯", NodeType.BOOL, null);
- this.plcUiButton10.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton10.Symbol = 0;
- this.plcUiButton10.TabIndex = 312;
- this.plcUiButton10.Text = "A33_手动穿带按钮灯";
- this.plcUiButton10.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton10.WriteNode = null;
- //
- // plcUiButton11
- //
- this.plcUiButton11.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton11.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton11.DisabilityTriggerNode = null;
- this.plcUiButton11.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton11.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton11.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton11.InvisibilityTriggerNode = null;
- this.plcUiButton11.IsReadWriteNodeSame = false;
- this.plcUiButton11.Location = new System.Drawing.Point(1448, 402);
- this.plcUiButton11.Maximum = 0D;
- this.plcUiButton11.Minimum = 0D;
- this.plcUiButton11.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton11.Name = "plcUiButton11";
- this.plcUiButton11.NeedUserEnsure = false;
- this.plcUiButton11.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton11.OffSymbol = 0;
- this.plcUiButton11.OffText = "A33_手动打带按钮灯";
- this.plcUiButton11.OnColor = System.Drawing.Color.Green;
- this.plcUiButton11.OnSymbol = 0;
- this.plcUiButton11.OnText = "A33_手动打带按钮灯";
- this.plcUiButton11.ReadNode = new Node("Application.OutPut.A33_手动打带按钮灯", NodeType.BOOL, null);
- this.plcUiButton11.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton11.Symbol = 0;
- this.plcUiButton11.TabIndex = 311;
- this.plcUiButton11.Text = "A33_手动打带按钮灯";
- this.plcUiButton11.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton11.WriteNode = null;
- //
- // plcUiButton3
- //
- this.plcUiButton3.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton3.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton3.DisabilityTriggerNode = null;
- this.plcUiButton3.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton3.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton3.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton3.InvisibilityTriggerNode = null;
- this.plcUiButton3.IsReadWriteNodeSame = false;
- this.plcUiButton3.Location = new System.Drawing.Point(1448, 352);
- this.plcUiButton3.Maximum = 0D;
- this.plcUiButton3.Minimum = 0D;
- this.plcUiButton3.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton3.Name = "plcUiButton3";
- this.plcUiButton3.NeedUserEnsure = false;
- this.plcUiButton3.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton3.OffSymbol = 0;
- this.plcUiButton3.OffText = "A33_手动切带按钮灯";
- this.plcUiButton3.OnColor = System.Drawing.Color.Green;
- this.plcUiButton3.OnSymbol = 0;
- this.plcUiButton3.OnText = "A33_手动切带按钮灯";
- this.plcUiButton3.ReadNode = new Node("Application.OutPut.A33_手动切带按钮灯", NodeType.BOOL, null);
- this.plcUiButton3.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton3.Symbol = 0;
- this.plcUiButton3.TabIndex = 310;
- this.plcUiButton3.Text = "A33_手动切带按钮灯";
- this.plcUiButton3.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton3.WriteNode = null;
- //
- // plcUiButton5
- //
- this.plcUiButton5.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton5.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton5.DisabilityTriggerNode = null;
- this.plcUiButton5.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton5.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton5.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton5.InvisibilityTriggerNode = null;
- this.plcUiButton5.IsReadWriteNodeSame = false;
- this.plcUiButton5.Location = new System.Drawing.Point(1448, 302);
- this.plcUiButton5.Maximum = 0D;
- this.plcUiButton5.Minimum = 0D;
- this.plcUiButton5.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton5.Name = "plcUiButton5";
- this.plcUiButton5.NeedUserEnsure = false;
- this.plcUiButton5.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton5.OffSymbol = 0;
- this.plcUiButton5.OffText = "A33_封装1吸嘴破真空电磁阀";
- this.plcUiButton5.OnColor = System.Drawing.Color.Green;
- this.plcUiButton5.OnSymbol = 0;
- this.plcUiButton5.OnText = "A33_封装1吸嘴破真空电磁阀";
- this.plcUiButton5.ReadNode = new Node("Application.OutPut.A33_封装1吸嘴破真空电磁阀", NodeType.BOOL, null);
- this.plcUiButton5.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton5.Symbol = 0;
- this.plcUiButton5.TabIndex = 309;
- this.plcUiButton5.Text = "A33_封装1吸嘴破真空电磁阀";
- this.plcUiButton5.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton5.WriteNode = null;
- //
- // plcUiButton6
- //
- this.plcUiButton6.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton6.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton6.DisabilityTriggerNode = null;
- this.plcUiButton6.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton6.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton6.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton6.InvisibilityTriggerNode = null;
- this.plcUiButton6.IsReadWriteNodeSame = false;
- this.plcUiButton6.Location = new System.Drawing.Point(1448, 252);
- this.plcUiButton6.Maximum = 0D;
- this.plcUiButton6.Minimum = 0D;
- this.plcUiButton6.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton6.Name = "plcUiButton6";
- this.plcUiButton6.NeedUserEnsure = false;
- this.plcUiButton6.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton6.OffSymbol = 0;
- this.plcUiButton6.OffText = "A33_封合气缸电磁阀";
- this.plcUiButton6.OnColor = System.Drawing.Color.Green;
- this.plcUiButton6.OnSymbol = 0;
- this.plcUiButton6.OnText = "A33_封合气缸电磁阀";
- this.plcUiButton6.ReadNode = new Node("Application.OutPut.A33_封合气缸电磁阀", NodeType.BOOL, null);
- this.plcUiButton6.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton6.Symbol = 0;
- this.plcUiButton6.TabIndex = 308;
- this.plcUiButton6.Text = "A33_封合气缸电磁阀";
- this.plcUiButton6.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton6.WriteNode = null;
- //
- // plcUiLight29
- //
- this.plcUiLight29.DisabilityTriggerNode = null;
- this.plcUiLight29.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight29.InvisibilityTriggerNode = null;
- this.plcUiLight29.Location = new System.Drawing.Point(621, 452);
- this.plcUiLight29.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight29.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight29.Name = "plcUiLight29";
- this.plcUiLight29.NodeName = "A33封装站1_载带有无感应器";
- this.plcUiLight29.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight29.OffText = null;
- this.plcUiLight29.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight29.OnText = null;
- this.plcUiLight29.Radius = 40;
- this.plcUiLight29.ReadNode = new Node("Application.InPut.A33封装站1_载带有无感应器", NodeType.BOOL, null);
- this.plcUiLight29.ShowText = true;
- this.plcUiLight29.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight29.State = Sunny.UI.UILightState.Off;
- this.plcUiLight29.TabIndex = 307;
- this.plcUiLight29.Text = "A33封装站1_载带有无感应器";
- this.plcUiLight29.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight29.WriteNode = null;
- //
- // plcUiLight26
- //
- this.plcUiLight26.DisabilityTriggerNode = null;
- this.plcUiLight26.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight26.InvisibilityTriggerNode = null;
- this.plcUiLight26.Location = new System.Drawing.Point(621, 402);
- this.plcUiLight26.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight26.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight26.Name = "plcUiLight26";
- this.plcUiLight26.NodeName = "A33封装站1_载带供带感应器";
- this.plcUiLight26.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight26.OffText = null;
- this.plcUiLight26.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight26.OnText = null;
- this.plcUiLight26.Radius = 40;
- this.plcUiLight26.ReadNode = new Node("Application.InPut.A33封装站1_载带供带感应器", NodeType.BOOL, null);
- this.plcUiLight26.ShowText = true;
- this.plcUiLight26.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight26.State = Sunny.UI.UILightState.Off;
- this.plcUiLight26.TabIndex = 306;
- this.plcUiLight26.Text = "A33封装站1_载带供带感应器";
- this.plcUiLight26.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight26.WriteNode = null;
- //
- // plcUiLight27
- //
- this.plcUiLight27.DisabilityTriggerNode = null;
- this.plcUiLight27.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight27.InvisibilityTriggerNode = null;
- this.plcUiLight27.Location = new System.Drawing.Point(621, 352);
- this.plcUiLight27.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight27.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight27.Name = "plcUiLight27";
- this.plcUiLight27.NodeName = "A33封装站1_走带伺服辅助原点";
- this.plcUiLight27.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight27.OffText = null;
- this.plcUiLight27.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight27.OnText = null;
- this.plcUiLight27.Radius = 40;
- this.plcUiLight27.ReadNode = new Node("Application.InPut.A33封装站1_走带伺服辅助原点", NodeType.BOOL, null);
- this.plcUiLight27.ShowText = true;
- this.plcUiLight27.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight27.State = Sunny.UI.UILightState.Off;
- this.plcUiLight27.TabIndex = 305;
- this.plcUiLight27.Text = "A33封装站1_走带伺服辅助原点";
- this.plcUiLight27.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight27.WriteNode = null;
- //
- // plcUiLight28
- //
- this.plcUiLight28.DisabilityTriggerNode = null;
- this.plcUiLight28.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight28.InvisibilityTriggerNode = null;
- this.plcUiLight28.Location = new System.Drawing.Point(621, 302);
- this.plcUiLight28.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight28.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight28.Name = "plcUiLight28";
- this.plcUiLight28.NodeName = "A33封装站1_装填叠料感应";
- this.plcUiLight28.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight28.OffText = null;
- this.plcUiLight28.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight28.OnText = null;
- this.plcUiLight28.Radius = 40;
- this.plcUiLight28.ReadNode = new Node("Application.InPut.A33封装站1_装填叠料感应", NodeType.BOOL, null);
- this.plcUiLight28.ShowText = true;
- this.plcUiLight28.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight28.State = Sunny.UI.UILightState.Off;
- this.plcUiLight28.TabIndex = 304;
- this.plcUiLight28.Text = "A33封装站1_装填叠料感应";
- this.plcUiLight28.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight28.WriteNode = null;
- //
- // plcUiLight1
- //
- this.plcUiLight1.DisabilityTriggerNode = null;
- this.plcUiLight1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight1.InvisibilityTriggerNode = null;
- this.plcUiLight1.Location = new System.Drawing.Point(621, 252);
- this.plcUiLight1.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight1.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight1.Name = "plcUiLight1";
- this.plcUiLight1.NodeName = "A33封装站1_空料检测感应";
- this.plcUiLight1.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight1.OffText = null;
- this.plcUiLight1.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight1.OnText = null;
- this.plcUiLight1.Radius = 40;
- this.plcUiLight1.ReadNode = new Node("Application.InPut.A33封装站1_空料检测感应", NodeType.BOOL, null);
- this.plcUiLight1.ShowText = true;
- this.plcUiLight1.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight1.State = Sunny.UI.UILightState.Off;
- this.plcUiLight1.TabIndex = 303;
- this.plcUiLight1.Text = "A33封装站1_空料检测感应";
- this.plcUiLight1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight1.WriteNode = null;
- //
- // plcUiLight24
- //
- this.plcUiLight24.DisabilityTriggerNode = null;
- this.plcUiLight24.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight24.InvisibilityTriggerNode = null;
- this.plcUiLight24.Location = new System.Drawing.Point(621, 202);
- this.plcUiLight24.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight24.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight24.Name = "plcUiLight24";
- this.plcUiLight24.NodeName = "A33封装站1_盖膜缺料感应";
- this.plcUiLight24.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight24.OffText = null;
- this.plcUiLight24.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight24.OnText = null;
- this.plcUiLight24.Radius = 40;
- this.plcUiLight24.ReadNode = new Node("Application.InPut.A33封装站1_盖膜缺料感应", NodeType.BOOL, null);
- this.plcUiLight24.ShowText = true;
- this.plcUiLight24.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight24.State = Sunny.UI.UILightState.Off;
- this.plcUiLight24.TabIndex = 302;
- this.plcUiLight24.Text = "A33封装站1_盖膜缺料感应";
- this.plcUiLight24.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight24.WriteNode = null;
- //
- // plcUiLight25
- //
- this.plcUiLight25.DisabilityTriggerNode = null;
- this.plcUiLight25.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight25.InvisibilityTriggerNode = null;
- this.plcUiLight25.Location = new System.Drawing.Point(621, 152);
- this.plcUiLight25.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight25.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight25.Name = "plcUiLight25";
- this.plcUiLight25.NodeName = "A33封装站1_盖膜摆轮感应";
- this.plcUiLight25.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight25.OffText = null;
- this.plcUiLight25.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight25.OnText = null;
- this.plcUiLight25.Radius = 40;
- this.plcUiLight25.ReadNode = new Node("Application.InPut.A33封装站1_盖膜摆轮感应", NodeType.BOOL, null);
- this.plcUiLight25.ShowText = true;
- this.plcUiLight25.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight25.State = Sunny.UI.UILightState.Off;
- this.plcUiLight25.TabIndex = 301;
- this.plcUiLight25.Text = "A33封装站1_盖膜摆轮感应";
- this.plcUiLight25.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight25.WriteNode = null;
- //
- // plcUiLight3
- //
- this.plcUiLight3.DisabilityTriggerNode = null;
- this.plcUiLight3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight3.InvisibilityTriggerNode = null;
- this.plcUiLight3.Location = new System.Drawing.Point(621, 102);
- this.plcUiLight3.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight3.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight3.Name = "plcUiLight3";
- this.plcUiLight3.NodeName = "A33封装站1_温控高温报警";
- this.plcUiLight3.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight3.OffText = null;
- this.plcUiLight3.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight3.OnText = null;
- this.plcUiLight3.Radius = 40;
- this.plcUiLight3.ReadNode = new Node("Application.InPut.A33封装站1_温控高温报警", NodeType.BOOL, null);
- this.plcUiLight3.ShowText = true;
- this.plcUiLight3.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight3.State = Sunny.UI.UILightState.Off;
- this.plcUiLight3.TabIndex = 300;
- this.plcUiLight3.Text = "A33封装站1_温控高温报警";
- this.plcUiLight3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight3.WriteNode = null;
- //
- // plcUiLight7
- //
- this.plcUiLight7.DisabilityTriggerNode = null;
- this.plcUiLight7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight7.InvisibilityTriggerNode = null;
- this.plcUiLight7.Location = new System.Drawing.Point(621, 52);
- this.plcUiLight7.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight7.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight7.Name = "plcUiLight7";
- this.plcUiLight7.NodeName = "A33封装站1_温控低温报警";
- this.plcUiLight7.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight7.OffText = null;
- this.plcUiLight7.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight7.OnText = null;
- this.plcUiLight7.Radius = 40;
- this.plcUiLight7.ReadNode = new Node("Application.InPut.A33封装站1_温控低温报警", NodeType.BOOL, null);
- this.plcUiLight7.ShowText = true;
- this.plcUiLight7.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight7.State = Sunny.UI.UILightState.Off;
- this.plcUiLight7.TabIndex = 299;
- this.plcUiLight7.Text = "A33封装站1_温控低温报警";
- this.plcUiLight7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight7.WriteNode = null;
- //
- // plcUiLight8
- //
- this.plcUiLight8.DisabilityTriggerNode = null;
- this.plcUiLight8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight8.InvisibilityTriggerNode = null;
- this.plcUiLight8.Location = new System.Drawing.Point(621, 2);
- this.plcUiLight8.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight8.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight8.Name = "plcUiLight8";
- this.plcUiLight8.NodeName = "A33封装站1_材料检测_高位";
- this.plcUiLight8.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight8.OffText = null;
- this.plcUiLight8.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight8.OnText = null;
- this.plcUiLight8.Radius = 40;
- this.plcUiLight8.ReadNode = new Node("Application.InPut.A33封装站1_材料检测_高位", NodeType.BOOL, null);
- this.plcUiLight8.ShowText = true;
- this.plcUiLight8.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight8.State = Sunny.UI.UILightState.Off;
- this.plcUiLight8.TabIndex = 298;
- this.plcUiLight8.Text = "A33封装站1_材料检测_高位";
- this.plcUiLight8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight8.WriteNode = null;
- //
- // plcUiLight16
- //
- this.plcUiLight16.DisabilityTriggerNode = null;
- this.plcUiLight16.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight16.InvisibilityTriggerNode = null;
- this.plcUiLight16.Location = new System.Drawing.Point(342, 602);
- this.plcUiLight16.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight16.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight16.Name = "plcUiLight16";
- this.plcUiLight16.NodeName = "A33封装站1_手动运行按钮";
- this.plcUiLight16.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight16.OffText = null;
- this.plcUiLight16.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight16.OnText = null;
- this.plcUiLight16.Radius = 40;
- this.plcUiLight16.ReadNode = new Node("Application.InPut.A33封装站1_手动运行按钮", NodeType.BOOL, null);
- this.plcUiLight16.ShowText = true;
- this.plcUiLight16.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight16.State = Sunny.UI.UILightState.Off;
- this.plcUiLight16.TabIndex = 297;
- this.plcUiLight16.Text = "A33封装站1_手动运行按钮";
- this.plcUiLight16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight16.WriteNode = null;
- //
- // plcUiLight17
- //
- this.plcUiLight17.DisabilityTriggerNode = null;
- this.plcUiLight17.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight17.InvisibilityTriggerNode = null;
- this.plcUiLight17.Location = new System.Drawing.Point(342, 552);
- this.plcUiLight17.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight17.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight17.Name = "plcUiLight17";
- this.plcUiLight17.NodeName = "A33封装站1_手动穿带按钮";
- this.plcUiLight17.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight17.OffText = null;
- this.plcUiLight17.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight17.OnText = null;
- this.plcUiLight17.Radius = 40;
- this.plcUiLight17.ReadNode = new Node("Application.InPut.A33封装站1_手动穿带按钮", NodeType.BOOL, null);
- this.plcUiLight17.ShowText = true;
- this.plcUiLight17.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight17.State = Sunny.UI.UILightState.Off;
- this.plcUiLight17.TabIndex = 296;
- this.plcUiLight17.Text = "A33封装站1_手动穿带按钮";
- this.plcUiLight17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight17.WriteNode = null;
- //
- // plcUiLight9
- //
- this.plcUiLight9.DisabilityTriggerNode = null;
- this.plcUiLight9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight9.InvisibilityTriggerNode = null;
- this.plcUiLight9.Location = new System.Drawing.Point(342, 502);
- this.plcUiLight9.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight9.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight9.Name = "plcUiLight9";
- this.plcUiLight9.NodeName = "A33封装站1_手动打带按钮";
- this.plcUiLight9.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight9.OffText = null;
- this.plcUiLight9.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight9.OnText = null;
- this.plcUiLight9.Radius = 40;
- this.plcUiLight9.ReadNode = new Node("Application.InPut.A33封装站1_手动打带按钮", NodeType.BOOL, null);
- this.plcUiLight9.ShowText = true;
- this.plcUiLight9.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight9.State = Sunny.UI.UILightState.Off;
- this.plcUiLight9.TabIndex = 295;
- this.plcUiLight9.Text = "A33封装站1_手动打带按钮";
- this.plcUiLight9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight9.WriteNode = null;
- //
- // plcUiLight10
- //
- this.plcUiLight10.DisabilityTriggerNode = null;
- this.plcUiLight10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight10.InvisibilityTriggerNode = null;
- this.plcUiLight10.Location = new System.Drawing.Point(342, 452);
- this.plcUiLight10.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight10.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight10.Name = "plcUiLight10";
- this.plcUiLight10.NodeName = "A33封装站1_手动切带按钮";
- this.plcUiLight10.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight10.OffText = null;
- this.plcUiLight10.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight10.OnText = null;
- this.plcUiLight10.Radius = 40;
- this.plcUiLight10.ReadNode = new Node("Application.InPut.A33封装站1_手动切带按钮", NodeType.BOOL, null);
- this.plcUiLight10.ShowText = true;
- this.plcUiLight10.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight10.State = Sunny.UI.UILightState.Off;
- this.plcUiLight10.TabIndex = 294;
- this.plcUiLight10.Text = "A33封装站1_手动切带按钮";
- this.plcUiLight10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight10.WriteNode = null;
- //
- // plcUiLight14
- //
- this.plcUiLight14.DisabilityTriggerNode = null;
- this.plcUiLight14.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight14.InvisibilityTriggerNode = null;
- this.plcUiLight14.Location = new System.Drawing.Point(342, 402);
- this.plcUiLight14.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight14.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight14.Name = "plcUiLight14";
- this.plcUiLight14.NodeName = "A33封装站1_封装整组到位检测";
- this.plcUiLight14.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight14.OffText = null;
- this.plcUiLight14.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight14.OnText = null;
- this.plcUiLight14.Radius = 40;
- this.plcUiLight14.ReadNode = new Node("Application.InPut.A33封装站1_封装整组到位检测", NodeType.BOOL, null);
- this.plcUiLight14.ShowText = true;
- this.plcUiLight14.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight14.State = Sunny.UI.UILightState.Off;
- this.plcUiLight14.TabIndex = 293;
- this.plcUiLight14.Text = "A33封装站1_封装整组到位检测";
- this.plcUiLight14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight14.WriteNode = null;
- //
- // plcUiLight15
- //
- this.plcUiLight15.DisabilityTriggerNode = null;
- this.plcUiLight15.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight15.InvisibilityTriggerNode = null;
- this.plcUiLight15.Location = new System.Drawing.Point(342, 352);
- this.plcUiLight15.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight15.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight15.Name = "plcUiLight15";
- this.plcUiLight15.NodeName = "A33封装站1_封合罩报警";
- this.plcUiLight15.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight15.OffText = null;
- this.plcUiLight15.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight15.OnText = null;
- this.plcUiLight15.Radius = 40;
- this.plcUiLight15.ReadNode = new Node("Application.InPut.A33封装站1_封合罩报警", NodeType.BOOL, null);
- this.plcUiLight15.ShowText = true;
- this.plcUiLight15.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight15.State = Sunny.UI.UILightState.Off;
- this.plcUiLight15.TabIndex = 292;
- this.plcUiLight15.Text = "A33封装站1_封合罩报警";
- this.plcUiLight15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight15.WriteNode = null;
- //
- // plcUiLight12
- //
- this.plcUiLight12.DisabilityTriggerNode = null;
- this.plcUiLight12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight12.InvisibilityTriggerNode = null;
- this.plcUiLight12.Location = new System.Drawing.Point(342, 302);
- this.plcUiLight12.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight12.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight12.Name = "plcUiLight12";
- this.plcUiLight12.NodeName = "A33封装站1_封合下压气缸工位";
- this.plcUiLight12.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight12.OffText = null;
- this.plcUiLight12.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight12.OnText = null;
- this.plcUiLight12.Radius = 40;
- this.plcUiLight12.ReadNode = new Node("Application.InPut.A33封装站1_封合下压气缸工位", NodeType.BOOL, null);
- this.plcUiLight12.ShowText = true;
- this.plcUiLight12.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight12.State = Sunny.UI.UILightState.Off;
- this.plcUiLight12.TabIndex = 291;
- this.plcUiLight12.Text = "A33封装站1_封合下压气缸工位";
- this.plcUiLight12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight12.WriteNode = null;
- //
- // plcUiLight11
- //
- this.plcUiLight11.DisabilityTriggerNode = null;
- this.plcUiLight11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight11.InvisibilityTriggerNode = null;
- this.plcUiLight11.Location = new System.Drawing.Point(342, 252);
- this.plcUiLight11.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight11.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight11.Name = "plcUiLight11";
- this.plcUiLight11.NodeName = "A33封装站1_压痕画像OKorNG";
- this.plcUiLight11.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight11.OffText = null;
- this.plcUiLight11.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight11.OnText = null;
- this.plcUiLight11.Radius = 40;
- this.plcUiLight11.ReadNode = new Node("Application.InPut.A33封装站1_压痕画像OKorNG", NodeType.BOOL, null);
- this.plcUiLight11.ShowText = true;
- this.plcUiLight11.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight11.State = Sunny.UI.UILightState.Off;
- this.plcUiLight11.TabIndex = 290;
- this.plcUiLight11.Text = "A33封装站1_压痕画像OKorNG";
- this.plcUiLight11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight11.WriteNode = null;
- //
- // plcUiButton4
- //
- this.plcUiButton4.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton4.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton4.DisabilityTriggerNode = null;
- this.plcUiButton4.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton4.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton4.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton4.InvisibilityTriggerNode = null;
- this.plcUiButton4.IsReadWriteNodeSame = false;
- this.plcUiButton4.Location = new System.Drawing.Point(1448, 202);
- this.plcUiButton4.Maximum = 0D;
- this.plcUiButton4.Minimum = 0D;
- this.plcUiButton4.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton4.Name = "plcUiButton4";
- this.plcUiButton4.NeedUserEnsure = false;
- this.plcUiButton4.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton4.OffSymbol = 0;
- this.plcUiButton4.OffText = "A33_压痕画像SOT";
- this.plcUiButton4.OnColor = System.Drawing.Color.Green;
- this.plcUiButton4.OnSymbol = 0;
- this.plcUiButton4.OnText = "A33_压痕画像SOT";
- this.plcUiButton4.ReadNode = new Node("Application.OutPut.A33_压痕画像SOT", NodeType.BOOL, null);
- this.plcUiButton4.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton4.Symbol = 0;
- this.plcUiButton4.TabIndex = 289;
- this.plcUiButton4.Text = "A33_压痕画像SOT";
- this.plcUiButton4.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton4.WriteNode = null;
- //
- // plcUiButton13
- //
- this.plcUiButton13.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton13.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton13.DisabilityTriggerNode = null;
- this.plcUiButton13.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton13.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton13.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton13.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton13.InvisibilityTriggerNode = null;
- this.plcUiButton13.IsReadWriteNodeSame = false;
- this.plcUiButton13.Location = new System.Drawing.Point(1448, 152);
- this.plcUiButton13.Maximum = 0D;
- this.plcUiButton13.Minimum = 0D;
- this.plcUiButton13.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton13.Name = "plcUiButton13";
- this.plcUiButton13.NeedUserEnsure = false;
- this.plcUiButton13.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton13.OffSymbol = 0;
- this.plcUiButton13.OffText = "A33_印字复检画像SOT";
- this.plcUiButton13.OnColor = System.Drawing.Color.Green;
- this.plcUiButton13.OnSymbol = 0;
- this.plcUiButton13.OnText = "A33_印字复检画像SOT";
- this.plcUiButton13.ReadNode = new Node("Application.OutPut.A33_印字复检画像SOT", NodeType.BOOL, null);
- this.plcUiButton13.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton13.Symbol = 0;
- this.plcUiButton13.TabIndex = 288;
- this.plcUiButton13.Text = "A33_印字复检画像SOT";
- this.plcUiButton13.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton13.WriteNode = null;
- //
- // plcUiButton14
- //
- this.plcUiButton14.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton14.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton14.DisabilityTriggerNode = null;
- this.plcUiButton14.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton14.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton14.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton14.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton14.InvisibilityTriggerNode = null;
- this.plcUiButton14.IsReadWriteNodeSame = false;
- this.plcUiButton14.Location = new System.Drawing.Point(1448, 102);
- this.plcUiButton14.Maximum = 0D;
- this.plcUiButton14.Minimum = 0D;
- this.plcUiButton14.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton14.Name = "plcUiButton14";
- this.plcUiButton14.NeedUserEnsure = false;
- this.plcUiButton14.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton14.OffSymbol = 0;
- this.plcUiButton14.OffText = "A33_切带气缸电磁阀";
- this.plcUiButton14.OnColor = System.Drawing.Color.Green;
- this.plcUiButton14.OnSymbol = 0;
- this.plcUiButton14.OnText = "A33_切带气缸电磁阀";
- this.plcUiButton14.ReadNode = new Node("Application.OutPut.A33_切带气缸电磁阀", NodeType.BOOL, null);
- this.plcUiButton14.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton14.Symbol = 0;
- this.plcUiButton14.TabIndex = 287;
- this.plcUiButton14.Text = "A33_切带气缸电磁阀";
- this.plcUiButton14.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton14.WriteNode = null;
- //
- // plcUiLight13
- //
- this.plcUiLight13.DisabilityTriggerNode = null;
- this.plcUiLight13.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight13.InvisibilityTriggerNode = null;
- this.plcUiLight13.Location = new System.Drawing.Point(342, 202);
- this.plcUiLight13.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight13.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight13.Name = "plcUiLight13";
- this.plcUiLight13.NodeName = "A33封装站1_压痕画像EOT";
- this.plcUiLight13.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight13.OffText = null;
- this.plcUiLight13.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight13.OnText = null;
- this.plcUiLight13.Radius = 40;
- this.plcUiLight13.ReadNode = new Node("Application.InPut.A33封装站1_压痕画像EOT", NodeType.BOOL, null);
- this.plcUiLight13.ShowText = true;
- this.plcUiLight13.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight13.State = Sunny.UI.UILightState.Off;
- this.plcUiLight13.TabIndex = 286;
- this.plcUiLight13.Text = "A33封装站1_压痕画像EOT";
- this.plcUiLight13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight13.WriteNode = null;
- //
- // plcUiLight30
- //
- this.plcUiLight30.DisabilityTriggerNode = null;
- this.plcUiLight30.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight30.InvisibilityTriggerNode = null;
- this.plcUiLight30.Location = new System.Drawing.Point(342, 152);
- this.plcUiLight30.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight30.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight30.Name = "plcUiLight30";
- this.plcUiLight30.NodeName = "A33封装站1_印字复检画像OKorNG";
- this.plcUiLight30.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight30.OffText = null;
- this.plcUiLight30.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight30.OnText = null;
- this.plcUiLight30.Radius = 40;
- this.plcUiLight30.ReadNode = new Node("Application.InPut.A33封装站1_印字复检画像OKorNG", NodeType.BOOL, null);
- this.plcUiLight30.ShowText = true;
- this.plcUiLight30.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight30.State = Sunny.UI.UILightState.Off;
- this.plcUiLight30.TabIndex = 285;
- this.plcUiLight30.Text = "A33封装站1_印字复检画像OKorNG";
- this.plcUiLight30.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight30.WriteNode = null;
- //
- // plcUiLight31
- //
- this.plcUiLight31.DisabilityTriggerNode = null;
- this.plcUiLight31.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight31.InvisibilityTriggerNode = null;
- this.plcUiLight31.Location = new System.Drawing.Point(342, 102);
- this.plcUiLight31.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight31.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight31.Name = "plcUiLight31";
- this.plcUiLight31.NodeName = "A33封装站1_印字复检画像EOT";
- this.plcUiLight31.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight31.OffText = null;
- this.plcUiLight31.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight31.OnText = null;
- this.plcUiLight31.Radius = 40;
- this.plcUiLight31.ReadNode = new Node("Application.InPut.A33封装站1_印字复检画像EOT", NodeType.BOOL, null);
- this.plcUiLight31.ShowText = true;
- this.plcUiLight31.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight31.State = Sunny.UI.UILightState.Off;
- this.plcUiLight31.TabIndex = 284;
- this.plcUiLight31.Text = "A33封装站1_印字复检画像EOT";
- this.plcUiLight31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight31.WriteNode = null;
- //
- // plcUiLight32
- //
- this.plcUiLight32.DisabilityTriggerNode = null;
- this.plcUiLight32.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight32.InvisibilityTriggerNode = null;
- this.plcUiLight32.Location = new System.Drawing.Point(342, 52);
- this.plcUiLight32.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight32.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight32.Name = "plcUiLight32";
- this.plcUiLight32.NodeName = "A33封装站1_切刀气缸原位";
- this.plcUiLight32.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight32.OffText = null;
- this.plcUiLight32.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight32.OnText = null;
- this.plcUiLight32.Radius = 40;
- this.plcUiLight32.ReadNode = new Node("Application.InPut.A33封装站1_切刀气缸原位", NodeType.BOOL, null);
- this.plcUiLight32.ShowText = true;
- this.plcUiLight32.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight32.State = Sunny.UI.UILightState.Off;
- this.plcUiLight32.TabIndex = 283;
- this.plcUiLight32.Text = "A33封装站1_切刀气缸原位";
- this.plcUiLight32.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight32.WriteNode = null;
- //
- // plcUiLight33
- //
- this.plcUiLight33.DisabilityTriggerNode = null;
- this.plcUiLight33.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight33.InvisibilityTriggerNode = null;
- this.plcUiLight33.Location = new System.Drawing.Point(342, 2);
- this.plcUiLight33.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight33.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight33.Name = "plcUiLight33";
- this.plcUiLight33.NodeName = "A33封装站1_切刀气缸伸出位";
- this.plcUiLight33.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight33.OffText = null;
- this.plcUiLight33.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight33.OnText = null;
- this.plcUiLight33.Radius = 40;
- this.plcUiLight33.ReadNode = new Node("Application.InPut.A33封装站1_切刀气缸伸出位", NodeType.BOOL, null);
- this.plcUiLight33.ShowText = true;
- this.plcUiLight33.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight33.State = Sunny.UI.UILightState.Off;
- this.plcUiLight33.TabIndex = 282;
- this.plcUiLight33.Text = "A33封装站1_切刀气缸伸出位";
- this.plcUiLight33.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight33.WriteNode = null;
- //
- // plcUiLight34
- //
- this.plcUiLight34.DisabilityTriggerNode = null;
- this.plcUiLight34.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight34.InvisibilityTriggerNode = null;
- this.plcUiLight34.Location = new System.Drawing.Point(621, 552);
- this.plcUiLight34.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight34.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight34.Name = "plcUiLight34";
- this.plcUiLight34.NodeName = "A35封装站2前定位_材料检测_低位";
- this.plcUiLight34.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight34.OffText = null;
- this.plcUiLight34.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight34.OnText = null;
- this.plcUiLight34.Radius = 40;
- this.plcUiLight34.ReadNode = new Node("Application.InPut.A35封装站2前定位_材料检测_低位", NodeType.BOOL, null);
- this.plcUiLight34.ShowText = true;
- this.plcUiLight34.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight34.State = Sunny.UI.UILightState.Off;
- this.plcUiLight34.TabIndex = 317;
- this.plcUiLight34.Text = "A35封装站2前定位_材料检测_低位";
- this.plcUiLight34.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight34.WriteNode = null;
- //
- // plcUiButton15
- //
- this.plcUiButton15.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton15.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton15.DisabilityTriggerNode = null;
- this.plcUiButton15.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton15.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton15.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton15.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton15.InvisibilityTriggerNode = null;
- this.plcUiButton15.IsReadWriteNodeSame = false;
- this.plcUiButton15.Location = new System.Drawing.Point(1683, 652);
- this.plcUiButton15.Maximum = 0D;
- this.plcUiButton15.Minimum = 0D;
- this.plcUiButton15.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton15.Name = "plcUiButton15";
- this.plcUiButton15.NeedUserEnsure = false;
- this.plcUiButton15.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton15.OffSymbol = 0;
- this.plcUiButton15.OffText = "A37封装2温控供电";
- this.plcUiButton15.OnColor = System.Drawing.Color.Green;
- this.plcUiButton15.OnSymbol = 0;
- this.plcUiButton15.OnText = "A37封装2温控供电";
- this.plcUiButton15.ReadNode = new Node("Application.OutPut.A37封装2温控供电", NodeType.BOOL, null);
- this.plcUiButton15.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton15.Symbol = 0;
- this.plcUiButton15.TabIndex = 352;
- this.plcUiButton15.Text = "A37封装2温控供电";
- this.plcUiButton15.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton15.WriteNode = null;
- //
- // plcUiButton16
- //
- this.plcUiButton16.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton16.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton16.DisabilityTriggerNode = null;
- this.plcUiButton16.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton16.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton16.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton16.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton16.InvisibilityTriggerNode = null;
- this.plcUiButton16.IsReadWriteNodeSame = false;
- this.plcUiButton16.Location = new System.Drawing.Point(1683, 602);
- this.plcUiButton16.Maximum = 0D;
- this.plcUiButton16.Minimum = 0D;
- this.plcUiButton16.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton16.Name = "plcUiButton16";
- this.plcUiButton16.NeedUserEnsure = false;
- this.plcUiButton16.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton16.OffSymbol = 0;
- this.plcUiButton16.OffText = "A37封装2收料盘_步进";
- this.plcUiButton16.OnColor = System.Drawing.Color.Green;
- this.plcUiButton16.OnSymbol = 0;
- this.plcUiButton16.OnText = "A37封装2收料盘_步进";
- this.plcUiButton16.ReadNode = new Node("Application.OutPut.A37封装2收料盘_步进", NodeType.BOOL, null);
- this.plcUiButton16.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton16.Symbol = 0;
- this.plcUiButton16.TabIndex = 351;
- this.plcUiButton16.Text = "A37封装2收料盘_步进";
- this.plcUiButton16.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton16.WriteNode = null;
- //
- // plcUiButton17
- //
- this.plcUiButton17.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton17.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton17.DisabilityTriggerNode = null;
- this.plcUiButton17.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton17.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton17.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton17.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton17.InvisibilityTriggerNode = null;
- this.plcUiButton17.IsReadWriteNodeSame = false;
- this.plcUiButton17.Location = new System.Drawing.Point(1683, 552);
- this.plcUiButton17.Maximum = 0D;
- this.plcUiButton17.Minimum = 0D;
- this.plcUiButton17.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton17.Name = "plcUiButton17";
- this.plcUiButton17.NeedUserEnsure = false;
- this.plcUiButton17.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton17.OffSymbol = 0;
- this.plcUiButton17.OffText = "A37封装2感应电机";
- this.plcUiButton17.OnColor = System.Drawing.Color.Green;
- this.plcUiButton17.OnSymbol = 0;
- this.plcUiButton17.OnText = "A37封装2感应电机";
- this.plcUiButton17.ReadNode = new Node("Application.OutPut.A37封装2感应电机", NodeType.BOOL, null);
- this.plcUiButton17.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton17.Symbol = 0;
- this.plcUiButton17.TabIndex = 350;
- this.plcUiButton17.Text = "A37封装2感应电机";
- this.plcUiButton17.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton17.WriteNode = null;
- //
- // plcUiButton18
- //
- this.plcUiButton18.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton18.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton18.DisabilityTriggerNode = null;
- this.plcUiButton18.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton18.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton18.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton18.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton18.InvisibilityTriggerNode = null;
- this.plcUiButton18.IsReadWriteNodeSame = false;
- this.plcUiButton18.Location = new System.Drawing.Point(1683, 502);
- this.plcUiButton18.Maximum = 0D;
- this.plcUiButton18.Minimum = 0D;
- this.plcUiButton18.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton18.Name = "plcUiButton18";
- this.plcUiButton18.NeedUserEnsure = false;
- this.plcUiButton18.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton18.OffSymbol = 0;
- this.plcUiButton18.OffText = "A37_手动运行按钮灯";
- this.plcUiButton18.OnColor = System.Drawing.Color.Green;
- this.plcUiButton18.OnSymbol = 0;
- this.plcUiButton18.OnText = "A37_手动运行按钮灯";
- this.plcUiButton18.ReadNode = new Node("Application.OutPut.A37_手动运行按钮灯", NodeType.BOOL, null);
- this.plcUiButton18.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton18.Symbol = 0;
- this.plcUiButton18.TabIndex = 349;
- this.plcUiButton18.Text = "A37_手动运行按钮灯";
- this.plcUiButton18.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton18.WriteNode = null;
- //
- // plcUiButton19
- //
- this.plcUiButton19.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton19.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton19.DisabilityTriggerNode = null;
- this.plcUiButton19.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton19.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton19.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton19.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton19.InvisibilityTriggerNode = null;
- this.plcUiButton19.IsReadWriteNodeSame = false;
- this.plcUiButton19.Location = new System.Drawing.Point(1683, 452);
- this.plcUiButton19.Maximum = 0D;
- this.plcUiButton19.Minimum = 0D;
- this.plcUiButton19.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton19.Name = "plcUiButton19";
- this.plcUiButton19.NeedUserEnsure = false;
- this.plcUiButton19.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton19.OffSymbol = 0;
- this.plcUiButton19.OffText = "A37_手动穿带按钮灯";
- this.plcUiButton19.OnColor = System.Drawing.Color.Green;
- this.plcUiButton19.OnSymbol = 0;
- this.plcUiButton19.OnText = "A37_手动穿带按钮灯";
- this.plcUiButton19.ReadNode = new Node("Application.OutPut.A37_手动穿带按钮灯", NodeType.BOOL, null);
- this.plcUiButton19.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton19.Symbol = 0;
- this.plcUiButton19.TabIndex = 348;
- this.plcUiButton19.Text = "A37_手动穿带按钮灯";
- this.plcUiButton19.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton19.WriteNode = null;
- //
- // plcUiButton20
- //
- this.plcUiButton20.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton20.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton20.DisabilityTriggerNode = null;
- this.plcUiButton20.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton20.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton20.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton20.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton20.InvisibilityTriggerNode = null;
- this.plcUiButton20.IsReadWriteNodeSame = false;
- this.plcUiButton20.Location = new System.Drawing.Point(1683, 402);
- this.plcUiButton20.Maximum = 0D;
- this.plcUiButton20.Minimum = 0D;
- this.plcUiButton20.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton20.Name = "plcUiButton20";
- this.plcUiButton20.NeedUserEnsure = false;
- this.plcUiButton20.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton20.OffSymbol = 0;
- this.plcUiButton20.OffText = "A37_手动打带按钮灯";
- this.plcUiButton20.OnColor = System.Drawing.Color.Green;
- this.plcUiButton20.OnSymbol = 0;
- this.plcUiButton20.OnText = "A37_手动打带按钮灯";
- this.plcUiButton20.ReadNode = new Node("Application.OutPut.A37_手动打带按钮灯", NodeType.BOOL, null);
- this.plcUiButton20.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton20.Symbol = 0;
- this.plcUiButton20.TabIndex = 347;
- this.plcUiButton20.Text = "A37_手动打带按钮灯";
- this.plcUiButton20.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton20.WriteNode = null;
- //
- // plcUiButton21
- //
- this.plcUiButton21.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton21.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton21.DisabilityTriggerNode = null;
- this.plcUiButton21.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton21.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton21.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton21.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton21.InvisibilityTriggerNode = null;
- this.plcUiButton21.IsReadWriteNodeSame = false;
- this.plcUiButton21.Location = new System.Drawing.Point(1683, 352);
- this.plcUiButton21.Maximum = 0D;
- this.plcUiButton21.Minimum = 0D;
- this.plcUiButton21.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton21.Name = "plcUiButton21";
- this.plcUiButton21.NeedUserEnsure = false;
- this.plcUiButton21.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton21.OffSymbol = 0;
- this.plcUiButton21.OffText = "A37_手动切带按钮灯";
- this.plcUiButton21.OnColor = System.Drawing.Color.Green;
- this.plcUiButton21.OnSymbol = 0;
- this.plcUiButton21.OnText = "A37_手动切带按钮灯";
- this.plcUiButton21.ReadNode = new Node("Application.OutPut.A37_手动切带按钮灯", NodeType.BOOL, null);
- this.plcUiButton21.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton21.Symbol = 0;
- this.plcUiButton21.TabIndex = 346;
- this.plcUiButton21.Text = "A37_手动切带按钮灯";
- this.plcUiButton21.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton21.WriteNode = null;
- //
- // plcUiButton22
- //
- this.plcUiButton22.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton22.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton22.DisabilityTriggerNode = null;
- this.plcUiButton22.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton22.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton22.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton22.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton22.InvisibilityTriggerNode = null;
- this.plcUiButton22.IsReadWriteNodeSame = false;
- this.plcUiButton22.Location = new System.Drawing.Point(1683, 302);
- this.plcUiButton22.Maximum = 0D;
- this.plcUiButton22.Minimum = 0D;
- this.plcUiButton22.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton22.Name = "plcUiButton22";
- this.plcUiButton22.NeedUserEnsure = false;
- this.plcUiButton22.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton22.OffSymbol = 0;
- this.plcUiButton22.OffText = "A37_封装2吸嘴破真空电磁阀";
- this.plcUiButton22.OnColor = System.Drawing.Color.Green;
- this.plcUiButton22.OnSymbol = 0;
- this.plcUiButton22.OnText = "A37_封装2吸嘴破真空电磁阀";
- this.plcUiButton22.ReadNode = new Node("Application.OutPut.A37_封装2吸嘴破真空电磁阀", NodeType.BOOL, null);
- this.plcUiButton22.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton22.Symbol = 0;
- this.plcUiButton22.TabIndex = 345;
- this.plcUiButton22.Text = "A37_封装2吸嘴破真空电磁阀";
- this.plcUiButton22.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton22.WriteNode = null;
- //
- // plcUiButton23
- //
- this.plcUiButton23.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton23.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton23.DisabilityTriggerNode = null;
- this.plcUiButton23.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton23.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton23.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton23.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton23.InvisibilityTriggerNode = null;
- this.plcUiButton23.IsReadWriteNodeSame = false;
- this.plcUiButton23.Location = new System.Drawing.Point(1683, 252);
- this.plcUiButton23.Maximum = 0D;
- this.plcUiButton23.Minimum = 0D;
- this.plcUiButton23.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton23.Name = "plcUiButton23";
- this.plcUiButton23.NeedUserEnsure = false;
- this.plcUiButton23.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton23.OffSymbol = 0;
- this.plcUiButton23.OffText = "A37_封合气缸电磁阀";
- this.plcUiButton23.OnColor = System.Drawing.Color.Green;
- this.plcUiButton23.OnSymbol = 0;
- this.plcUiButton23.OnText = "A37_封合气缸电磁阀";
- this.plcUiButton23.ReadNode = new Node("Application.OutPut.A37_封合气缸电磁阀", NodeType.BOOL, null);
- this.plcUiButton23.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton23.Symbol = 0;
- this.plcUiButton23.TabIndex = 344;
- this.plcUiButton23.Text = "A37_封合气缸电磁阀";
- this.plcUiButton23.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton23.WriteNode = null;
- //
- // plcUiLight35
- //
- this.plcUiLight35.DisabilityTriggerNode = null;
- this.plcUiLight35.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight35.InvisibilityTriggerNode = null;
- this.plcUiLight35.Location = new System.Drawing.Point(1172, 452);
- this.plcUiLight35.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight35.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight35.Name = "plcUiLight35";
- this.plcUiLight35.NodeName = "A37封装站2_载带有无感应器";
- this.plcUiLight35.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight35.OffText = null;
- this.plcUiLight35.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight35.OnText = null;
- this.plcUiLight35.Radius = 40;
- this.plcUiLight35.ReadNode = new Node("Application.InPut.A37封装站2_载带有无感应器", NodeType.BOOL, null);
- this.plcUiLight35.ShowText = true;
- this.plcUiLight35.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight35.State = Sunny.UI.UILightState.Off;
- this.plcUiLight35.TabIndex = 343;
- this.plcUiLight35.Text = "A37封装站2_载带有无感应器";
- this.plcUiLight35.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight35.WriteNode = null;
- //
- // plcUiLight36
- //
- this.plcUiLight36.DisabilityTriggerNode = null;
- this.plcUiLight36.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight36.InvisibilityTriggerNode = null;
- this.plcUiLight36.Location = new System.Drawing.Point(1172, 402);
- this.plcUiLight36.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight36.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight36.Name = "plcUiLight36";
- this.plcUiLight36.NodeName = "A37封装站2_载带供带感应器";
- this.plcUiLight36.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight36.OffText = null;
- this.plcUiLight36.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight36.OnText = null;
- this.plcUiLight36.Radius = 40;
- this.plcUiLight36.ReadNode = new Node("Application.InPut.A37封装站2_载带供带感应器", NodeType.BOOL, null);
- this.plcUiLight36.ShowText = true;
- this.plcUiLight36.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight36.State = Sunny.UI.UILightState.Off;
- this.plcUiLight36.TabIndex = 342;
- this.plcUiLight36.Text = "A37封装站2_载带供带感应器";
- this.plcUiLight36.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight36.WriteNode = null;
- //
- // plcUiLight37
- //
- this.plcUiLight37.DisabilityTriggerNode = null;
- this.plcUiLight37.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight37.InvisibilityTriggerNode = null;
- this.plcUiLight37.Location = new System.Drawing.Point(1172, 352);
- this.plcUiLight37.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight37.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight37.Name = "plcUiLight37";
- this.plcUiLight37.NodeName = "A37封装站2_走带伺服辅助原点";
- this.plcUiLight37.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight37.OffText = null;
- this.plcUiLight37.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight37.OnText = null;
- this.plcUiLight37.Radius = 40;
- this.plcUiLight37.ReadNode = new Node("Application.InPut.A37封装站2_走带伺服辅助原点", NodeType.BOOL, null);
- this.plcUiLight37.ShowText = true;
- this.plcUiLight37.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight37.State = Sunny.UI.UILightState.Off;
- this.plcUiLight37.TabIndex = 341;
- this.plcUiLight37.Text = "A37封装站2_走带伺服辅助原点";
- this.plcUiLight37.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight37.WriteNode = null;
- //
- // plcUiLight38
- //
- this.plcUiLight38.DisabilityTriggerNode = null;
- this.plcUiLight38.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight38.InvisibilityTriggerNode = null;
- this.plcUiLight38.Location = new System.Drawing.Point(1172, 302);
- this.plcUiLight38.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight38.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight38.Name = "plcUiLight38";
- this.plcUiLight38.NodeName = "A37封装站2_装填叠料感应";
- this.plcUiLight38.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight38.OffText = null;
- this.plcUiLight38.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight38.OnText = null;
- this.plcUiLight38.Radius = 40;
- this.plcUiLight38.ReadNode = new Node("Application.InPut.A37封装站2_装填叠料感应", NodeType.BOOL, null);
- this.plcUiLight38.ShowText = true;
- this.plcUiLight38.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight38.State = Sunny.UI.UILightState.Off;
- this.plcUiLight38.TabIndex = 340;
- this.plcUiLight38.Text = "A37封装站2_装填叠料感应";
- this.plcUiLight38.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight38.WriteNode = null;
- //
- // plcUiLight39
- //
- this.plcUiLight39.DisabilityTriggerNode = null;
- this.plcUiLight39.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight39.InvisibilityTriggerNode = null;
- this.plcUiLight39.Location = new System.Drawing.Point(1172, 252);
- this.plcUiLight39.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight39.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight39.Name = "plcUiLight39";
- this.plcUiLight39.NodeName = "A37封装站2_空料检测感应";
- this.plcUiLight39.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight39.OffText = null;
- this.plcUiLight39.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight39.OnText = null;
- this.plcUiLight39.Radius = 40;
- this.plcUiLight39.ReadNode = new Node("Application.InPut.A37封装站2_空料检测感应", NodeType.BOOL, null);
- this.plcUiLight39.ShowText = true;
- this.plcUiLight39.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight39.State = Sunny.UI.UILightState.Off;
- this.plcUiLight39.TabIndex = 339;
- this.plcUiLight39.Text = "A37封装站2_空料检测感应";
- this.plcUiLight39.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight39.WriteNode = null;
- //
- // plcUiLight40
- //
- this.plcUiLight40.DisabilityTriggerNode = null;
- this.plcUiLight40.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight40.InvisibilityTriggerNode = null;
- this.plcUiLight40.Location = new System.Drawing.Point(1172, 202);
- this.plcUiLight40.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight40.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight40.Name = "plcUiLight40";
- this.plcUiLight40.NodeName = "A37封装站2_盖膜缺料感应";
- this.plcUiLight40.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight40.OffText = null;
- this.plcUiLight40.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight40.OnText = null;
- this.plcUiLight40.Radius = 40;
- this.plcUiLight40.ReadNode = new Node("Application.InPut.A37封装站2_盖膜缺料感应", NodeType.BOOL, null);
- this.plcUiLight40.ShowText = true;
- this.plcUiLight40.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight40.State = Sunny.UI.UILightState.Off;
- this.plcUiLight40.TabIndex = 338;
- this.plcUiLight40.Text = "A37封装站2_盖膜缺料感应";
- this.plcUiLight40.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight40.WriteNode = null;
- //
- // plcUiLight41
- //
- this.plcUiLight41.DisabilityTriggerNode = null;
- this.plcUiLight41.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight41.InvisibilityTriggerNode = null;
- this.plcUiLight41.Location = new System.Drawing.Point(1172, 152);
- this.plcUiLight41.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight41.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight41.Name = "plcUiLight41";
- this.plcUiLight41.NodeName = "A37封装站2_盖膜摆轮感应";
- this.plcUiLight41.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight41.OffText = null;
- this.plcUiLight41.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight41.OnText = null;
- this.plcUiLight41.Radius = 40;
- this.plcUiLight41.ReadNode = new Node("Application.InPut.A37封装站2_盖膜摆轮感应", NodeType.BOOL, null);
- this.plcUiLight41.ShowText = true;
- this.plcUiLight41.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight41.State = Sunny.UI.UILightState.Off;
- this.plcUiLight41.TabIndex = 337;
- this.plcUiLight41.Text = "A37封装站2_盖膜摆轮感应";
- this.plcUiLight41.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight41.WriteNode = null;
- //
- // plcUiLight42
- //
- this.plcUiLight42.DisabilityTriggerNode = null;
- this.plcUiLight42.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight42.InvisibilityTriggerNode = null;
- this.plcUiLight42.Location = new System.Drawing.Point(1172, 102);
- this.plcUiLight42.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight42.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight42.Name = "plcUiLight42";
- this.plcUiLight42.NodeName = "A37封装站2_温控高温报警";
- this.plcUiLight42.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight42.OffText = null;
- this.plcUiLight42.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight42.OnText = null;
- this.plcUiLight42.Radius = 40;
- this.plcUiLight42.ReadNode = new Node("Application.InPut.A37封装站2_温控高温报警", NodeType.BOOL, null);
- this.plcUiLight42.ShowText = true;
- this.plcUiLight42.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight42.State = Sunny.UI.UILightState.Off;
- this.plcUiLight42.TabIndex = 336;
- this.plcUiLight42.Text = "A37封装站2_温控高温报警";
- this.plcUiLight42.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight42.WriteNode = null;
- //
- // plcUiLight43
- //
- this.plcUiLight43.DisabilityTriggerNode = null;
- this.plcUiLight43.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight43.InvisibilityTriggerNode = null;
- this.plcUiLight43.Location = new System.Drawing.Point(1172, 52);
- this.plcUiLight43.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight43.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight43.Name = "plcUiLight43";
- this.plcUiLight43.NodeName = "A37封装站2_温控低温报警";
- this.plcUiLight43.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight43.OffText = null;
- this.plcUiLight43.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight43.OnText = null;
- this.plcUiLight43.Radius = 40;
- this.plcUiLight43.ReadNode = new Node("Application.InPut.A37封装站2_温控低温报警", NodeType.BOOL, null);
- this.plcUiLight43.ShowText = true;
- this.plcUiLight43.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight43.State = Sunny.UI.UILightState.Off;
- this.plcUiLight43.TabIndex = 335;
- this.plcUiLight43.Text = "A37封装站2_温控低温报警";
- this.plcUiLight43.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight43.WriteNode = null;
- //
- // plcUiLight44
- //
- this.plcUiLight44.DisabilityTriggerNode = null;
- this.plcUiLight44.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight44.InvisibilityTriggerNode = null;
- this.plcUiLight44.Location = new System.Drawing.Point(1172, 2);
- this.plcUiLight44.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight44.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight44.Name = "plcUiLight44";
- this.plcUiLight44.NodeName = "A37封装站2_材料检测_高位";
- this.plcUiLight44.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight44.OffText = null;
- this.plcUiLight44.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight44.OnText = null;
- this.plcUiLight44.Radius = 40;
- this.plcUiLight44.ReadNode = new Node("Application.InPut.A37封装站2_材料检测_高位", NodeType.BOOL, null);
- this.plcUiLight44.ShowText = true;
- this.plcUiLight44.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight44.State = Sunny.UI.UILightState.Off;
- this.plcUiLight44.TabIndex = 334;
- this.plcUiLight44.Text = "A37封装站2_材料检测_高位";
- this.plcUiLight44.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight44.WriteNode = null;
- //
- // plcUiLight45
- //
- this.plcUiLight45.DisabilityTriggerNode = null;
- this.plcUiLight45.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight45.InvisibilityTriggerNode = null;
- this.plcUiLight45.Location = new System.Drawing.Point(887, 602);
- this.plcUiLight45.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight45.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight45.Name = "plcUiLight45";
- this.plcUiLight45.NodeName = "A37封装站2_手动运行按钮";
- this.plcUiLight45.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight45.OffText = null;
- this.plcUiLight45.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight45.OnText = null;
- this.plcUiLight45.Radius = 40;
- this.plcUiLight45.ReadNode = new Node("Application.InPut.A37封装站2_手动运行按钮", NodeType.BOOL, null);
- this.plcUiLight45.ShowText = true;
- this.plcUiLight45.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight45.State = Sunny.UI.UILightState.Off;
- this.plcUiLight45.TabIndex = 333;
- this.plcUiLight45.Text = "A37封装站2_手动运行按钮";
- this.plcUiLight45.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight45.WriteNode = null;
- //
- // plcUiLight46
- //
- this.plcUiLight46.DisabilityTriggerNode = null;
- this.plcUiLight46.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight46.InvisibilityTriggerNode = null;
- this.plcUiLight46.Location = new System.Drawing.Point(887, 552);
- this.plcUiLight46.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight46.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight46.Name = "plcUiLight46";
- this.plcUiLight46.NodeName = "A37封装站2_手动穿带按钮";
- this.plcUiLight46.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight46.OffText = null;
- this.plcUiLight46.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight46.OnText = null;
- this.plcUiLight46.Radius = 40;
- this.plcUiLight46.ReadNode = new Node("Application.InPut.A37封装站2_手动穿带按钮", NodeType.BOOL, null);
- this.plcUiLight46.ShowText = true;
- this.plcUiLight46.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight46.State = Sunny.UI.UILightState.Off;
- this.plcUiLight46.TabIndex = 332;
- this.plcUiLight46.Text = "A37封装站2_手动穿带按钮";
- this.plcUiLight46.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight46.WriteNode = null;
- //
- // plcUiLight48
- //
- this.plcUiLight48.DisabilityTriggerNode = null;
- this.plcUiLight48.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight48.InvisibilityTriggerNode = null;
- this.plcUiLight48.Location = new System.Drawing.Point(887, 502);
- this.plcUiLight48.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight48.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight48.Name = "plcUiLight48";
- this.plcUiLight48.NodeName = "A37封装站2_手动打带按钮";
- this.plcUiLight48.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight48.OffText = null;
- this.plcUiLight48.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight48.OnText = null;
- this.plcUiLight48.Radius = 40;
- this.plcUiLight48.ReadNode = new Node("Application.InPut.A37封装站2_手动打带按钮", NodeType.BOOL, null);
- this.plcUiLight48.ShowText = true;
- this.plcUiLight48.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight48.State = Sunny.UI.UILightState.Off;
- this.plcUiLight48.TabIndex = 331;
- this.plcUiLight48.Text = "A37封装站2_手动打带按钮";
- this.plcUiLight48.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight48.WriteNode = null;
- //
- // plcUiLight49
- //
- this.plcUiLight49.DisabilityTriggerNode = null;
- this.plcUiLight49.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight49.InvisibilityTriggerNode = null;
- this.plcUiLight49.Location = new System.Drawing.Point(887, 452);
- this.plcUiLight49.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight49.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight49.Name = "plcUiLight49";
- this.plcUiLight49.NodeName = "A37封装站2_手动切带按钮";
- this.plcUiLight49.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight49.OffText = null;
- this.plcUiLight49.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight49.OnText = null;
- this.plcUiLight49.Radius = 40;
- this.plcUiLight49.ReadNode = new Node("Application.InPut.A37封装站2_手动切带按钮", NodeType.BOOL, null);
- this.plcUiLight49.ShowText = true;
- this.plcUiLight49.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight49.State = Sunny.UI.UILightState.Off;
- this.plcUiLight49.TabIndex = 330;
- this.plcUiLight49.Text = "A37封装站2_手动切带按钮";
- this.plcUiLight49.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight49.WriteNode = null;
- //
- // plcUiLight50
- //
- this.plcUiLight50.DisabilityTriggerNode = null;
- this.plcUiLight50.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight50.InvisibilityTriggerNode = null;
- this.plcUiLight50.Location = new System.Drawing.Point(887, 402);
- this.plcUiLight50.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight50.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight50.Name = "plcUiLight50";
- this.plcUiLight50.NodeName = "A37封装站2_封装整组到位检测";
- this.plcUiLight50.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight50.OffText = null;
- this.plcUiLight50.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight50.OnText = null;
- this.plcUiLight50.Radius = 40;
- this.plcUiLight50.ReadNode = new Node("Application.InPut.A37封装站2_封装整组到位检测", NodeType.BOOL, null);
- this.plcUiLight50.ShowText = true;
- this.plcUiLight50.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight50.State = Sunny.UI.UILightState.Off;
- this.plcUiLight50.TabIndex = 329;
- this.plcUiLight50.Text = "A37封装站2_封装整组到位检测";
- this.plcUiLight50.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight50.WriteNode = null;
- //
- // plcUiLight51
- //
- this.plcUiLight51.DisabilityTriggerNode = null;
- this.plcUiLight51.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight51.InvisibilityTriggerNode = null;
- this.plcUiLight51.Location = new System.Drawing.Point(887, 352);
- this.plcUiLight51.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight51.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight51.Name = "plcUiLight51";
- this.plcUiLight51.NodeName = "A37封装站2_封合罩报警";
- this.plcUiLight51.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight51.OffText = null;
- this.plcUiLight51.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight51.OnText = null;
- this.plcUiLight51.Radius = 40;
- this.plcUiLight51.ReadNode = new Node("Application.InPut.A37封装站2_封合罩报警", NodeType.BOOL, null);
- this.plcUiLight51.ShowText = true;
- this.plcUiLight51.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight51.State = Sunny.UI.UILightState.Off;
- this.plcUiLight51.TabIndex = 328;
- this.plcUiLight51.Text = "A37封装站2_封合罩报警";
- this.plcUiLight51.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight51.WriteNode = null;
- //
- // plcUiLight52
- //
- this.plcUiLight52.DisabilityTriggerNode = null;
- this.plcUiLight52.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight52.InvisibilityTriggerNode = null;
- this.plcUiLight52.Location = new System.Drawing.Point(887, 302);
- this.plcUiLight52.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight52.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight52.Name = "plcUiLight52";
- this.plcUiLight52.NodeName = "A37封装站2_封合下压气缸工位";
- this.plcUiLight52.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight52.OffText = null;
- this.plcUiLight52.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight52.OnText = null;
- this.plcUiLight52.Radius = 40;
- this.plcUiLight52.ReadNode = new Node("Application.InPut.A37封装站2_封合下压气缸工位", NodeType.BOOL, null);
- this.plcUiLight52.ShowText = true;
- this.plcUiLight52.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight52.State = Sunny.UI.UILightState.Off;
- this.plcUiLight52.TabIndex = 327;
- this.plcUiLight52.Text = "A37封装站2_封合下压气缸工位";
- this.plcUiLight52.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight52.WriteNode = null;
- //
- // plcUiLight53
- //
- this.plcUiLight53.DisabilityTriggerNode = null;
- this.plcUiLight53.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight53.InvisibilityTriggerNode = null;
- this.plcUiLight53.Location = new System.Drawing.Point(887, 252);
- this.plcUiLight53.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight53.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight53.Name = "plcUiLight53";
- this.plcUiLight53.NodeName = "A37封装站2_压痕画像OKorNG";
- this.plcUiLight53.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight53.OffText = null;
- this.plcUiLight53.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight53.OnText = null;
- this.plcUiLight53.Radius = 40;
- this.plcUiLight53.ReadNode = new Node("Application.InPut.A37封装站2_压痕画像OKorNG", NodeType.BOOL, null);
- this.plcUiLight53.ShowText = true;
- this.plcUiLight53.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight53.State = Sunny.UI.UILightState.Off;
- this.plcUiLight53.TabIndex = 326;
- this.plcUiLight53.Text = "A37封装站2_压痕画像OKorNG";
- this.plcUiLight53.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight53.WriteNode = null;
- //
- // plcUiButton24
- //
- this.plcUiButton24.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton24.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton24.DisabilityTriggerNode = null;
- this.plcUiButton24.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton24.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton24.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton24.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton24.InvisibilityTriggerNode = null;
- this.plcUiButton24.IsReadWriteNodeSame = false;
- this.plcUiButton24.Location = new System.Drawing.Point(1683, 202);
- this.plcUiButton24.Maximum = 0D;
- this.plcUiButton24.Minimum = 0D;
- this.plcUiButton24.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton24.Name = "plcUiButton24";
- this.plcUiButton24.NeedUserEnsure = false;
- this.plcUiButton24.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton24.OffSymbol = 0;
- this.plcUiButton24.OffText = "A37_压痕画像SOT";
- this.plcUiButton24.OnColor = System.Drawing.Color.Green;
- this.plcUiButton24.OnSymbol = 0;
- this.plcUiButton24.OnText = "A37_压痕画像SOT";
- this.plcUiButton24.ReadNode = new Node("Application.OutPut.A37_压痕画像SOT", NodeType.BOOL, null);
- this.plcUiButton24.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton24.Symbol = 0;
- this.plcUiButton24.TabIndex = 325;
- this.plcUiButton24.Text = "A37_压痕画像SOT";
- this.plcUiButton24.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton24.WriteNode = null;
- //
- // plcUiButton25
- //
- this.plcUiButton25.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton25.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton25.DisabilityTriggerNode = null;
- this.plcUiButton25.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton25.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton25.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton25.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton25.InvisibilityTriggerNode = null;
- this.plcUiButton25.IsReadWriteNodeSame = false;
- this.plcUiButton25.Location = new System.Drawing.Point(1683, 152);
- this.plcUiButton25.Maximum = 0D;
- this.plcUiButton25.Minimum = 0D;
- this.plcUiButton25.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton25.Name = "plcUiButton25";
- this.plcUiButton25.NeedUserEnsure = false;
- this.plcUiButton25.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton25.OffSymbol = 0;
- this.plcUiButton25.OffText = "A37_印字复检画像SOT";
- this.plcUiButton25.OnColor = System.Drawing.Color.Green;
- this.plcUiButton25.OnSymbol = 0;
- this.plcUiButton25.OnText = "A37_印字复检画像SOT";
- this.plcUiButton25.ReadNode = new Node("Application.OutPut.A37_印字复检画像SOT", NodeType.BOOL, null);
- this.plcUiButton25.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton25.Symbol = 0;
- this.plcUiButton25.TabIndex = 324;
- this.plcUiButton25.Text = "A37_印字复检画像SOT";
- this.plcUiButton25.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton25.WriteNode = null;
- //
- // plcUiButton26
- //
- this.plcUiButton26.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton26.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton26.DisabilityTriggerNode = null;
- this.plcUiButton26.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton26.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton26.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton26.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton26.InvisibilityTriggerNode = null;
- this.plcUiButton26.IsReadWriteNodeSame = false;
- this.plcUiButton26.Location = new System.Drawing.Point(1683, 102);
- this.plcUiButton26.Maximum = 0D;
- this.plcUiButton26.Minimum = 0D;
- this.plcUiButton26.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton26.Name = "plcUiButton26";
- this.plcUiButton26.NeedUserEnsure = false;
- this.plcUiButton26.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton26.OffSymbol = 0;
- this.plcUiButton26.OffText = "A37_切带气缸电磁阀";
- this.plcUiButton26.OnColor = System.Drawing.Color.Green;
- this.plcUiButton26.OnSymbol = 0;
- this.plcUiButton26.OnText = "A37_切带气缸电磁阀";
- this.plcUiButton26.ReadNode = new Node("Application.OutPut.A37_切带气缸电磁阀", NodeType.BOOL, null);
- this.plcUiButton26.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton26.Symbol = 0;
- this.plcUiButton26.TabIndex = 323;
- this.plcUiButton26.Text = "A37_切带气缸电磁阀";
- this.plcUiButton26.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton26.WriteNode = null;
- //
- // plcUiLight54
- //
- this.plcUiLight54.DisabilityTriggerNode = null;
- this.plcUiLight54.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight54.InvisibilityTriggerNode = null;
- this.plcUiLight54.Location = new System.Drawing.Point(887, 202);
- this.plcUiLight54.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight54.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight54.Name = "plcUiLight54";
- this.plcUiLight54.NodeName = "A37封装站2_压痕画像EOT";
- this.plcUiLight54.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight54.OffText = null;
- this.plcUiLight54.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight54.OnText = null;
- this.plcUiLight54.Radius = 40;
- this.plcUiLight54.ReadNode = new Node("Application.InPut.A37封装站2_压痕画像EOT", NodeType.BOOL, null);
- this.plcUiLight54.ShowText = true;
- this.plcUiLight54.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight54.State = Sunny.UI.UILightState.Off;
- this.plcUiLight54.TabIndex = 322;
- this.plcUiLight54.Text = "A37封装站2_压痕画像EOT";
- this.plcUiLight54.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight54.WriteNode = null;
- //
- // plcUiLight55
- //
- this.plcUiLight55.DisabilityTriggerNode = null;
- this.plcUiLight55.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight55.InvisibilityTriggerNode = null;
- this.plcUiLight55.Location = new System.Drawing.Point(887, 152);
- this.plcUiLight55.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight55.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight55.Name = "plcUiLight55";
- this.plcUiLight55.NodeName = "A37封装站2_印字复检画像OKorNG";
- this.plcUiLight55.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight55.OffText = null;
- this.plcUiLight55.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight55.OnText = null;
- this.plcUiLight55.Radius = 40;
- this.plcUiLight55.ReadNode = new Node("Application.InPut.A37封装站2_印字复检画像OKorNG", NodeType.BOOL, null);
- this.plcUiLight55.ShowText = true;
- this.plcUiLight55.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight55.State = Sunny.UI.UILightState.Off;
- this.plcUiLight55.TabIndex = 321;
- this.plcUiLight55.Text = "A37封装站2_印字复检画像OKorNG";
- this.plcUiLight55.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight55.WriteNode = null;
- //
- // plcUiLight56
- //
- this.plcUiLight56.DisabilityTriggerNode = null;
- this.plcUiLight56.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight56.InvisibilityTriggerNode = null;
- this.plcUiLight56.Location = new System.Drawing.Point(887, 102);
- this.plcUiLight56.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight56.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight56.Name = "plcUiLight56";
- this.plcUiLight56.NodeName = "A37封装站2_印字复检画像EOT";
- this.plcUiLight56.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight56.OffText = null;
- this.plcUiLight56.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight56.OnText = null;
- this.plcUiLight56.Radius = 40;
- this.plcUiLight56.ReadNode = new Node("Application.InPut.A37封装站2_印字复检画像EOT", NodeType.BOOL, null);
- this.plcUiLight56.ShowText = true;
- this.plcUiLight56.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight56.State = Sunny.UI.UILightState.Off;
- this.plcUiLight56.TabIndex = 320;
- this.plcUiLight56.Text = "A37封装站2_印字复检画像EOT";
- this.plcUiLight56.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight56.WriteNode = null;
- //
- // plcUiLight57
- //
- this.plcUiLight57.DisabilityTriggerNode = null;
- this.plcUiLight57.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight57.InvisibilityTriggerNode = null;
- this.plcUiLight57.Location = new System.Drawing.Point(887, 52);
- this.plcUiLight57.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight57.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight57.Name = "plcUiLight57";
- this.plcUiLight57.NodeName = "A37封装站2_切刀气缸原位";
- this.plcUiLight57.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight57.OffText = null;
- this.plcUiLight57.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight57.OnText = null;
- this.plcUiLight57.Radius = 40;
- this.plcUiLight57.ReadNode = new Node("Application.InPut.A37封装站2_切刀气缸原位", NodeType.BOOL, null);
- this.plcUiLight57.ShowText = true;
- this.plcUiLight57.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight57.State = Sunny.UI.UILightState.Off;
- this.plcUiLight57.TabIndex = 319;
- this.plcUiLight57.Text = "A37封装站2_切刀气缸原位";
- this.plcUiLight57.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight57.WriteNode = null;
- //
- // plcUiLight58
- //
- this.plcUiLight58.DisabilityTriggerNode = null;
- this.plcUiLight58.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight58.InvisibilityTriggerNode = null;
- this.plcUiLight58.Location = new System.Drawing.Point(887, 2);
- this.plcUiLight58.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight58.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight58.Name = "plcUiLight58";
- this.plcUiLight58.NodeName = "A37封装站2_切刀气缸伸出位";
- this.plcUiLight58.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight58.OffText = null;
- this.plcUiLight58.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight58.OnText = null;
- this.plcUiLight58.Radius = 40;
- this.plcUiLight58.ReadNode = new Node("Application.InPut.A37封装站2_切刀气缸伸出位", NodeType.BOOL, null);
- this.plcUiLight58.ShowText = true;
- this.plcUiLight58.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight58.State = Sunny.UI.UILightState.Off;
- this.plcUiLight58.TabIndex = 318;
- this.plcUiLight58.Text = "A37封装站2_切刀气缸伸出位";
- this.plcUiLight58.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight58.WriteNode = null;
- //
- // plcUiLight59
- //
- this.plcUiLight59.DisabilityTriggerNode = null;
- this.plcUiLight59.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight59.InvisibilityTriggerNode = null;
- this.plcUiLight59.Location = new System.Drawing.Point(1172, 602);
- this.plcUiLight59.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight59.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight59.Name = "plcUiLight59";
- this.plcUiLight59.NodeName = "A39溢料盒_材料检测_高位";
- this.plcUiLight59.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight59.OffText = null;
- this.plcUiLight59.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight59.OnText = null;
- this.plcUiLight59.Radius = 40;
- this.plcUiLight59.ReadNode = new Node("Application.InPut.A39溢料盒_材料检测_高位", NodeType.BOOL, null);
- this.plcUiLight59.ShowText = true;
- this.plcUiLight59.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight59.State = Sunny.UI.UILightState.Off;
- this.plcUiLight59.TabIndex = 355;
- this.plcUiLight59.Text = "A39溢料盒_材料检测_高位";
- this.plcUiLight59.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight59.WriteNode = null;
- //
- // plcUiButton27
- //
- this.plcUiButton27.ButtonType = PlcUiControl.ButtonType.交替型;
- this.plcUiButton27.Cursor = System.Windows.Forms.Cursors.Hand;
- this.plcUiButton27.DisabilityTriggerNode = null;
- this.plcUiButton27.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton27.FillHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton27.FillSelectedColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton27.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton27.InvisibilityTriggerNode = null;
- this.plcUiButton27.IsReadWriteNodeSame = false;
- this.plcUiButton27.Location = new System.Drawing.Point(1683, 752);
- this.plcUiButton27.Maximum = 0D;
- this.plcUiButton27.Minimum = 0D;
- this.plcUiButton27.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiButton27.Name = "plcUiButton27";
- this.plcUiButton27.NeedUserEnsure = false;
- this.plcUiButton27.OffColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiButton27.OffSymbol = 0;
- this.plcUiButton27.OffText = "A39_溢料盒吸嘴破真空电磁阀";
- this.plcUiButton27.OnColor = System.Drawing.Color.Green;
- this.plcUiButton27.OnSymbol = 0;
- this.plcUiButton27.OnText = "A39_溢料盒吸嘴破真空电磁阀";
- this.plcUiButton27.ReadNode = new Node("Application.OutPut.A39_溢料盒吸嘴破真空电磁阀", NodeType.BOOL, null);
- this.plcUiButton27.Size = new System.Drawing.Size(200, 40);
- this.plcUiButton27.Symbol = 0;
- this.plcUiButton27.TabIndex = 354;
- this.plcUiButton27.Text = "A39_溢料盒吸嘴破真空电磁阀";
- this.plcUiButton27.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiButton27.WriteNode = null;
- //
- // plcUiLight60
- //
- this.plcUiLight60.DisabilityTriggerNode = null;
- this.plcUiLight60.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight60.InvisibilityTriggerNode = null;
- this.plcUiLight60.Location = new System.Drawing.Point(1172, 552);
- this.plcUiLight60.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight60.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight60.Name = "plcUiLight60";
- this.plcUiLight60.NodeName = "A39溢料盒_料盒有无";
- this.plcUiLight60.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight60.OffText = null;
- this.plcUiLight60.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight60.OnText = null;
- this.plcUiLight60.Radius = 40;
- this.plcUiLight60.ReadNode = new Node("Application.InPut.A39溢料盒_料盒有无", NodeType.BOOL, null);
- this.plcUiLight60.ShowText = true;
- this.plcUiLight60.Size = new System.Drawing.Size(270, 40);
- this.plcUiLight60.State = Sunny.UI.UILightState.Off;
- this.plcUiLight60.TabIndex = 353;
- this.plcUiLight60.Text = "A39溢料盒_料盒有无";
- this.plcUiLight60.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight60.WriteNode = null;
- //
- // IOForm3
- //
- this.AllowShowTitle = false;
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
- this.ClientSize = new System.Drawing.Size(1900, 897);
- this.Controls.Add(this.plcUiLight59);
- this.Controls.Add(this.plcUiButton27);
- this.Controls.Add(this.plcUiLight60);
- this.Controls.Add(this.plcUiButton15);
- this.Controls.Add(this.plcUiButton16);
- this.Controls.Add(this.plcUiButton17);
- this.Controls.Add(this.plcUiButton18);
- this.Controls.Add(this.plcUiButton19);
- this.Controls.Add(this.plcUiButton20);
- this.Controls.Add(this.plcUiButton21);
- this.Controls.Add(this.plcUiButton22);
- this.Controls.Add(this.plcUiButton23);
- this.Controls.Add(this.plcUiLight35);
- this.Controls.Add(this.plcUiLight36);
- this.Controls.Add(this.plcUiLight37);
- this.Controls.Add(this.plcUiLight38);
- this.Controls.Add(this.plcUiLight39);
- this.Controls.Add(this.plcUiLight40);
- this.Controls.Add(this.plcUiLight41);
- this.Controls.Add(this.plcUiLight42);
- this.Controls.Add(this.plcUiLight43);
- this.Controls.Add(this.plcUiLight44);
- this.Controls.Add(this.plcUiLight45);
- this.Controls.Add(this.plcUiLight46);
- this.Controls.Add(this.plcUiLight48);
- this.Controls.Add(this.plcUiLight49);
- this.Controls.Add(this.plcUiLight50);
- this.Controls.Add(this.plcUiLight51);
- this.Controls.Add(this.plcUiLight52);
- this.Controls.Add(this.plcUiLight53);
- this.Controls.Add(this.plcUiButton24);
- this.Controls.Add(this.plcUiButton25);
- this.Controls.Add(this.plcUiButton26);
- this.Controls.Add(this.plcUiLight54);
- this.Controls.Add(this.plcUiLight55);
- this.Controls.Add(this.plcUiLight56);
- this.Controls.Add(this.plcUiLight57);
- this.Controls.Add(this.plcUiLight58);
- this.Controls.Add(this.plcUiLight34);
- this.Controls.Add(this.plcUiButton12);
- this.Controls.Add(this.plcUiButton2);
- this.Controls.Add(this.plcUiButton8);
- this.Controls.Add(this.plcUiButton9);
- this.Controls.Add(this.plcUiButton10);
- this.Controls.Add(this.plcUiButton11);
- this.Controls.Add(this.plcUiButton3);
- this.Controls.Add(this.plcUiButton5);
- this.Controls.Add(this.plcUiButton6);
- this.Controls.Add(this.plcUiLight29);
- this.Controls.Add(this.plcUiLight26);
- this.Controls.Add(this.plcUiLight27);
- this.Controls.Add(this.plcUiLight28);
- this.Controls.Add(this.plcUiLight1);
- this.Controls.Add(this.plcUiLight24);
- this.Controls.Add(this.plcUiLight25);
- this.Controls.Add(this.plcUiLight3);
- this.Controls.Add(this.plcUiLight7);
- this.Controls.Add(this.plcUiLight8);
- this.Controls.Add(this.plcUiLight16);
- this.Controls.Add(this.plcUiLight17);
- this.Controls.Add(this.plcUiLight9);
- this.Controls.Add(this.plcUiLight10);
- this.Controls.Add(this.plcUiLight14);
- this.Controls.Add(this.plcUiLight15);
- this.Controls.Add(this.plcUiLight12);
- this.Controls.Add(this.plcUiLight11);
- this.Controls.Add(this.plcUiButton4);
- this.Controls.Add(this.plcUiButton13);
- this.Controls.Add(this.plcUiButton14);
- this.Controls.Add(this.plcUiLight13);
- this.Controls.Add(this.plcUiLight30);
- this.Controls.Add(this.plcUiLight31);
- this.Controls.Add(this.plcUiLight32);
- this.Controls.Add(this.plcUiLight33);
- this.Controls.Add(this.plcUiLight23);
- this.Controls.Add(this.plcUiButton1);
- this.Controls.Add(this.plcUiLight6);
- this.Controls.Add(this.plcUiLight18);
- this.Controls.Add(this.plcUiLight19);
- this.Controls.Add(this.plcUiLight20);
- this.Controls.Add(this.plcUiLight21);
- this.Controls.Add(this.plcUiLight22);
- this.Controls.Add(this.plcUiButton7);
- this.Controls.Add(this.plcUiLight4);
- this.Controls.Add(this.plcUiLight5);
- this.Controls.Add(this.plcUiLight2);
- this.Controls.Add(this.plcUiLight47);
- this.Name = "IOForm3";
- this.Padding = new System.Windows.Forms.Padding(0);
- this.ShowTitle = false;
- this.Text = "IO监控";
- this.ResumeLayout(false);
- }
- #endregion
- private PlcUiControl.PlcUiLight plcUiLight47;
- private PlcUiControl.PlcUiLight plcUiLight2;
- private PlcUiControl.PlcUiButton plcUiButton7;
- private PlcUiControl.PlcUiLight plcUiLight4;
- private PlcUiControl.PlcUiLight plcUiLight5;
- private PlcUiControl.PlcUiButton plcUiButton1;
- private PlcUiControl.PlcUiLight plcUiLight6;
- private PlcUiControl.PlcUiLight plcUiLight18;
- private PlcUiControl.PlcUiLight plcUiLight19;
- private PlcUiControl.PlcUiLight plcUiLight20;
- private PlcUiControl.PlcUiLight plcUiLight21;
- private PlcUiControl.PlcUiLight plcUiLight22;
- private PlcUiControl.PlcUiLight plcUiLight23;
- private PlcUiControl.PlcUiButton plcUiButton12;
- private PlcUiControl.PlcUiButton plcUiButton2;
- private PlcUiControl.PlcUiButton plcUiButton8;
- private PlcUiControl.PlcUiButton plcUiButton9;
- private PlcUiControl.PlcUiButton plcUiButton10;
- private PlcUiControl.PlcUiButton plcUiButton11;
- private PlcUiControl.PlcUiButton plcUiButton3;
- private PlcUiControl.PlcUiButton plcUiButton5;
- private PlcUiControl.PlcUiButton plcUiButton6;
- private PlcUiControl.PlcUiLight plcUiLight29;
- private PlcUiControl.PlcUiLight plcUiLight26;
- private PlcUiControl.PlcUiLight plcUiLight27;
- private PlcUiControl.PlcUiLight plcUiLight28;
- private PlcUiControl.PlcUiLight plcUiLight1;
- private PlcUiControl.PlcUiLight plcUiLight24;
- private PlcUiControl.PlcUiLight plcUiLight25;
- private PlcUiControl.PlcUiLight plcUiLight3;
- private PlcUiControl.PlcUiLight plcUiLight7;
- private PlcUiControl.PlcUiLight plcUiLight8;
- private PlcUiControl.PlcUiLight plcUiLight16;
- private PlcUiControl.PlcUiLight plcUiLight17;
- private PlcUiControl.PlcUiLight plcUiLight9;
- private PlcUiControl.PlcUiLight plcUiLight10;
- private PlcUiControl.PlcUiLight plcUiLight14;
- private PlcUiControl.PlcUiLight plcUiLight15;
- private PlcUiControl.PlcUiLight plcUiLight12;
- private PlcUiControl.PlcUiLight plcUiLight11;
- private PlcUiControl.PlcUiButton plcUiButton4;
- private PlcUiControl.PlcUiButton plcUiButton13;
- private PlcUiControl.PlcUiButton plcUiButton14;
- private PlcUiControl.PlcUiLight plcUiLight13;
- private PlcUiControl.PlcUiLight plcUiLight30;
- private PlcUiControl.PlcUiLight plcUiLight31;
- private PlcUiControl.PlcUiLight plcUiLight32;
- private PlcUiControl.PlcUiLight plcUiLight33;
- private PlcUiControl.PlcUiLight plcUiLight34;
- private PlcUiControl.PlcUiButton plcUiButton15;
- private PlcUiControl.PlcUiButton plcUiButton16;
- private PlcUiControl.PlcUiButton plcUiButton17;
- private PlcUiControl.PlcUiButton plcUiButton18;
- private PlcUiControl.PlcUiButton plcUiButton19;
- private PlcUiControl.PlcUiButton plcUiButton20;
- private PlcUiControl.PlcUiButton plcUiButton21;
- private PlcUiControl.PlcUiButton plcUiButton22;
- private PlcUiControl.PlcUiButton plcUiButton23;
- private PlcUiControl.PlcUiLight plcUiLight35;
- private PlcUiControl.PlcUiLight plcUiLight36;
- private PlcUiControl.PlcUiLight plcUiLight37;
- private PlcUiControl.PlcUiLight plcUiLight38;
- private PlcUiControl.PlcUiLight plcUiLight39;
- private PlcUiControl.PlcUiLight plcUiLight40;
- private PlcUiControl.PlcUiLight plcUiLight41;
- private PlcUiControl.PlcUiLight plcUiLight42;
- private PlcUiControl.PlcUiLight plcUiLight43;
- private PlcUiControl.PlcUiLight plcUiLight44;
- private PlcUiControl.PlcUiLight plcUiLight45;
- private PlcUiControl.PlcUiLight plcUiLight46;
- private PlcUiControl.PlcUiLight plcUiLight48;
- private PlcUiControl.PlcUiLight plcUiLight49;
- private PlcUiControl.PlcUiLight plcUiLight50;
- private PlcUiControl.PlcUiLight plcUiLight51;
- private PlcUiControl.PlcUiLight plcUiLight52;
- private PlcUiControl.PlcUiLight plcUiLight53;
- private PlcUiControl.PlcUiButton plcUiButton24;
- private PlcUiControl.PlcUiButton plcUiButton25;
- private PlcUiControl.PlcUiButton plcUiButton26;
- private PlcUiControl.PlcUiLight plcUiLight54;
- private PlcUiControl.PlcUiLight plcUiLight55;
- private PlcUiControl.PlcUiLight plcUiLight56;
- private PlcUiControl.PlcUiLight plcUiLight57;
- private PlcUiControl.PlcUiLight plcUiLight58;
- private PlcUiControl.PlcUiLight plcUiLight59;
- private PlcUiControl.PlcUiButton plcUiButton27;
- private PlcUiControl.PlcUiLight plcUiLight60;
- }
- }
|