1 Star 0 Fork 0

业余组织/xin2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
高压喷雾.Designer.cs 176.26 KB
一键复制 编辑 原始数据 按行查看 历史
阿宝 提交于 2024-04-16 23:27 . 1
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198

namespace xin2
{
partial class 高压喷雾
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 组件设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
PCHMI.InterLock interLock1 = new PCHMI.InterLock();
PCHMI.InterLock interLock2 = new PCHMI.InterLock();
PCHMI.InterLock interLock3 = new PCHMI.InterLock();
PCHMI.InterLock interLock4 = new PCHMI.InterLock();
PCHMI.InterLock interLock5 = new PCHMI.InterLock();
PCHMI.InterLock interLock6 = new PCHMI.InterLock();
PCHMI.InterLock interLock7 = new PCHMI.InterLock();
PCHMI.InterLock interLock8 = new PCHMI.InterLock();
PCHMI.InterLock interLock9 = new PCHMI.InterLock();
PCHMI.InterLock interLock10 = new PCHMI.InterLock();
PCHMI.InterLock interLock11 = new PCHMI.InterLock();
PCHMI.InterLock interLock12 = new PCHMI.InterLock();
PCHMI.InterLock interLock13 = new PCHMI.InterLock();
PCHMI.InterLock interLock14 = new PCHMI.InterLock();
PCHMI.InterLock interLock15 = new PCHMI.InterLock();
PCHMI.InterLock interLock16 = new PCHMI.InterLock();
PCHMI.ST_SW_IF sT_SW_IF1 = new PCHMI.ST_SW_IF();
PCHMI.ST_SW_IF sT_SW_IF2 = new PCHMI.ST_SW_IF();
PCHMI.InterLock interLock17 = new PCHMI.InterLock();
PCHMI.ST_SW_IF sT_SW_IF3 = new PCHMI.ST_SW_IF();
PCHMI.ST_SW_IF sT_SW_IF4 = new PCHMI.ST_SW_IF();
PCHMI.InterLock interLock18 = new PCHMI.InterLock();
PCHMI.ST_SW_IF sT_SW_IF5 = new PCHMI.ST_SW_IF();
PCHMI.ST_SW_IF sT_SW_IF6 = new PCHMI.ST_SW_IF();
PCHMI.InterLock interLock19 = new PCHMI.InterLock();
PCHMI.ST_SW_IF sT_SW_IF7 = new PCHMI.ST_SW_IF();
PCHMI.ST_SW_IF sT_SW_IF8 = new PCHMI.ST_SW_IF();
PCHMI.InterLock interLock20 = new PCHMI.InterLock();
PCHMI.ST_SW_IF sT_SW_IF9 = new PCHMI.ST_SW_IF();
PCHMI.ST_SW_IF sT_SW_IF10 = new PCHMI.ST_SW_IF();
PCHMI.InterLock interLock21 = new PCHMI.InterLock();
PCHMI.InterLock interLock22 = new PCHMI.InterLock();
PCHMI.InterLock interLock23 = new PCHMI.InterLock();
PCHMI.InterLock interLock24 = new PCHMI.InterLock();
PCHMI.InterLock interLock25 = new PCHMI.InterLock();
PCHMI.InterLock interLock26 = new PCHMI.InterLock();
PCHMI.InterLock interLock27 = new PCHMI.InterLock();
PCHMI.InterLock interLock28 = new PCHMI.InterLock();
PCHMI.InterLock interLock29 = new PCHMI.InterLock();
PCHMI.InterLock interLock30 = new PCHMI.InterLock();
PCHMI.InterLock interLock31 = new PCHMI.InterLock();
PCHMI.InterLock interLock32 = new PCHMI.InterLock();
PCHMI.InterLock interLock33 = new PCHMI.InterLock();
PCHMI.InterLock interLock34 = new PCHMI.InterLock();
PCHMI.ST_SW_IF sT_SW_IF11 = new PCHMI.ST_SW_IF();
PCHMI.ST_SW_IF sT_SW_IF12 = new PCHMI.ST_SW_IF();
PCHMI.InterLock interLock35 = new PCHMI.InterLock();
PCHMI.InterLock interLock36 = new PCHMI.InterLock();
PCHMI.InterLock interLock37 = new PCHMI.InterLock();
PCHMI.InterLock interLock38 = new PCHMI.InterLock();
PCHMI.InterLock interLock39 = new PCHMI.InterLock();
PCHMI.InterLock interLock40 = new PCHMI.InterLock();
PCHMI.InterLock interLock41 = new PCHMI.InterLock();
PCHMI.InterLock interLock42 = new PCHMI.InterLock();
PCHMI.InterLock interLock43 = new PCHMI.InterLock();
PCHMI.InterLock interLock44 = new PCHMI.InterLock();
PCHMI.InterLock interLock45 = new PCHMI.InterLock();
PCHMI.InterLock interLock46 = new PCHMI.InterLock();
PCHMI.InterLock interLock47 = new PCHMI.InterLock();
PCHMI.InterLock interLock48 = new PCHMI.InterLock();
PCHMI.ST_SW_IF sT_SW_IF13 = new PCHMI.ST_SW_IF();
PCHMI.ST_SW_IF sT_SW_IF14 = new PCHMI.ST_SW_IF();
PCHMI.InterLock interLock49 = new PCHMI.InterLock();
PCHMI.ST_SW_IF sT_SW_IF15 = new PCHMI.ST_SW_IF();
PCHMI.ST_SW_IF sT_SW_IF16 = new PCHMI.ST_SW_IF();
PCHMI.InterLock interLock50 = new PCHMI.InterLock();
PCHMI.ST_SW_IF sT_SW_IF17 = new PCHMI.ST_SW_IF();
PCHMI.ST_SW_IF sT_SW_IF18 = new PCHMI.ST_SW_IF();
PCHMI.InterLock interLock51 = new PCHMI.InterLock();
PCHMI.ST_SW_IF sT_SW_IF19 = new PCHMI.ST_SW_IF();
PCHMI.ST_SW_IF sT_SW_IF20 = new PCHMI.ST_SW_IF();
this.图片1 = new PCHMI.图片();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label15 = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.图片13 = new PCHMI.图片();
this.label22 = new System.Windows.Forms.Label();
this.图片2 = new PCHMI.图片();
this.图片3 = new PCHMI.图片();
this.图片8 = new PCHMI.图片();
this.图片5 = new PCHMI.图片();
this.图片6 = new PCHMI.图片();
this.图片11 = new PCHMI.图片();
this.图片9 = new PCHMI.图片();
this.图片4 = new PCHMI.图片();
this.图片38 = new PCHMI.图片();
this.图片37 = new PCHMI.图片();
this.图片7 = new PCHMI.图片();
this.图片15 = new PCHMI.图片();
this.图片109 = new PCHMI.图片();
this.label67 = new System.Windows.Forms.Label();
this.图片61 = new PCHMI.图片();
this.图片62 = new PCHMI.图片();
this.图片26 = new PCHMI.图片();
this.图片57 = new PCHMI.图片();
this.图片58 = new PCHMI.图片();
this.label17 = new System.Windows.Forms.Label();
this.图片49 = new PCHMI.图片();
this.label18 = new System.Windows.Forms.Label();
this.图片51 = new PCHMI.图片();
this.label3 = new System.Windows.Forms.Label();
this.图片47 = new PCHMI.图片();
this.label4 = new System.Windows.Forms.Label();
this.图片45 = new PCHMI.图片();
this.label13 = new System.Windows.Forms.Label();
this.图片42 = new PCHMI.图片();
this.label12 = new System.Windows.Forms.Label();
this.图片12 = new PCHMI.图片();
this.label10 = new System.Windows.Forms.Label();
this.图片30 = new PCHMI.图片();
this.label6 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.图片43 = new PCHMI.图片();
this.图片41 = new PCHMI.图片();
this.图片39 = new PCHMI.图片();
this.图片16 = new PCHMI.图片();
this.图片31 = new PCHMI.图片();
this.图片28 = new PCHMI.图片();
this.label14 = new System.Windows.Forms.Label();
this.图片25 = new PCHMI.图片();
this.数据显示器73 = new PCHMI.数据显示器();
this.label62 = new System.Windows.Forms.Label();
this.label63 = new System.Windows.Forms.Label();
this.图片23 = new PCHMI.图片();
this.图片17 = new PCHMI.图片();
this.图片18 = new PCHMI.图片();
this.图片20 = new PCHMI.图片();
this.图片21 = new PCHMI.图片();
this.图片29 = new PCHMI.图片();
this.数据显示器1 = new PCHMI.数据显示器();
this.数据显示器2 = new PCHMI.数据显示器();
this.数据显示器3 = new PCHMI.数据显示器();
this.数据显示器4 = new PCHMI.数据显示器();
this.数据显示器5 = new PCHMI.数据显示器();
this.label19 = new System.Windows.Forms.Label();
this.图片10 = new PCHMI.图片();
this.图片14 = new PCHMI.图片();
this.图片19 = new PCHMI.图片();
this.图片22 = new PCHMI.图片();
this.图片24 = new PCHMI.图片();
((System.ComponentModel.ISupportInitialize)(this.图片1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片13)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片8)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片5)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片6)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片11)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片9)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片4)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片38)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片37)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片7)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片15)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片109)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片61)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片62)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片26)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片57)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片58)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片49)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片51)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片47)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片45)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片42)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片12)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片30)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片43)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片41)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片39)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片16)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片31)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片28)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片25)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片23)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片17)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片18)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片20)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片21)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片29)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片10)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片14)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片19)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片22)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.图片24)).BeginInit();
this.SuspendLayout();
//
// 图片1
//
this.图片1.BackColor = System.Drawing.Color.White;
this.图片1.Cursor = System.Windows.Forms.Cursors.Default;
this.图片1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片1.HDADDR = "";
this.图片1.Image = global::xin2.Properties.Resources.tt1;
this.图片1.Location = new System.Drawing.Point(16, 5);
this.图片1.Name = "图片1";
this.图片1.PLC = ((uint)(0u));
this.图片1.Size = new System.Drawing.Size(35, 20);
this.图片1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片1.TabIndex = 6615;
this.图片1.TabStop = false;
this.图片1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片1.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片1.Value = ((ulong)(0ul));
interLock1.HDADDR = "";
interLock1.PLC = ((uint)(0u));
interLock1.互锁启用值 = ((uint)(1u));
interLock1.互锁地址 = "";
interLock1.互锁显示图标 = null;
interLock1.互锁显示文本 = "LOCK";
interLock1.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片1.互锁 = interLock1;
this.图片1.安全级别 = ((uint)(0u));
this.图片1.开关功能.PLC = null;
this.图片1.开关功能.地址 = null;
this.图片1.开关功能.开关 = null;
this.图片1.开关功能.扩展 = null;
this.图片1.快捷键 = "";
this.图片1.指示灯地址 = "";
this.图片1.指示类型 = PCHMI.图片.DatType.BIT;
this.图片1.操作记录 = "";
this.图片1.显示内容.BkImg = null;
this.图片1.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片1.显示内容.状态文本 = null;
this.图片1.显示内容.默认状态文本ID = ((uint)(0u));
this.图片1.显示文本 = true;
this.图片1.显示边框 = false;
this.图片1.权限提示文本 = "";
this.图片1.语言 = ((uint)(0u));
this.图片1.边框颜色 = System.Drawing.Color.LightGray;
//
// label1
//
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.Color.White;
this.label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.ForeColor = System.Drawing.Color.Black;
this.label1.Location = new System.Drawing.Point(842, 8);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(35, 14);
this.label1.TabIndex = 6721;
this.label1.Text = "自动";
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.White;
this.label2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label2.ForeColor = System.Drawing.Color.Black;
this.label2.Location = new System.Drawing.Point(686, 8);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(35, 14);
this.label2.TabIndex = 6720;
this.label2.Text = "手动";
//
// label15
//
this.label15.AutoSize = true;
this.label15.BackColor = System.Drawing.Color.White;
this.label15.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label15.ForeColor = System.Drawing.Color.Black;
this.label15.Location = new System.Drawing.Point(530, 8);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(35, 14);
this.label15.TabIndex = 6719;
this.label15.Text = "模式";
//
// label16
//
this.label16.AutoSize = true;
this.label16.BackColor = System.Drawing.Color.White;
this.label16.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label16.ForeColor = System.Drawing.Color.Black;
this.label16.Location = new System.Drawing.Point(374, 8);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(35, 14);
this.label16.TabIndex = 6718;
this.label16.Text = "显示";
//
// 图片13
//
this.图片13.BackColor = System.Drawing.Color.White;
this.图片13.Cursor = System.Windows.Forms.Cursors.Hand;
this.图片13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片13.HDADDR = "";
this.图片13.Image = global::xin2.Properties.Resources.出差c1;
this.图片13.Location = new System.Drawing.Point(1573, 0);
this.图片13.Name = "图片13";
this.图片13.PLC = ((uint)(0u));
this.图片13.Size = new System.Drawing.Size(35, 30);
this.图片13.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片13.TabIndex = 6704;
this.图片13.TabStop = false;
this.图片13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片13.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片13.Value = ((ulong)(0ul));
interLock2.HDADDR = "";
interLock2.PLC = ((uint)(0u));
interLock2.互锁启用值 = ((uint)(1u));
interLock2.互锁地址 = "";
interLock2.互锁显示图标 = null;
interLock2.互锁显示文本 = "LOCK";
interLock2.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片13.互锁 = interLock2;
this.图片13.安全级别 = ((uint)(0u));
this.图片13.开关功能.PLC = new uint[] {
((uint)(0u))};
this.图片13.开关功能.地址 = new string[] {
"U90"};
this.图片13.开关功能.开关 = new PCHMI.FTYPE.ButtonType[] {
PCHMI.FTYPE.ButtonType.字写入};
this.图片13.开关功能.扩展 = new string[] {
"0"};
this.图片13.快捷键 = "";
this.图片13.指示灯地址 = "";
this.图片13.指示类型 = PCHMI.图片.DatType.BIT;
this.图片13.操作记录 = "";
this.图片13.显示内容.BkImg = null;
this.图片13.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片13.显示内容.状态文本 = null;
this.图片13.显示内容.默认状态文本ID = ((uint)(0u));
this.图片13.显示文本 = true;
this.图片13.显示边框 = false;
this.图片13.权限提示文本 = "";
this.图片13.语言 = ((uint)(0u));
this.图片13.边框颜色 = System.Drawing.Color.LightGray;
//
// label22
//
this.label22.AutoSize = true;
this.label22.BackColor = System.Drawing.Color.DimGray;
this.label22.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label22.ForeColor = System.Drawing.Color.White;
this.label22.Location = new System.Drawing.Point(53, 8);
this.label22.Name = "label22";
this.label22.Size = new System.Drawing.Size(112, 14);
this.label22.TabIndex = 6701;
this.label22.Text = "高压喷雾 - 显示";
//
// 图片2
//
this.图片2.BackColor = System.Drawing.Color.White;
this.图片2.Cursor = System.Windows.Forms.Cursors.Default;
this.图片2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片2.HDADDR = "";
this.图片2.Image = global::xin2.Properties.Resources.tt1;
this.图片2.Location = new System.Drawing.Point(16, 5);
this.图片2.Name = "图片2";
this.图片2.PLC = ((uint)(0u));
this.图片2.Size = new System.Drawing.Size(35, 20);
this.图片2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片2.TabIndex = 6703;
this.图片2.TabStop = false;
this.图片2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片2.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片2.Value = ((ulong)(0ul));
interLock3.HDADDR = "";
interLock3.PLC = ((uint)(0u));
interLock3.互锁启用值 = ((uint)(1u));
interLock3.互锁地址 = "";
interLock3.互锁显示图标 = null;
interLock3.互锁显示文本 = "LOCK";
interLock3.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片2.互锁 = interLock3;
this.图片2.安全级别 = ((uint)(0u));
this.图片2.开关功能.PLC = null;
this.图片2.开关功能.地址 = null;
this.图片2.开关功能.开关 = null;
this.图片2.开关功能.扩展 = null;
this.图片2.快捷键 = "";
this.图片2.指示灯地址 = "";
this.图片2.指示类型 = PCHMI.图片.DatType.BIT;
this.图片2.操作记录 = "";
this.图片2.显示内容.BkImg = null;
this.图片2.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片2.显示内容.状态文本 = null;
this.图片2.显示内容.默认状态文本ID = ((uint)(0u));
this.图片2.显示文本 = true;
this.图片2.显示边框 = false;
this.图片2.权限提示文本 = "";
this.图片2.语言 = ((uint)(0u));
this.图片2.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片3
//
this.图片3.BackColor = System.Drawing.Color.White;
this.图片3.Cursor = System.Windows.Forms.Cursors.Default;
this.图片3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片3.HDADDR = "";
this.图片3.Image = global::xin2.Properties.Resources.qq11;
this.图片3.Location = new System.Drawing.Point(4, 0);
this.图片3.Name = "图片3";
this.图片3.PLC = ((uint)(0u));
this.图片3.Size = new System.Drawing.Size(306, 30);
this.图片3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片3.TabIndex = 6702;
this.图片3.TabStop = false;
this.图片3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片3.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片3.Value = ((ulong)(0ul));
interLock4.HDADDR = "";
interLock4.PLC = ((uint)(0u));
interLock4.互锁启用值 = ((uint)(1u));
interLock4.互锁地址 = "";
interLock4.互锁显示图标 = null;
interLock4.互锁显示文本 = "LOCK";
interLock4.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片3.互锁 = interLock4;
this.图片3.安全级别 = ((uint)(0u));
this.图片3.开关功能.PLC = null;
this.图片3.开关功能.地址 = null;
this.图片3.开关功能.开关 = null;
this.图片3.开关功能.扩展 = null;
this.图片3.快捷键 = "";
this.图片3.指示灯地址 = "";
this.图片3.指示类型 = PCHMI.图片.DatType.BIT;
this.图片3.操作记录 = "";
this.图片3.显示内容.BkImg = null;
this.图片3.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片3.显示内容.状态文本 = null;
this.图片3.显示内容.默认状态文本ID = ((uint)(0u));
this.图片3.显示文本 = true;
this.图片3.显示边框 = false;
this.图片3.权限提示文本 = "";
this.图片3.语言 = ((uint)(0u));
this.图片3.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片8
//
this.图片8.BackColor = System.Drawing.Color.White;
this.图片8.Cursor = System.Windows.Forms.Cursors.Default;
this.图片8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片8.HDADDR = "";
this.图片8.Image = global::xin2.Properties.Resources.tt1;
this.图片8.Location = new System.Drawing.Point(16, 5);
this.图片8.Name = "图片8";
this.图片8.PLC = ((uint)(0u));
this.图片8.Size = new System.Drawing.Size(35, 20);
this.图片8.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片8.TabIndex = 6699;
this.图片8.TabStop = false;
this.图片8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片8.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片8.Value = ((ulong)(0ul));
interLock5.HDADDR = "";
interLock5.PLC = ((uint)(0u));
interLock5.互锁启用值 = ((uint)(1u));
interLock5.互锁地址 = "";
interLock5.互锁显示图标 = null;
interLock5.互锁显示文本 = "LOCK";
interLock5.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片8.互锁 = interLock5;
this.图片8.安全级别 = ((uint)(0u));
this.图片8.开关功能.PLC = null;
this.图片8.开关功能.地址 = null;
this.图片8.开关功能.开关 = null;
this.图片8.开关功能.扩展 = null;
this.图片8.快捷键 = "";
this.图片8.指示灯地址 = "";
this.图片8.指示类型 = PCHMI.图片.DatType.BIT;
this.图片8.操作记录 = "";
this.图片8.显示内容.BkImg = null;
this.图片8.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片8.显示内容.状态文本 = null;
this.图片8.显示内容.默认状态文本ID = ((uint)(0u));
this.图片8.显示文本 = true;
this.图片8.显示边框 = false;
this.图片8.权限提示文本 = "";
this.图片8.语言 = ((uint)(0u));
this.图片8.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片5
//
this.图片5.BackColor = System.Drawing.Color.White;
this.图片5.Cursor = System.Windows.Forms.Cursors.Default;
this.图片5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片5.HDADDR = "";
this.图片5.Image = global::xin2.Properties.Resources.tt1;
this.图片5.Location = new System.Drawing.Point(16, 5);
this.图片5.Name = "图片5";
this.图片5.PLC = ((uint)(0u));
this.图片5.Size = new System.Drawing.Size(35, 20);
this.图片5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片5.TabIndex = 6698;
this.图片5.TabStop = false;
this.图片5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片5.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片5.Value = ((ulong)(0ul));
interLock6.HDADDR = "";
interLock6.PLC = ((uint)(0u));
interLock6.互锁启用值 = ((uint)(1u));
interLock6.互锁地址 = "";
interLock6.互锁显示图标 = null;
interLock6.互锁显示文本 = "LOCK";
interLock6.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片5.互锁 = interLock6;
this.图片5.安全级别 = ((uint)(0u));
this.图片5.开关功能.PLC = null;
this.图片5.开关功能.地址 = null;
this.图片5.开关功能.开关 = null;
this.图片5.开关功能.扩展 = null;
this.图片5.快捷键 = "";
this.图片5.指示灯地址 = "";
this.图片5.指示类型 = PCHMI.图片.DatType.BIT;
this.图片5.操作记录 = "";
this.图片5.显示内容.BkImg = null;
this.图片5.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片5.显示内容.状态文本 = null;
this.图片5.显示内容.默认状态文本ID = ((uint)(0u));
this.图片5.显示文本 = true;
this.图片5.显示边框 = false;
this.图片5.权限提示文本 = "";
this.图片5.语言 = ((uint)(0u));
this.图片5.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片6
//
this.图片6.BackColor = System.Drawing.Color.White;
this.图片6.Cursor = System.Windows.Forms.Cursors.Default;
this.图片6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片6.HDADDR = "";
this.图片6.Image = global::xin2.Properties.Resources.tt1;
this.图片6.Location = new System.Drawing.Point(16, 5);
this.图片6.Name = "图片6";
this.图片6.PLC = ((uint)(0u));
this.图片6.Size = new System.Drawing.Size(35, 20);
this.图片6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片6.TabIndex = 6697;
this.图片6.TabStop = false;
this.图片6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片6.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片6.Value = ((ulong)(0ul));
interLock7.HDADDR = "";
interLock7.PLC = ((uint)(0u));
interLock7.互锁启用值 = ((uint)(1u));
interLock7.互锁地址 = "";
interLock7.互锁显示图标 = null;
interLock7.互锁显示文本 = "LOCK";
interLock7.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片6.互锁 = interLock7;
this.图片6.安全级别 = ((uint)(0u));
this.图片6.开关功能.PLC = null;
this.图片6.开关功能.地址 = null;
this.图片6.开关功能.开关 = null;
this.图片6.开关功能.扩展 = null;
this.图片6.快捷键 = "";
this.图片6.指示灯地址 = "";
this.图片6.指示类型 = PCHMI.图片.DatType.BIT;
this.图片6.操作记录 = "";
this.图片6.显示内容.BkImg = null;
this.图片6.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片6.显示内容.状态文本 = null;
this.图片6.显示内容.默认状态文本ID = ((uint)(0u));
this.图片6.显示文本 = true;
this.图片6.显示边框 = false;
this.图片6.权限提示文本 = "";
this.图片6.语言 = ((uint)(0u));
this.图片6.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片11
//
this.图片11.BackColor = System.Drawing.Color.White;
this.图片11.Cursor = System.Windows.Forms.Cursors.Default;
this.图片11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片11.HDADDR = "";
this.图片11.Image = global::xin2.Properties.Resources.tt1;
this.图片11.Location = new System.Drawing.Point(16, 5);
this.图片11.Name = "图片11";
this.图片11.PLC = ((uint)(0u));
this.图片11.Size = new System.Drawing.Size(35, 20);
this.图片11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片11.TabIndex = 6696;
this.图片11.TabStop = false;
this.图片11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片11.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片11.Value = ((ulong)(0ul));
interLock8.HDADDR = "";
interLock8.PLC = ((uint)(0u));
interLock8.互锁启用值 = ((uint)(1u));
interLock8.互锁地址 = "";
interLock8.互锁显示图标 = null;
interLock8.互锁显示文本 = "LOCK";
interLock8.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片11.互锁 = interLock8;
this.图片11.安全级别 = ((uint)(0u));
this.图片11.开关功能.PLC = null;
this.图片11.开关功能.地址 = null;
this.图片11.开关功能.开关 = null;
this.图片11.开关功能.扩展 = null;
this.图片11.快捷键 = "";
this.图片11.指示灯地址 = "";
this.图片11.指示类型 = PCHMI.图片.DatType.BIT;
this.图片11.操作记录 = "";
this.图片11.显示内容.BkImg = null;
this.图片11.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片11.显示内容.状态文本 = null;
this.图片11.显示内容.默认状态文本ID = ((uint)(0u));
this.图片11.显示文本 = true;
this.图片11.显示边框 = false;
this.图片11.权限提示文本 = "";
this.图片11.语言 = ((uint)(0u));
this.图片11.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片9
//
this.图片9.BackColor = System.Drawing.Color.White;
this.图片9.Cursor = System.Windows.Forms.Cursors.Default;
this.图片9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片9.HDADDR = "";
this.图片9.Image = global::xin2.Properties.Resources.tt1;
this.图片9.Location = new System.Drawing.Point(16, 5);
this.图片9.Name = "图片9";
this.图片9.PLC = ((uint)(0u));
this.图片9.Size = new System.Drawing.Size(35, 20);
this.图片9.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片9.TabIndex = 6695;
this.图片9.TabStop = false;
this.图片9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片9.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片9.Value = ((ulong)(0ul));
interLock9.HDADDR = "";
interLock9.PLC = ((uint)(0u));
interLock9.互锁启用值 = ((uint)(1u));
interLock9.互锁地址 = "";
interLock9.互锁显示图标 = null;
interLock9.互锁显示文本 = "LOCK";
interLock9.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片9.互锁 = interLock9;
this.图片9.安全级别 = ((uint)(0u));
this.图片9.开关功能.PLC = null;
this.图片9.开关功能.地址 = null;
this.图片9.开关功能.开关 = null;
this.图片9.开关功能.扩展 = null;
this.图片9.快捷键 = "";
this.图片9.指示灯地址 = "";
this.图片9.指示类型 = PCHMI.图片.DatType.BIT;
this.图片9.操作记录 = "";
this.图片9.显示内容.BkImg = null;
this.图片9.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片9.显示内容.状态文本 = null;
this.图片9.显示内容.默认状态文本ID = ((uint)(0u));
this.图片9.显示文本 = true;
this.图片9.显示边框 = false;
this.图片9.权限提示文本 = "";
this.图片9.语言 = ((uint)(0u));
this.图片9.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片4
//
this.图片4.BackColor = System.Drawing.Color.White;
this.图片4.Cursor = System.Windows.Forms.Cursors.Default;
this.图片4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片4.HDADDR = "";
this.图片4.Image = global::xin2.Properties.Resources.tt1;
this.图片4.Location = new System.Drawing.Point(16, 5);
this.图片4.Name = "图片4";
this.图片4.PLC = ((uint)(0u));
this.图片4.Size = new System.Drawing.Size(35, 20);
this.图片4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片4.TabIndex = 6694;
this.图片4.TabStop = false;
this.图片4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片4.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片4.Value = ((ulong)(0ul));
interLock10.HDADDR = "";
interLock10.PLC = ((uint)(0u));
interLock10.互锁启用值 = ((uint)(1u));
interLock10.互锁地址 = "";
interLock10.互锁显示图标 = null;
interLock10.互锁显示文本 = "LOCK";
interLock10.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片4.互锁 = interLock10;
this.图片4.安全级别 = ((uint)(0u));
this.图片4.开关功能.PLC = null;
this.图片4.开关功能.地址 = null;
this.图片4.开关功能.开关 = null;
this.图片4.开关功能.扩展 = null;
this.图片4.快捷键 = "";
this.图片4.指示灯地址 = "";
this.图片4.指示类型 = PCHMI.图片.DatType.BIT;
this.图片4.操作记录 = "";
this.图片4.显示内容.BkImg = null;
this.图片4.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片4.显示内容.状态文本 = null;
this.图片4.显示内容.默认状态文本ID = ((uint)(0u));
this.图片4.显示文本 = true;
this.图片4.显示边框 = false;
this.图片4.权限提示文本 = "";
this.图片4.语言 = ((uint)(0u));
this.图片4.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片38
//
this.图片38.BackColor = System.Drawing.Color.White;
this.图片38.Cursor = System.Windows.Forms.Cursors.Hand;
this.图片38.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片38.HDADDR = "";
this.图片38.Image = global::xin2.Properties.Resources._1221;
this.图片38.Location = new System.Drawing.Point(784, 0);
this.图片38.Name = "图片38";
this.图片38.PLC = ((uint)(0u));
this.图片38.Size = new System.Drawing.Size(150, 30);
this.图片38.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片38.TabIndex = 6725;
this.图片38.TabStop = false;
this.图片38.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片38.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片38.Value = ((ulong)(0ul));
interLock11.HDADDR = "";
interLock11.PLC = ((uint)(0u));
interLock11.互锁启用值 = ((uint)(1u));
interLock11.互锁地址 = "";
interLock11.互锁显示图标 = null;
interLock11.互锁显示文本 = "LOCK";
interLock11.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片38.互锁 = interLock11;
this.图片38.安全级别 = ((uint)(0u));
this.图片38.开关功能.PLC = new uint[] {
((uint)(0u))};
this.图片38.开关功能.地址 = new string[] {
"U90"};
this.图片38.开关功能.开关 = new PCHMI.FTYPE.ButtonType[] {
PCHMI.FTYPE.ButtonType.字写入};
this.图片38.开关功能.扩展 = new string[] {
"83"};
this.图片38.快捷键 = "";
this.图片38.指示灯地址 = "";
this.图片38.指示类型 = PCHMI.图片.DatType.BIT;
this.图片38.操作记录 = "";
this.图片38.显示内容.BkImg = null;
this.图片38.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片38.显示内容.状态文本 = null;
this.图片38.显示内容.默认状态文本ID = ((uint)(0u));
this.图片38.显示文本 = true;
this.图片38.显示边框 = false;
this.图片38.权限提示文本 = "";
this.图片38.语言 = ((uint)(0u));
this.图片38.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片37
//
this.图片37.BackColor = System.Drawing.Color.White;
this.图片37.Cursor = System.Windows.Forms.Cursors.Hand;
this.图片37.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片37.HDADDR = "";
this.图片37.Image = global::xin2.Properties.Resources._1221;
this.图片37.Location = new System.Drawing.Point(628, 0);
this.图片37.Name = "图片37";
this.图片37.PLC = ((uint)(0u));
this.图片37.Size = new System.Drawing.Size(150, 30);
this.图片37.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片37.TabIndex = 6724;
this.图片37.TabStop = false;
this.图片37.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片37.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片37.Value = ((ulong)(0ul));
interLock12.HDADDR = "";
interLock12.PLC = ((uint)(0u));
interLock12.互锁启用值 = ((uint)(1u));
interLock12.互锁地址 = "";
interLock12.互锁显示图标 = null;
interLock12.互锁显示文本 = "LOCK";
interLock12.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片37.互锁 = interLock12;
this.图片37.安全级别 = ((uint)(0u));
this.图片37.开关功能.PLC = new uint[] {
((uint)(0u))};
this.图片37.开关功能.地址 = new string[] {
"U90"};
this.图片37.开关功能.开关 = new PCHMI.FTYPE.ButtonType[] {
PCHMI.FTYPE.ButtonType.字写入};
this.图片37.开关功能.扩展 = new string[] {
"82"};
this.图片37.快捷键 = "";
this.图片37.指示灯地址 = "";
this.图片37.指示类型 = PCHMI.图片.DatType.BIT;
this.图片37.操作记录 = "";
this.图片37.显示内容.BkImg = null;
this.图片37.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片37.显示内容.状态文本 = null;
this.图片37.显示内容.默认状态文本ID = ((uint)(0u));
this.图片37.显示文本 = true;
this.图片37.显示边框 = false;
this.图片37.权限提示文本 = "";
this.图片37.语言 = ((uint)(0u));
this.图片37.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片7
//
this.图片7.BackColor = System.Drawing.Color.White;
this.图片7.Cursor = System.Windows.Forms.Cursors.Hand;
this.图片7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片7.HDADDR = "";
this.图片7.Image = global::xin2.Properties.Resources._1221;
this.图片7.Location = new System.Drawing.Point(472, 0);
this.图片7.Name = "图片7";
this.图片7.PLC = ((uint)(0u));
this.图片7.Size = new System.Drawing.Size(150, 30);
this.图片7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片7.TabIndex = 6723;
this.图片7.TabStop = false;
this.图片7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片7.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片7.Value = ((ulong)(0ul));
interLock13.HDADDR = "";
interLock13.PLC = ((uint)(0u));
interLock13.互锁启用值 = ((uint)(1u));
interLock13.互锁地址 = "";
interLock13.互锁显示图标 = null;
interLock13.互锁显示文本 = "LOCK";
interLock13.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片7.互锁 = interLock13;
this.图片7.安全级别 = ((uint)(0u));
this.图片7.开关功能.PLC = new uint[] {
((uint)(0u))};
this.图片7.开关功能.地址 = new string[] {
"U90"};
this.图片7.开关功能.开关 = new PCHMI.FTYPE.ButtonType[] {
PCHMI.FTYPE.ButtonType.字写入};
this.图片7.开关功能.扩展 = new string[] {
"81"};
this.图片7.快捷键 = "";
this.图片7.指示灯地址 = "";
this.图片7.指示类型 = PCHMI.图片.DatType.BIT;
this.图片7.操作记录 = "";
this.图片7.显示内容.BkImg = null;
this.图片7.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片7.显示内容.状态文本 = null;
this.图片7.显示内容.默认状态文本ID = ((uint)(0u));
this.图片7.显示文本 = true;
this.图片7.显示边框 = false;
this.图片7.权限提示文本 = "";
this.图片7.语言 = ((uint)(0u));
this.图片7.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片15
//
this.图片15.BackColor = System.Drawing.Color.White;
this.图片15.Cursor = System.Windows.Forms.Cursors.Hand;
this.图片15.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片15.HDADDR = "";
this.图片15.Image = global::xin2.Properties.Resources._1221;
this.图片15.Location = new System.Drawing.Point(316, 0);
this.图片15.Name = "图片15";
this.图片15.PLC = ((uint)(0u));
this.图片15.Size = new System.Drawing.Size(150, 30);
this.图片15.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片15.TabIndex = 6722;
this.图片15.TabStop = false;
this.图片15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片15.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片15.Value = ((ulong)(0ul));
interLock14.HDADDR = "";
interLock14.PLC = ((uint)(0u));
interLock14.互锁启用值 = ((uint)(1u));
interLock14.互锁地址 = "";
interLock14.互锁显示图标 = null;
interLock14.互锁显示文本 = "LOCK";
interLock14.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片15.互锁 = interLock14;
this.图片15.安全级别 = ((uint)(0u));
this.图片15.开关功能.PLC = new uint[] {
((uint)(0u))};
this.图片15.开关功能.地址 = new string[] {
"U90"};
this.图片15.开关功能.开关 = new PCHMI.FTYPE.ButtonType[] {
PCHMI.FTYPE.ButtonType.字写入};
this.图片15.开关功能.扩展 = new string[] {
"80"};
this.图片15.快捷键 = "";
this.图片15.指示灯地址 = "";
this.图片15.指示类型 = PCHMI.图片.DatType.BIT;
this.图片15.操作记录 = "";
this.图片15.显示内容.BkImg = null;
this.图片15.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片15.显示内容.状态文本 = null;
this.图片15.显示内容.默认状态文本ID = ((uint)(0u));
this.图片15.显示文本 = true;
this.图片15.显示边框 = false;
this.图片15.权限提示文本 = "";
this.图片15.语言 = ((uint)(0u));
this.图片15.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片109
//
this.图片109.BackColor = System.Drawing.Color.LightGray;
this.图片109.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片109.HDADDR = "";
this.图片109.Location = new System.Drawing.Point(0, 0);
this.图片109.Name = "图片109";
this.图片109.PLC = ((uint)(0u));
this.图片109.Size = new System.Drawing.Size(2218, 30);
this.图片109.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片109.TabIndex = 6700;
this.图片109.TabStop = false;
this.图片109.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片109.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片109.Value = ((ulong)(0ul));
interLock15.HDADDR = "";
interLock15.PLC = ((uint)(0u));
interLock15.互锁启用值 = ((uint)(1u));
interLock15.互锁地址 = "";
interLock15.互锁显示图标 = null;
interLock15.互锁显示文本 = "LOCK";
interLock15.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片109.互锁 = interLock15;
this.图片109.安全级别 = ((uint)(0u));
this.图片109.开关功能.PLC = null;
this.图片109.开关功能.地址 = null;
this.图片109.开关功能.开关 = null;
this.图片109.开关功能.扩展 = null;
this.图片109.快捷键 = "";
this.图片109.指示灯地址 = "";
this.图片109.指示类型 = PCHMI.图片.DatType.BIT;
this.图片109.操作记录 = "";
this.图片109.显示内容.BkImg = null;
this.图片109.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片109.显示内容.状态文本 = null;
this.图片109.显示内容.默认状态文本ID = ((uint)(0u));
this.图片109.显示文本 = true;
this.图片109.显示边框 = false;
this.图片109.权限提示文本 = "";
this.图片109.语言 = ((uint)(0u));
this.图片109.边框颜色 = System.Drawing.Color.Gainsboro;
//
// label67
//
this.label67.AutoSize = true;
this.label67.BackColor = System.Drawing.Color.White;
this.label67.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label67.ForeColor = System.Drawing.Color.Black;
this.label67.Location = new System.Drawing.Point(140, 49);
this.label67.Name = "label67";
this.label67.Size = new System.Drawing.Size(35, 14);
this.label67.TabIndex = 6709;
this.label67.Text = "名称";
//
// 图片61
//
this.图片61.BackColor = System.Drawing.Color.Silver;
this.图片61.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.图片61.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片61.HDADDR = "DB2002.4.2";
this.图片61.Location = new System.Drawing.Point(461, 424);
this.图片61.Name = "图片61";
this.图片61.PLC = ((uint)(5u));
this.图片61.Size = new System.Drawing.Size(15, 15);
this.图片61.TabIndex = 6995;
this.图片61.TabStop = false;
this.图片61.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片61.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片61.Value = ((ulong)(0ul));
interLock16.HDADDR = "";
interLock16.PLC = ((uint)(0u));
interLock16.互锁启用值 = ((uint)(1u));
interLock16.互锁地址 = "";
interLock16.互锁显示图标 = null;
interLock16.互锁显示文本 = "LOCK";
interLock16.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片61.互锁 = interLock16;
this.图片61.安全级别 = ((uint)(0u));
this.图片61.开关功能.PLC = null;
this.图片61.开关功能.地址 = null;
this.图片61.开关功能.开关 = null;
this.图片61.开关功能.扩展 = null;
this.图片61.快捷键 = "";
this.图片61.指示灯地址 = "DB2002.4.2";
this.图片61.指示类型 = PCHMI.图片.DatType.BIT;
this.图片61.操作记录 = "";
this.图片61.显示内容.BkImg = null;
this.图片61.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
sT_SW_IF1.BkColor = System.Drawing.Color.Silver;
sT_SW_IF1.Img = null;
sT_SW_IF1.MaxVal = ((ulong)(0ul));
sT_SW_IF1.MinVal = ((ulong)(0ul));
sT_SW_IF1.Txt0 = "";
sT_SW_IF1.Txt1 = "";
sT_SW_IF1.Txt2 = "";
sT_SW_IF1.Txt3 = "";
sT_SW_IF1.Txt4 = "";
sT_SW_IF1.Txt5 = "";
sT_SW_IF1.Txt6 = "";
sT_SW_IF1.Txt7 = "";
sT_SW_IF1.TxtColor = System.Drawing.Color.Black;
sT_SW_IF1.TxtNumber = "";
sT_SW_IF2.BkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
sT_SW_IF2.Img = null;
sT_SW_IF2.MaxVal = ((ulong)(0ul));
sT_SW_IF2.MinVal = ((ulong)(0ul));
sT_SW_IF2.Txt0 = "";
sT_SW_IF2.Txt1 = "";
sT_SW_IF2.Txt2 = "";
sT_SW_IF2.Txt3 = "";
sT_SW_IF2.Txt4 = "";
sT_SW_IF2.Txt5 = "";
sT_SW_IF2.Txt6 = "";
sT_SW_IF2.Txt7 = "";
sT_SW_IF2.TxtColor = System.Drawing.Color.Black;
sT_SW_IF2.TxtNumber = "";
this.图片61.显示内容.状态文本 = new PCHMI.ST_SW_IF[] {
sT_SW_IF1,
sT_SW_IF2};
this.图片61.显示内容.默认状态文本ID = ((uint)(0u));
this.图片61.显示文本 = false;
this.图片61.显示边框 = false;
this.图片61.权限提示文本 = "";
this.图片61.语言 = ((uint)(0u));
this.图片61.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片62
//
this.图片62.BackColor = System.Drawing.Color.Silver;
this.图片62.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.图片62.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片62.HDADDR = "DB2002.3.5";
this.图片62.Location = new System.Drawing.Point(461, 397);
this.图片62.Name = "图片62";
this.图片62.PLC = ((uint)(5u));
this.图片62.Size = new System.Drawing.Size(15, 15);
this.图片62.TabIndex = 6994;
this.图片62.TabStop = false;
this.图片62.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片62.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片62.Value = ((ulong)(0ul));
interLock17.HDADDR = "";
interLock17.PLC = ((uint)(0u));
interLock17.互锁启用值 = ((uint)(1u));
interLock17.互锁地址 = "";
interLock17.互锁显示图标 = null;
interLock17.互锁显示文本 = "LOCK";
interLock17.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片62.互锁 = interLock17;
this.图片62.安全级别 = ((uint)(0u));
this.图片62.开关功能.PLC = null;
this.图片62.开关功能.地址 = null;
this.图片62.开关功能.开关 = null;
this.图片62.开关功能.扩展 = null;
this.图片62.快捷键 = "";
this.图片62.指示灯地址 = "DB2002.3.5";
this.图片62.指示类型 = PCHMI.图片.DatType.BIT;
this.图片62.操作记录 = "";
this.图片62.显示内容.BkImg = null;
this.图片62.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
sT_SW_IF3.BkColor = System.Drawing.Color.Silver;
sT_SW_IF3.Img = null;
sT_SW_IF3.MaxVal = ((ulong)(0ul));
sT_SW_IF3.MinVal = ((ulong)(0ul));
sT_SW_IF3.Txt0 = "";
sT_SW_IF3.Txt1 = "";
sT_SW_IF3.Txt2 = "";
sT_SW_IF3.Txt3 = "";
sT_SW_IF3.Txt4 = "";
sT_SW_IF3.Txt5 = "";
sT_SW_IF3.Txt6 = "";
sT_SW_IF3.Txt7 = "";
sT_SW_IF3.TxtColor = System.Drawing.Color.Black;
sT_SW_IF3.TxtNumber = "";
sT_SW_IF4.BkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
sT_SW_IF4.Img = null;
sT_SW_IF4.MaxVal = ((ulong)(0ul));
sT_SW_IF4.MinVal = ((ulong)(0ul));
sT_SW_IF4.Txt0 = "";
sT_SW_IF4.Txt1 = "";
sT_SW_IF4.Txt2 = "";
sT_SW_IF4.Txt3 = "";
sT_SW_IF4.Txt4 = "";
sT_SW_IF4.Txt5 = "";
sT_SW_IF4.Txt6 = "";
sT_SW_IF4.Txt7 = "";
sT_SW_IF4.TxtColor = System.Drawing.Color.Black;
sT_SW_IF4.TxtNumber = "";
this.图片62.显示内容.状态文本 = new PCHMI.ST_SW_IF[] {
sT_SW_IF3,
sT_SW_IF4};
this.图片62.显示内容.默认状态文本ID = ((uint)(0u));
this.图片62.显示文本 = false;
this.图片62.显示边框 = false;
this.图片62.权限提示文本 = "";
this.图片62.语言 = ((uint)(0u));
this.图片62.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片26
//
this.图片26.BackColor = System.Drawing.Color.Silver;
this.图片26.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.图片26.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片26.HDADDR = "DB2002.1.6";
this.图片26.Location = new System.Drawing.Point(461, 345);
this.图片26.Name = "图片26";
this.图片26.PLC = ((uint)(5u));
this.图片26.Size = new System.Drawing.Size(15, 15);
this.图片26.TabIndex = 6993;
this.图片26.TabStop = false;
this.图片26.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片26.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片26.Value = ((ulong)(0ul));
interLock18.HDADDR = "";
interLock18.PLC = ((uint)(0u));
interLock18.互锁启用值 = ((uint)(1u));
interLock18.互锁地址 = "";
interLock18.互锁显示图标 = null;
interLock18.互锁显示文本 = "LOCK";
interLock18.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片26.互锁 = interLock18;
this.图片26.安全级别 = ((uint)(0u));
this.图片26.开关功能.PLC = null;
this.图片26.开关功能.地址 = null;
this.图片26.开关功能.开关 = null;
this.图片26.开关功能.扩展 = null;
this.图片26.快捷键 = "";
this.图片26.指示灯地址 = "DB2002.1.6";
this.图片26.指示类型 = PCHMI.图片.DatType.BIT;
this.图片26.操作记录 = "";
this.图片26.显示内容.BkImg = null;
this.图片26.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
sT_SW_IF5.BkColor = System.Drawing.Color.Silver;
sT_SW_IF5.Img = null;
sT_SW_IF5.MaxVal = ((ulong)(0ul));
sT_SW_IF5.MinVal = ((ulong)(0ul));
sT_SW_IF5.Txt0 = "";
sT_SW_IF5.Txt1 = "";
sT_SW_IF5.Txt2 = "";
sT_SW_IF5.Txt3 = "";
sT_SW_IF5.Txt4 = "";
sT_SW_IF5.Txt5 = "";
sT_SW_IF5.Txt6 = "";
sT_SW_IF5.Txt7 = "";
sT_SW_IF5.TxtColor = System.Drawing.Color.Black;
sT_SW_IF5.TxtNumber = "";
sT_SW_IF6.BkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
sT_SW_IF6.Img = null;
sT_SW_IF6.MaxVal = ((ulong)(0ul));
sT_SW_IF6.MinVal = ((ulong)(0ul));
sT_SW_IF6.Txt0 = "";
sT_SW_IF6.Txt1 = "";
sT_SW_IF6.Txt2 = "";
sT_SW_IF6.Txt3 = "";
sT_SW_IF6.Txt4 = "";
sT_SW_IF6.Txt5 = "";
sT_SW_IF6.Txt6 = "";
sT_SW_IF6.Txt7 = "";
sT_SW_IF6.TxtColor = System.Drawing.Color.Black;
sT_SW_IF6.TxtNumber = "";
this.图片26.显示内容.状态文本 = new PCHMI.ST_SW_IF[] {
sT_SW_IF5,
sT_SW_IF6};
this.图片26.显示内容.默认状态文本ID = ((uint)(0u));
this.图片26.显示文本 = false;
this.图片26.显示边框 = false;
this.图片26.权限提示文本 = "";
this.图片26.语言 = ((uint)(0u));
this.图片26.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片57
//
this.图片57.BackColor = System.Drawing.Color.Silver;
this.图片57.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.图片57.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片57.HDADDR = "DB2002.1.1";
this.图片57.Location = new System.Drawing.Point(461, 292);
this.图片57.Name = "图片57";
this.图片57.PLC = ((uint)(5u));
this.图片57.Size = new System.Drawing.Size(15, 15);
this.图片57.TabIndex = 6992;
this.图片57.TabStop = false;
this.图片57.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片57.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片57.Value = ((ulong)(0ul));
interLock19.HDADDR = "";
interLock19.PLC = ((uint)(0u));
interLock19.互锁启用值 = ((uint)(1u));
interLock19.互锁地址 = "";
interLock19.互锁显示图标 = null;
interLock19.互锁显示文本 = "LOCK";
interLock19.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片57.互锁 = interLock19;
this.图片57.安全级别 = ((uint)(0u));
this.图片57.开关功能.PLC = null;
this.图片57.开关功能.地址 = null;
this.图片57.开关功能.开关 = null;
this.图片57.开关功能.扩展 = null;
this.图片57.快捷键 = "";
this.图片57.指示灯地址 = "DB2002.1.1";
this.图片57.指示类型 = PCHMI.图片.DatType.BIT;
this.图片57.操作记录 = "";
this.图片57.显示内容.BkImg = null;
this.图片57.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
sT_SW_IF7.BkColor = System.Drawing.Color.Silver;
sT_SW_IF7.Img = null;
sT_SW_IF7.MaxVal = ((ulong)(0ul));
sT_SW_IF7.MinVal = ((ulong)(0ul));
sT_SW_IF7.Txt0 = "";
sT_SW_IF7.Txt1 = "";
sT_SW_IF7.Txt2 = "";
sT_SW_IF7.Txt3 = "";
sT_SW_IF7.Txt4 = "";
sT_SW_IF7.Txt5 = "";
sT_SW_IF7.Txt6 = "";
sT_SW_IF7.Txt7 = "";
sT_SW_IF7.TxtColor = System.Drawing.Color.Black;
sT_SW_IF7.TxtNumber = "";
sT_SW_IF8.BkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
sT_SW_IF8.Img = null;
sT_SW_IF8.MaxVal = ((ulong)(0ul));
sT_SW_IF8.MinVal = ((ulong)(0ul));
sT_SW_IF8.Txt0 = "";
sT_SW_IF8.Txt1 = "";
sT_SW_IF8.Txt2 = "";
sT_SW_IF8.Txt3 = "";
sT_SW_IF8.Txt4 = "";
sT_SW_IF8.Txt5 = "";
sT_SW_IF8.Txt6 = "";
sT_SW_IF8.Txt7 = "";
sT_SW_IF8.TxtColor = System.Drawing.Color.Black;
sT_SW_IF8.TxtNumber = "";
this.图片57.显示内容.状态文本 = new PCHMI.ST_SW_IF[] {
sT_SW_IF7,
sT_SW_IF8};
this.图片57.显示内容.默认状态文本ID = ((uint)(0u));
this.图片57.显示文本 = false;
this.图片57.显示边框 = false;
this.图片57.权限提示文本 = "";
this.图片57.语言 = ((uint)(0u));
this.图片57.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片58
//
this.图片58.BackColor = System.Drawing.Color.Silver;
this.图片58.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.图片58.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片58.HDADDR = "DB2002.0.4";
this.图片58.Location = new System.Drawing.Point(461, 265);
this.图片58.Name = "图片58";
this.图片58.PLC = ((uint)(5u));
this.图片58.Size = new System.Drawing.Size(15, 15);
this.图片58.TabIndex = 6991;
this.图片58.TabStop = false;
this.图片58.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片58.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片58.Value = ((ulong)(0ul));
interLock20.HDADDR = "";
interLock20.PLC = ((uint)(0u));
interLock20.互锁启用值 = ((uint)(1u));
interLock20.互锁地址 = "";
interLock20.互锁显示图标 = null;
interLock20.互锁显示文本 = "LOCK";
interLock20.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片58.互锁 = interLock20;
this.图片58.安全级别 = ((uint)(0u));
this.图片58.开关功能.PLC = null;
this.图片58.开关功能.地址 = null;
this.图片58.开关功能.开关 = null;
this.图片58.开关功能.扩展 = null;
this.图片58.快捷键 = "";
this.图片58.指示灯地址 = "DB2002.0.4";
this.图片58.指示类型 = PCHMI.图片.DatType.BIT;
this.图片58.操作记录 = "";
this.图片58.显示内容.BkImg = null;
this.图片58.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
sT_SW_IF9.BkColor = System.Drawing.Color.Silver;
sT_SW_IF9.Img = null;
sT_SW_IF9.MaxVal = ((ulong)(0ul));
sT_SW_IF9.MinVal = ((ulong)(0ul));
sT_SW_IF9.Txt0 = "";
sT_SW_IF9.Txt1 = "";
sT_SW_IF9.Txt2 = "";
sT_SW_IF9.Txt3 = "";
sT_SW_IF9.Txt4 = "";
sT_SW_IF9.Txt5 = "";
sT_SW_IF9.Txt6 = "";
sT_SW_IF9.Txt7 = "";
sT_SW_IF9.TxtColor = System.Drawing.Color.Black;
sT_SW_IF9.TxtNumber = "";
sT_SW_IF10.BkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
sT_SW_IF10.Img = null;
sT_SW_IF10.MaxVal = ((ulong)(0ul));
sT_SW_IF10.MinVal = ((ulong)(0ul));
sT_SW_IF10.Txt0 = "";
sT_SW_IF10.Txt1 = "";
sT_SW_IF10.Txt2 = "";
sT_SW_IF10.Txt3 = "";
sT_SW_IF10.Txt4 = "";
sT_SW_IF10.Txt5 = "";
sT_SW_IF10.Txt6 = "";
sT_SW_IF10.Txt7 = "";
sT_SW_IF10.TxtColor = System.Drawing.Color.Black;
sT_SW_IF10.TxtNumber = "";
this.图片58.显示内容.状态文本 = new PCHMI.ST_SW_IF[] {
sT_SW_IF9,
sT_SW_IF10};
this.图片58.显示内容.默认状态文本ID = ((uint)(0u));
this.图片58.显示文本 = false;
this.图片58.显示边框 = false;
this.图片58.权限提示文本 = "";
this.图片58.语言 = ((uint)(0u));
this.图片58.边框颜色 = System.Drawing.Color.LightGray;
//
// label17
//
this.label17.AutoSize = true;
this.label17.BackColor = System.Drawing.Color.White;
this.label17.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label17.ForeColor = System.Drawing.Color.Black;
this.label17.Location = new System.Drawing.Point(13, 453);
this.label17.Name = "label17";
this.label17.Size = new System.Drawing.Size(147, 14);
this.label17.TabIndex = 6986;
this.label17.Text = "泄压阀3状态 [开关量]";
//
// 图片49
//
this.图片49.BackColor = System.Drawing.Color.Black;
this.图片49.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片49.HDADDR = "";
this.图片49.Location = new System.Drawing.Point(10, 470);
this.图片49.Name = "图片49";
this.图片49.PLC = ((uint)(0u));
this.图片49.Size = new System.Drawing.Size(612, 2);
this.图片49.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片49.TabIndex = 6985;
this.图片49.TabStop = false;
this.图片49.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片49.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片49.Value = ((ulong)(0ul));
interLock21.HDADDR = "";
interLock21.PLC = ((uint)(0u));
interLock21.互锁启用值 = ((uint)(1u));
interLock21.互锁地址 = "";
interLock21.互锁显示图标 = null;
interLock21.互锁显示文本 = "LOCK";
interLock21.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片49.互锁 = interLock21;
this.图片49.安全级别 = ((uint)(0u));
this.图片49.开关功能.PLC = null;
this.图片49.开关功能.地址 = null;
this.图片49.开关功能.开关 = null;
this.图片49.开关功能.扩展 = null;
this.图片49.快捷键 = "";
this.图片49.指示灯地址 = "";
this.图片49.指示类型 = PCHMI.图片.DatType.BIT;
this.图片49.操作记录 = "";
this.图片49.显示内容.BkImg = null;
this.图片49.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片49.显示内容.状态文本 = null;
this.图片49.显示内容.默认状态文本ID = ((uint)(0u));
this.图片49.显示文本 = true;
this.图片49.显示边框 = false;
this.图片49.权限提示文本 = "";
this.图片49.语言 = ((uint)(0u));
this.图片49.边框颜色 = System.Drawing.Color.Gainsboro;
//
// label18
//
this.label18.AutoSize = true;
this.label18.BackColor = System.Drawing.Color.White;
this.label18.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label18.ForeColor = System.Drawing.Color.Black;
this.label18.Location = new System.Drawing.Point(13, 426);
this.label18.Name = "label18";
this.label18.Size = new System.Drawing.Size(147, 14);
this.label18.TabIndex = 6984;
this.label18.Text = "泄压阀2状态 [开关量]";
//
// 图片51
//
this.图片51.BackColor = System.Drawing.Color.Black;
this.图片51.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片51.HDADDR = "";
this.图片51.Location = new System.Drawing.Point(10, 443);
this.图片51.Name = "图片51";
this.图片51.PLC = ((uint)(0u));
this.图片51.Size = new System.Drawing.Size(612, 2);
this.图片51.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片51.TabIndex = 6983;
this.图片51.TabStop = false;
this.图片51.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片51.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片51.Value = ((ulong)(0ul));
interLock22.HDADDR = "";
interLock22.PLC = ((uint)(0u));
interLock22.互锁启用值 = ((uint)(1u));
interLock22.互锁地址 = "";
interLock22.互锁显示图标 = null;
interLock22.互锁显示文本 = "LOCK";
interLock22.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片51.互锁 = interLock22;
this.图片51.安全级别 = ((uint)(0u));
this.图片51.开关功能.PLC = null;
this.图片51.开关功能.地址 = null;
this.图片51.开关功能.开关 = null;
this.图片51.开关功能.扩展 = null;
this.图片51.快捷键 = "";
this.图片51.指示灯地址 = "";
this.图片51.指示类型 = PCHMI.图片.DatType.BIT;
this.图片51.操作记录 = "";
this.图片51.显示内容.BkImg = null;
this.图片51.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片51.显示内容.状态文本 = null;
this.图片51.显示内容.默认状态文本ID = ((uint)(0u));
this.图片51.显示文本 = true;
this.图片51.显示边框 = false;
this.图片51.权限提示文本 = "";
this.图片51.语言 = ((uint)(0u));
this.图片51.边框颜色 = System.Drawing.Color.Gainsboro;
//
// label3
//
this.label3.AutoSize = true;
this.label3.BackColor = System.Drawing.Color.White;
this.label3.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label3.ForeColor = System.Drawing.Color.Black;
this.label3.Location = new System.Drawing.Point(13, 399);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(147, 14);
this.label3.TabIndex = 6982;
this.label3.Text = "泄压阀1状态 [开关量]";
//
// 图片47
//
this.图片47.BackColor = System.Drawing.Color.Black;
this.图片47.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片47.HDADDR = "";
this.图片47.Location = new System.Drawing.Point(10, 416);
this.图片47.Name = "图片47";
this.图片47.PLC = ((uint)(0u));
this.图片47.Size = new System.Drawing.Size(612, 2);
this.图片47.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片47.TabIndex = 6981;
this.图片47.TabStop = false;
this.图片47.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片47.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片47.Value = ((ulong)(0ul));
interLock23.HDADDR = "";
interLock23.PLC = ((uint)(0u));
interLock23.互锁启用值 = ((uint)(1u));
interLock23.互锁地址 = "";
interLock23.互锁显示图标 = null;
interLock23.互锁显示文本 = "LOCK";
interLock23.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片47.互锁 = interLock23;
this.图片47.安全级别 = ((uint)(0u));
this.图片47.开关功能.PLC = null;
this.图片47.开关功能.地址 = null;
this.图片47.开关功能.开关 = null;
this.图片47.开关功能.扩展 = null;
this.图片47.快捷键 = "";
this.图片47.指示灯地址 = "";
this.图片47.指示类型 = PCHMI.图片.DatType.BIT;
this.图片47.操作记录 = "";
this.图片47.显示内容.BkImg = null;
this.图片47.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片47.显示内容.状态文本 = null;
this.图片47.显示内容.默认状态文本ID = ((uint)(0u));
this.图片47.显示文本 = true;
this.图片47.显示边框 = false;
this.图片47.权限提示文本 = "";
this.图片47.语言 = ((uint)(0u));
this.图片47.边框颜色 = System.Drawing.Color.Gainsboro;
//
// label4
//
this.label4.AutoSize = true;
this.label4.BackColor = System.Drawing.Color.White;
this.label4.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label4.ForeColor = System.Drawing.Color.Black;
this.label4.Location = new System.Drawing.Point(13, 372);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(161, 14);
this.label4.TabIndex = 6980;
this.label4.Text = "C区北侧泵状态 [开关量]";
//
// 图片45
//
this.图片45.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
this.图片45.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片45.HDADDR = "";
this.图片45.Location = new System.Drawing.Point(10, 389);
this.图片45.Name = "图片45";
this.图片45.PLC = ((uint)(0u));
this.图片45.Size = new System.Drawing.Size(612, 2);
this.图片45.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片45.TabIndex = 6979;
this.图片45.TabStop = false;
this.图片45.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片45.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片45.Value = ((ulong)(0ul));
interLock24.HDADDR = "";
interLock24.PLC = ((uint)(0u));
interLock24.互锁启用值 = ((uint)(1u));
interLock24.互锁地址 = "";
interLock24.互锁显示图标 = null;
interLock24.互锁显示文本 = "LOCK";
interLock24.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片45.互锁 = interLock24;
this.图片45.安全级别 = ((uint)(0u));
this.图片45.开关功能.PLC = null;
this.图片45.开关功能.地址 = null;
this.图片45.开关功能.开关 = null;
this.图片45.开关功能.扩展 = null;
this.图片45.快捷键 = "";
this.图片45.指示灯地址 = "";
this.图片45.指示类型 = PCHMI.图片.DatType.BIT;
this.图片45.操作记录 = "";
this.图片45.显示内容.BkImg = null;
this.图片45.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片45.显示内容.状态文本 = null;
this.图片45.显示内容.默认状态文本ID = ((uint)(0u));
this.图片45.显示文本 = true;
this.图片45.显示边框 = false;
this.图片45.权限提示文本 = "";
this.图片45.语言 = ((uint)(0u));
this.图片45.边框颜色 = System.Drawing.Color.Gainsboro;
//
// label13
//
this.label13.AutoSize = true;
this.label13.BackColor = System.Drawing.Color.White;
this.label13.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label13.ForeColor = System.Drawing.Color.Black;
this.label13.Location = new System.Drawing.Point(13, 347);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(161, 14);
this.label13.TabIndex = 6978;
this.label13.Text = "C区南侧泵状态 [开关量]";
//
// 图片42
//
this.图片42.BackColor = System.Drawing.Color.Black;
this.图片42.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片42.HDADDR = "";
this.图片42.Location = new System.Drawing.Point(10, 364);
this.图片42.Name = "图片42";
this.图片42.PLC = ((uint)(0u));
this.图片42.Size = new System.Drawing.Size(612, 2);
this.图片42.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片42.TabIndex = 6977;
this.图片42.TabStop = false;
this.图片42.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片42.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片42.Value = ((ulong)(0ul));
interLock25.HDADDR = "";
interLock25.PLC = ((uint)(0u));
interLock25.互锁启用值 = ((uint)(1u));
interLock25.互锁地址 = "";
interLock25.互锁显示图标 = null;
interLock25.互锁显示文本 = "LOCK";
interLock25.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片42.互锁 = interLock25;
this.图片42.安全级别 = ((uint)(0u));
this.图片42.开关功能.PLC = null;
this.图片42.开关功能.地址 = null;
this.图片42.开关功能.开关 = null;
this.图片42.开关功能.扩展 = null;
this.图片42.快捷键 = "";
this.图片42.指示灯地址 = "";
this.图片42.指示类型 = PCHMI.图片.DatType.BIT;
this.图片42.操作记录 = "";
this.图片42.显示内容.BkImg = null;
this.图片42.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片42.显示内容.状态文本 = null;
this.图片42.显示内容.默认状态文本ID = ((uint)(0u));
this.图片42.显示文本 = true;
this.图片42.显示边框 = false;
this.图片42.权限提示文本 = "";
this.图片42.语言 = ((uint)(0u));
this.图片42.边框颜色 = System.Drawing.Color.Gainsboro;
//
// label12
//
this.label12.AutoSize = true;
this.label12.BackColor = System.Drawing.Color.White;
this.label12.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label12.ForeColor = System.Drawing.Color.Black;
this.label12.Location = new System.Drawing.Point(13, 320);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(161, 14);
this.label12.TabIndex = 6976;
this.label12.Text = "B区北侧泵状态 [开关量]";
//
// 图片12
//
this.图片12.BackColor = System.Drawing.Color.Black;
this.图片12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片12.HDADDR = "";
this.图片12.Location = new System.Drawing.Point(10, 337);
this.图片12.Name = "图片12";
this.图片12.PLC = ((uint)(0u));
this.图片12.Size = new System.Drawing.Size(612, 2);
this.图片12.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片12.TabIndex = 6975;
this.图片12.TabStop = false;
this.图片12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片12.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片12.Value = ((ulong)(0ul));
interLock26.HDADDR = "";
interLock26.PLC = ((uint)(0u));
interLock26.互锁启用值 = ((uint)(1u));
interLock26.互锁地址 = "";
interLock26.互锁显示图标 = null;
interLock26.互锁显示文本 = "LOCK";
interLock26.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片12.互锁 = interLock26;
this.图片12.安全级别 = ((uint)(0u));
this.图片12.开关功能.PLC = null;
this.图片12.开关功能.地址 = null;
this.图片12.开关功能.开关 = null;
this.图片12.开关功能.扩展 = null;
this.图片12.快捷键 = "";
this.图片12.指示灯地址 = "";
this.图片12.指示类型 = PCHMI.图片.DatType.BIT;
this.图片12.操作记录 = "";
this.图片12.显示内容.BkImg = null;
this.图片12.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片12.显示内容.状态文本 = null;
this.图片12.显示内容.默认状态文本ID = ((uint)(0u));
this.图片12.显示文本 = true;
this.图片12.显示边框 = false;
this.图片12.权限提示文本 = "";
this.图片12.语言 = ((uint)(0u));
this.图片12.边框颜色 = System.Drawing.Color.Gainsboro;
//
// label10
//
this.label10.AutoSize = true;
this.label10.BackColor = System.Drawing.Color.White;
this.label10.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label10.ForeColor = System.Drawing.Color.Black;
this.label10.Location = new System.Drawing.Point(13, 294);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(161, 14);
this.label10.TabIndex = 6974;
this.label10.Text = "B区南侧泵状态 [开关量]";
//
// 图片30
//
this.图片30.BackColor = System.Drawing.Color.Black;
this.图片30.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片30.HDADDR = "";
this.图片30.Location = new System.Drawing.Point(10, 311);
this.图片30.Name = "图片30";
this.图片30.PLC = ((uint)(0u));
this.图片30.Size = new System.Drawing.Size(612, 2);
this.图片30.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片30.TabIndex = 6973;
this.图片30.TabStop = false;
this.图片30.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片30.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片30.Value = ((ulong)(0ul));
interLock27.HDADDR = "";
interLock27.PLC = ((uint)(0u));
interLock27.互锁启用值 = ((uint)(1u));
interLock27.互锁地址 = "";
interLock27.互锁显示图标 = null;
interLock27.互锁显示文本 = "LOCK";
interLock27.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片30.互锁 = interLock27;
this.图片30.安全级别 = ((uint)(0u));
this.图片30.开关功能.PLC = null;
this.图片30.开关功能.地址 = null;
this.图片30.开关功能.开关 = null;
this.图片30.开关功能.扩展 = null;
this.图片30.快捷键 = "";
this.图片30.指示灯地址 = "";
this.图片30.指示类型 = PCHMI.图片.DatType.BIT;
this.图片30.操作记录 = "";
this.图片30.显示内容.BkImg = null;
this.图片30.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片30.显示内容.状态文本 = null;
this.图片30.显示内容.默认状态文本ID = ((uint)(0u));
this.图片30.显示文本 = true;
this.图片30.显示边框 = false;
this.图片30.权限提示文本 = "";
this.图片30.语言 = ((uint)(0u));
this.图片30.边框颜色 = System.Drawing.Color.Gainsboro;
//
// label6
//
this.label6.AutoSize = true;
this.label6.BackColor = System.Drawing.Color.White;
this.label6.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label6.ForeColor = System.Drawing.Color.Black;
this.label6.Location = new System.Drawing.Point(13, 267);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(140, 14);
this.label6.TabIndex = 6972;
this.label6.Text = "进水泵状态 [开关量]";
//
// label7
//
this.label7.AutoSize = true;
this.label7.BackColor = System.Drawing.Color.White;
this.label7.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label7.ForeColor = System.Drawing.Color.Black;
this.label7.Location = new System.Drawing.Point(13, 240);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(147, 14);
this.label7.TabIndex = 6971;
this.label7.Text = "读取的C区北温度 [℃]";
//
// label8
//
this.label8.AutoSize = true;
this.label8.BackColor = System.Drawing.Color.White;
this.label8.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label8.ForeColor = System.Drawing.Color.Black;
this.label8.Location = new System.Drawing.Point(13, 213);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(147, 14);
this.label8.TabIndex = 6970;
this.label8.Text = "读取的C区南温度 [℃]";
//
// label5
//
this.label5.AutoSize = true;
this.label5.BackColor = System.Drawing.Color.White;
this.label5.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label5.ForeColor = System.Drawing.Color.Black;
this.label5.Location = new System.Drawing.Point(13, 186);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(147, 14);
this.label5.TabIndex = 6969;
this.label5.Text = "读取的B区北温度 [℃]";
//
// label9
//
this.label9.AutoSize = true;
this.label9.BackColor = System.Drawing.Color.White;
this.label9.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label9.ForeColor = System.Drawing.Color.Black;
this.label9.Location = new System.Drawing.Point(13, 159);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(147, 14);
this.label9.TabIndex = 6968;
this.label9.Text = "读取的B区南温度 [℃]";
//
// label11
//
this.label11.AutoSize = true;
this.label11.BackColor = System.Drawing.Color.White;
this.label11.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label11.ForeColor = System.Drawing.Color.Black;
this.label11.Location = new System.Drawing.Point(13, 132);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(112, 14);
this.label11.TabIndex = 6967;
this.label11.Text = "管道压力 [兆帕]";
//
// 图片43
//
this.图片43.BackColor = System.Drawing.Color.Black;
this.图片43.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片43.HDADDR = "";
this.图片43.Location = new System.Drawing.Point(10, 284);
this.图片43.Name = "图片43";
this.图片43.PLC = ((uint)(0u));
this.图片43.Size = new System.Drawing.Size(612, 2);
this.图片43.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片43.TabIndex = 6966;
this.图片43.TabStop = false;
this.图片43.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片43.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片43.Value = ((ulong)(0ul));
interLock28.HDADDR = "";
interLock28.PLC = ((uint)(0u));
interLock28.互锁启用值 = ((uint)(1u));
interLock28.互锁地址 = "";
interLock28.互锁显示图标 = null;
interLock28.互锁显示文本 = "LOCK";
interLock28.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片43.互锁 = interLock28;
this.图片43.安全级别 = ((uint)(0u));
this.图片43.开关功能.PLC = null;
this.图片43.开关功能.地址 = null;
this.图片43.开关功能.开关 = null;
this.图片43.开关功能.扩展 = null;
this.图片43.快捷键 = "";
this.图片43.指示灯地址 = "";
this.图片43.指示类型 = PCHMI.图片.DatType.BIT;
this.图片43.操作记录 = "";
this.图片43.显示内容.BkImg = null;
this.图片43.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片43.显示内容.状态文本 = null;
this.图片43.显示内容.默认状态文本ID = ((uint)(0u));
this.图片43.显示文本 = true;
this.图片43.显示边框 = false;
this.图片43.权限提示文本 = "";
this.图片43.语言 = ((uint)(0u));
this.图片43.边框颜色 = System.Drawing.Color.Gainsboro;
//
// 图片41
//
this.图片41.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
this.图片41.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片41.HDADDR = "";
this.图片41.Location = new System.Drawing.Point(10, 257);
this.图片41.Name = "图片41";
this.图片41.PLC = ((uint)(0u));
this.图片41.Size = new System.Drawing.Size(612, 2);
this.图片41.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片41.TabIndex = 6965;
this.图片41.TabStop = false;
this.图片41.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片41.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片41.Value = ((ulong)(0ul));
interLock29.HDADDR = "";
interLock29.PLC = ((uint)(0u));
interLock29.互锁启用值 = ((uint)(1u));
interLock29.互锁地址 = "";
interLock29.互锁显示图标 = null;
interLock29.互锁显示文本 = "LOCK";
interLock29.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片41.互锁 = interLock29;
this.图片41.安全级别 = ((uint)(0u));
this.图片41.开关功能.PLC = null;
this.图片41.开关功能.地址 = null;
this.图片41.开关功能.开关 = null;
this.图片41.开关功能.扩展 = null;
this.图片41.快捷键 = "";
this.图片41.指示灯地址 = "";
this.图片41.指示类型 = PCHMI.图片.DatType.BIT;
this.图片41.操作记录 = "";
this.图片41.显示内容.BkImg = null;
this.图片41.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片41.显示内容.状态文本 = null;
this.图片41.显示内容.默认状态文本ID = ((uint)(0u));
this.图片41.显示文本 = true;
this.图片41.显示边框 = false;
this.图片41.权限提示文本 = "";
this.图片41.语言 = ((uint)(0u));
this.图片41.边框颜色 = System.Drawing.Color.Gainsboro;
//
// 图片39
//
this.图片39.BackColor = System.Drawing.Color.Black;
this.图片39.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片39.HDADDR = "";
this.图片39.Location = new System.Drawing.Point(10, 230);
this.图片39.Name = "图片39";
this.图片39.PLC = ((uint)(0u));
this.图片39.Size = new System.Drawing.Size(612, 2);
this.图片39.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片39.TabIndex = 6964;
this.图片39.TabStop = false;
this.图片39.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片39.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片39.Value = ((ulong)(0ul));
interLock30.HDADDR = "";
interLock30.PLC = ((uint)(0u));
interLock30.互锁启用值 = ((uint)(1u));
interLock30.互锁地址 = "";
interLock30.互锁显示图标 = null;
interLock30.互锁显示文本 = "LOCK";
interLock30.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片39.互锁 = interLock30;
this.图片39.安全级别 = ((uint)(0u));
this.图片39.开关功能.PLC = null;
this.图片39.开关功能.地址 = null;
this.图片39.开关功能.开关 = null;
this.图片39.开关功能.扩展 = null;
this.图片39.快捷键 = "";
this.图片39.指示灯地址 = "";
this.图片39.指示类型 = PCHMI.图片.DatType.BIT;
this.图片39.操作记录 = "";
this.图片39.显示内容.BkImg = null;
this.图片39.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片39.显示内容.状态文本 = null;
this.图片39.显示内容.默认状态文本ID = ((uint)(0u));
this.图片39.显示文本 = true;
this.图片39.显示边框 = false;
this.图片39.权限提示文本 = "";
this.图片39.语言 = ((uint)(0u));
this.图片39.边框颜色 = System.Drawing.Color.Gainsboro;
//
// 图片16
//
this.图片16.BackColor = System.Drawing.Color.Black;
this.图片16.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片16.HDADDR = "";
this.图片16.Location = new System.Drawing.Point(10, 203);
this.图片16.Name = "图片16";
this.图片16.PLC = ((uint)(0u));
this.图片16.Size = new System.Drawing.Size(612, 2);
this.图片16.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片16.TabIndex = 6963;
this.图片16.TabStop = false;
this.图片16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片16.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片16.Value = ((ulong)(0ul));
interLock31.HDADDR = "";
interLock31.PLC = ((uint)(0u));
interLock31.互锁启用值 = ((uint)(1u));
interLock31.互锁地址 = "";
interLock31.互锁显示图标 = null;
interLock31.互锁显示文本 = "LOCK";
interLock31.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片16.互锁 = interLock31;
this.图片16.安全级别 = ((uint)(0u));
this.图片16.开关功能.PLC = null;
this.图片16.开关功能.地址 = null;
this.图片16.开关功能.开关 = null;
this.图片16.开关功能.扩展 = null;
this.图片16.快捷键 = "";
this.图片16.指示灯地址 = "";
this.图片16.指示类型 = PCHMI.图片.DatType.BIT;
this.图片16.操作记录 = "";
this.图片16.显示内容.BkImg = null;
this.图片16.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片16.显示内容.状态文本 = null;
this.图片16.显示内容.默认状态文本ID = ((uint)(0u));
this.图片16.显示文本 = true;
this.图片16.显示边框 = false;
this.图片16.权限提示文本 = "";
this.图片16.语言 = ((uint)(0u));
this.图片16.边框颜色 = System.Drawing.Color.Gainsboro;
//
// 图片31
//
this.图片31.BackColor = System.Drawing.Color.Black;
this.图片31.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片31.HDADDR = "";
this.图片31.Location = new System.Drawing.Point(10, 176);
this.图片31.Name = "图片31";
this.图片31.PLC = ((uint)(0u));
this.图片31.Size = new System.Drawing.Size(612, 2);
this.图片31.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片31.TabIndex = 6962;
this.图片31.TabStop = false;
this.图片31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片31.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片31.Value = ((ulong)(0ul));
interLock32.HDADDR = "";
interLock32.PLC = ((uint)(0u));
interLock32.互锁启用值 = ((uint)(1u));
interLock32.互锁地址 = "";
interLock32.互锁显示图标 = null;
interLock32.互锁显示文本 = "LOCK";
interLock32.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片31.互锁 = interLock32;
this.图片31.安全级别 = ((uint)(0u));
this.图片31.开关功能.PLC = null;
this.图片31.开关功能.地址 = null;
this.图片31.开关功能.开关 = null;
this.图片31.开关功能.扩展 = null;
this.图片31.快捷键 = "";
this.图片31.指示灯地址 = "";
this.图片31.指示类型 = PCHMI.图片.DatType.BIT;
this.图片31.操作记录 = "";
this.图片31.显示内容.BkImg = null;
this.图片31.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片31.显示内容.状态文本 = null;
this.图片31.显示内容.默认状态文本ID = ((uint)(0u));
this.图片31.显示文本 = true;
this.图片31.显示边框 = false;
this.图片31.权限提示文本 = "";
this.图片31.语言 = ((uint)(0u));
this.图片31.边框颜色 = System.Drawing.Color.Gainsboro;
//
// 图片28
//
this.图片28.BackColor = System.Drawing.Color.Black;
this.图片28.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片28.HDADDR = "";
this.图片28.Location = new System.Drawing.Point(10, 149);
this.图片28.Name = "图片28";
this.图片28.PLC = ((uint)(0u));
this.图片28.Size = new System.Drawing.Size(612, 2);
this.图片28.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片28.TabIndex = 6961;
this.图片28.TabStop = false;
this.图片28.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片28.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片28.Value = ((ulong)(0ul));
interLock33.HDADDR = "";
interLock33.PLC = ((uint)(0u));
interLock33.互锁启用值 = ((uint)(1u));
interLock33.互锁地址 = "";
interLock33.互锁显示图标 = null;
interLock33.互锁显示文本 = "LOCK";
interLock33.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片28.互锁 = interLock33;
this.图片28.安全级别 = ((uint)(0u));
this.图片28.开关功能.PLC = null;
this.图片28.开关功能.地址 = null;
this.图片28.开关功能.开关 = null;
this.图片28.开关功能.扩展 = null;
this.图片28.快捷键 = "";
this.图片28.指示灯地址 = "";
this.图片28.指示类型 = PCHMI.图片.DatType.BIT;
this.图片28.操作记录 = "";
this.图片28.显示内容.BkImg = null;
this.图片28.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片28.显示内容.状态文本 = null;
this.图片28.显示内容.默认状态文本ID = ((uint)(0u));
this.图片28.显示文本 = true;
this.图片28.显示边框 = false;
this.图片28.权限提示文本 = "";
this.图片28.语言 = ((uint)(0u));
this.图片28.边框颜色 = System.Drawing.Color.Gainsboro;
//
// label14
//
this.label14.AutoSize = true;
this.label14.BackColor = System.Drawing.Color.White;
this.label14.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label14.ForeColor = System.Drawing.Color.Black;
this.label14.Location = new System.Drawing.Point(430, 49);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(77, 14);
this.label14.TabIndex = 6960;
this.label14.Text = "高压喷雾01";
//
// 图片25
//
this.图片25.BackColor = System.Drawing.Color.Silver;
this.图片25.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.图片25.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片25.HDADDR = "M0.5";
this.图片25.Location = new System.Drawing.Point(461, 104);
this.图片25.Name = "图片25";
this.图片25.PLC = ((uint)(5u));
this.图片25.Size = new System.Drawing.Size(15, 15);
this.图片25.TabIndex = 6959;
this.图片25.TabStop = false;
this.图片25.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片25.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片25.Value = ((ulong)(0ul));
interLock34.HDADDR = "";
interLock34.PLC = ((uint)(0u));
interLock34.互锁启用值 = ((uint)(1u));
interLock34.互锁地址 = "";
interLock34.互锁显示图标 = null;
interLock34.互锁显示文本 = "LOCK";
interLock34.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片25.互锁 = interLock34;
this.图片25.安全级别 = ((uint)(0u));
this.图片25.开关功能.PLC = null;
this.图片25.开关功能.地址 = null;
this.图片25.开关功能.开关 = null;
this.图片25.开关功能.扩展 = null;
this.图片25.快捷键 = "";
this.图片25.指示灯地址 = "M0.5";
this.图片25.指示类型 = PCHMI.图片.DatType.BIT;
this.图片25.操作记录 = "";
this.图片25.显示内容.BkImg = null;
this.图片25.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
sT_SW_IF11.BkColor = System.Drawing.Color.Silver;
sT_SW_IF11.Img = null;
sT_SW_IF11.MaxVal = ((ulong)(0ul));
sT_SW_IF11.MinVal = ((ulong)(0ul));
sT_SW_IF11.Txt0 = "";
sT_SW_IF11.Txt1 = "";
sT_SW_IF11.Txt2 = "";
sT_SW_IF11.Txt3 = "";
sT_SW_IF11.Txt4 = "";
sT_SW_IF11.Txt5 = "";
sT_SW_IF11.Txt6 = "";
sT_SW_IF11.Txt7 = "";
sT_SW_IF11.TxtColor = System.Drawing.Color.Black;
sT_SW_IF11.TxtNumber = "";
sT_SW_IF12.BkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
sT_SW_IF12.Img = null;
sT_SW_IF12.MaxVal = ((ulong)(0ul));
sT_SW_IF12.MinVal = ((ulong)(0ul));
sT_SW_IF12.Txt0 = "";
sT_SW_IF12.Txt1 = "";
sT_SW_IF12.Txt2 = "";
sT_SW_IF12.Txt3 = "";
sT_SW_IF12.Txt4 = "";
sT_SW_IF12.Txt5 = "";
sT_SW_IF12.Txt6 = "";
sT_SW_IF12.Txt7 = "";
sT_SW_IF12.TxtColor = System.Drawing.Color.Black;
sT_SW_IF12.TxtNumber = "";
this.图片25.显示内容.状态文本 = new PCHMI.ST_SW_IF[] {
sT_SW_IF11,
sT_SW_IF12};
this.图片25.显示内容.默认状态文本ID = ((uint)(0u));
this.图片25.显示文本 = false;
this.图片25.显示边框 = false;
this.图片25.权限提示文本 = "";
this.图片25.语言 = ((uint)(0u));
this.图片25.边框颜色 = System.Drawing.Color.LightGray;
//
// 数据显示器73
//
this.数据显示器73.BackColor = System.Drawing.Color.White;
this.数据显示器73.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.数据显示器73.Cursor = System.Windows.Forms.Cursors.Default;
this.数据显示器73.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.数据显示器73.ForeColor = System.Drawing.Color.Black;
this.数据显示器73.HDADDR = "DB2001.0";
this.数据显示器73.Location = new System.Drawing.Point(441, 77);
this.数据显示器73.Name = "数据显示器73";
this.数据显示器73.PLC = ((uint)(5u));
this.数据显示器73.Size = new System.Drawing.Size(55, 14);
this.数据显示器73.TabIndex = 6958;
this.数据显示器73.Text = "0";
this.数据显示器73.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.数据显示器73.Value = ((ulong)(0ul));
interLock35.HDADDR = "";
interLock35.PLC = ((uint)(0u));
interLock35.互锁启用值 = ((uint)(1u));
interLock35.互锁地址 = "";
interLock35.互锁显示图标 = null;
interLock35.互锁显示文本 = "LOCK";
interLock35.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.数据显示器73.互锁 = interLock35;
this.数据显示器73.值限制 = false;
this.数据显示器73.回车后触发TAB = false;
this.数据显示器73.字符串长度 = ((uint)(10u));
this.数据显示器73.安全级别 = ((uint)(0u));
this.数据显示器73.小数位数 = ((uint)(0u));
this.数据显示器73.总显示位数 = ((uint)(8u));
this.数据显示器73.操作记录 = "";
this.数据显示器73.数值改变事件参数 = "NULL";
this.数据显示器73.数据类型 = PCHMI.数据显示器.DatType.INT16;
this.数据显示器73.最大值 = "10000";
this.数据显示器73.最小值 = "-5000";
this.数据显示器73.权限提示文本 = "";
this.数据显示器73.输入方式 = PCHMI.数据显示器.INTYPE.禁止;
this.数据显示器73.键盘输入事件参数 = "NULL";
this.数据显示器73.键盘进入方式 = PCHMI.数据显示器.KeyInMode.无效;
this.数据显示器73.零抑制 = false;
this.数据显示器73.零显示 = false;
//
// label62
//
this.label62.AutoSize = true;
this.label62.BackColor = System.Drawing.Color.White;
this.label62.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label62.ForeColor = System.Drawing.Color.Black;
this.label62.Location = new System.Drawing.Point(13, 105);
this.label62.Name = "label62";
this.label62.Size = new System.Drawing.Size(35, 14);
this.label62.TabIndex = 6957;
this.label62.Text = "心跳";
//
// label63
//
this.label63.AutoSize = true;
this.label63.BackColor = System.Drawing.Color.White;
this.label63.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label63.ForeColor = System.Drawing.Color.Black;
this.label63.Location = new System.Drawing.Point(13, 77);
this.label63.Name = "label63";
this.label63.Size = new System.Drawing.Size(35, 14);
this.label63.TabIndex = 6956;
this.label63.Text = "模式";
//
// 图片23
//
this.图片23.BackColor = System.Drawing.Color.Black;
this.图片23.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片23.HDADDR = "";
this.图片23.Location = new System.Drawing.Point(10, 122);
this.图片23.Name = "图片23";
this.图片23.PLC = ((uint)(0u));
this.图片23.Size = new System.Drawing.Size(612, 2);
this.图片23.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片23.TabIndex = 6955;
this.图片23.TabStop = false;
this.图片23.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片23.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片23.Value = ((ulong)(0ul));
interLock36.HDADDR = "";
interLock36.PLC = ((uint)(0u));
interLock36.互锁启用值 = ((uint)(1u));
interLock36.互锁地址 = "";
interLock36.互锁显示图标 = null;
interLock36.互锁显示文本 = "LOCK";
interLock36.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片23.互锁 = interLock36;
this.图片23.安全级别 = ((uint)(0u));
this.图片23.开关功能.PLC = null;
this.图片23.开关功能.地址 = null;
this.图片23.开关功能.开关 = null;
this.图片23.开关功能.扩展 = null;
this.图片23.快捷键 = "";
this.图片23.指示灯地址 = "";
this.图片23.指示类型 = PCHMI.图片.DatType.BIT;
this.图片23.操作记录 = "";
this.图片23.显示内容.BkImg = null;
this.图片23.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片23.显示内容.状态文本 = null;
this.图片23.显示内容.默认状态文本ID = ((uint)(0u));
this.图片23.显示文本 = true;
this.图片23.显示边框 = false;
this.图片23.权限提示文本 = "";
this.图片23.语言 = ((uint)(0u));
this.图片23.边框颜色 = System.Drawing.Color.Gainsboro;
//
// 图片17
//
this.图片17.BackColor = System.Drawing.Color.Black;
this.图片17.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片17.HDADDR = "";
this.图片17.Location = new System.Drawing.Point(620, 38);
this.图片17.Name = "图片17";
this.图片17.PLC = ((uint)(0u));
this.图片17.Size = new System.Drawing.Size(2, 459);
this.图片17.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片17.TabIndex = 6954;
this.图片17.TabStop = false;
this.图片17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片17.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片17.Value = ((ulong)(0ul));
interLock37.HDADDR = "";
interLock37.PLC = ((uint)(0u));
interLock37.互锁启用值 = ((uint)(1u));
interLock37.互锁地址 = "";
interLock37.互锁显示图标 = null;
interLock37.互锁显示文本 = "LOCK";
interLock37.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片17.互锁 = interLock37;
this.图片17.安全级别 = ((uint)(0u));
this.图片17.开关功能.PLC = null;
this.图片17.开关功能.地址 = null;
this.图片17.开关功能.开关 = null;
this.图片17.开关功能.扩展 = null;
this.图片17.快捷键 = "";
this.图片17.指示灯地址 = "";
this.图片17.指示类型 = PCHMI.图片.DatType.BIT;
this.图片17.操作记录 = "";
this.图片17.显示内容.BkImg = null;
this.图片17.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片17.显示内容.状态文本 = null;
this.图片17.显示内容.默认状态文本ID = ((uint)(0u));
this.图片17.显示文本 = true;
this.图片17.显示边框 = false;
this.图片17.权限提示文本 = "";
this.图片17.语言 = ((uint)(0u));
this.图片17.边框颜色 = System.Drawing.Color.Gainsboro;
//
// 图片18
//
this.图片18.BackColor = System.Drawing.Color.Black;
this.图片18.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片18.HDADDR = "";
this.图片18.Location = new System.Drawing.Point(10, 94);
this.图片18.Name = "图片18";
this.图片18.PLC = ((uint)(0u));
this.图片18.Size = new System.Drawing.Size(612, 2);
this.图片18.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片18.TabIndex = 6952;
this.图片18.TabStop = false;
this.图片18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片18.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片18.Value = ((ulong)(0ul));
interLock38.HDADDR = "";
interLock38.PLC = ((uint)(0u));
interLock38.互锁启用值 = ((uint)(1u));
interLock38.互锁地址 = "";
interLock38.互锁显示图标 = null;
interLock38.互锁显示文本 = "LOCK";
interLock38.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片18.互锁 = interLock38;
this.图片18.安全级别 = ((uint)(0u));
this.图片18.开关功能.PLC = null;
this.图片18.开关功能.地址 = null;
this.图片18.开关功能.开关 = null;
this.图片18.开关功能.扩展 = null;
this.图片18.快捷键 = "";
this.图片18.指示灯地址 = "";
this.图片18.指示类型 = PCHMI.图片.DatType.BIT;
this.图片18.操作记录 = "";
this.图片18.显示内容.BkImg = null;
this.图片18.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片18.显示内容.状态文本 = null;
this.图片18.显示内容.默认状态文本ID = ((uint)(0u));
this.图片18.显示文本 = true;
this.图片18.显示边框 = false;
this.图片18.权限提示文本 = "";
this.图片18.语言 = ((uint)(0u));
this.图片18.边框颜色 = System.Drawing.Color.Gainsboro;
//
// 图片20
//
this.图片20.BackColor = System.Drawing.Color.Black;
this.图片20.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片20.HDADDR = "";
this.图片20.Location = new System.Drawing.Point(308, 38);
this.图片20.Name = "图片20";
this.图片20.PLC = ((uint)(0u));
this.图片20.Size = new System.Drawing.Size(2, 459);
this.图片20.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片20.TabIndex = 6951;
this.图片20.TabStop = false;
this.图片20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片20.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片20.Value = ((ulong)(0ul));
interLock39.HDADDR = "";
interLock39.PLC = ((uint)(0u));
interLock39.互锁启用值 = ((uint)(1u));
interLock39.互锁地址 = "";
interLock39.互锁显示图标 = null;
interLock39.互锁显示文本 = "LOCK";
interLock39.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片20.互锁 = interLock39;
this.图片20.安全级别 = ((uint)(0u));
this.图片20.开关功能.PLC = null;
this.图片20.开关功能.地址 = null;
this.图片20.开关功能.开关 = null;
this.图片20.开关功能.扩展 = null;
this.图片20.快捷键 = "";
this.图片20.指示灯地址 = "";
this.图片20.指示类型 = PCHMI.图片.DatType.BIT;
this.图片20.操作记录 = "";
this.图片20.显示内容.BkImg = null;
this.图片20.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片20.显示内容.状态文本 = null;
this.图片20.显示内容.默认状态文本ID = ((uint)(0u));
this.图片20.显示文本 = true;
this.图片20.显示边框 = false;
this.图片20.权限提示文本 = "";
this.图片20.语言 = ((uint)(0u));
this.图片20.边框颜色 = System.Drawing.Color.Gainsboro;
//
// 图片21
//
this.图片21.BackColor = System.Drawing.Color.Black;
this.图片21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片21.HDADDR = "";
this.图片21.Location = new System.Drawing.Point(10, 66);
this.图片21.Name = "图片21";
this.图片21.PLC = ((uint)(0u));
this.图片21.Size = new System.Drawing.Size(612, 2);
this.图片21.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片21.TabIndex = 6950;
this.图片21.TabStop = false;
this.图片21.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片21.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片21.Value = ((ulong)(0ul));
interLock40.HDADDR = "";
interLock40.PLC = ((uint)(0u));
interLock40.互锁启用值 = ((uint)(1u));
interLock40.互锁地址 = "";
interLock40.互锁显示图标 = null;
interLock40.互锁显示文本 = "LOCK";
interLock40.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片21.互锁 = interLock40;
this.图片21.安全级别 = ((uint)(0u));
this.图片21.开关功能.PLC = null;
this.图片21.开关功能.地址 = null;
this.图片21.开关功能.开关 = null;
this.图片21.开关功能.扩展 = null;
this.图片21.快捷键 = "";
this.图片21.指示灯地址 = "";
this.图片21.指示类型 = PCHMI.图片.DatType.BIT;
this.图片21.操作记录 = "";
this.图片21.显示内容.BkImg = null;
this.图片21.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片21.显示内容.状态文本 = null;
this.图片21.显示内容.默认状态文本ID = ((uint)(0u));
this.图片21.显示文本 = true;
this.图片21.显示边框 = false;
this.图片21.权限提示文本 = "";
this.图片21.语言 = ((uint)(0u));
this.图片21.边框颜色 = System.Drawing.Color.Gainsboro;
//
// 图片29
//
this.图片29.BackColor = System.Drawing.Color.White;
this.图片29.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.图片29.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片29.HDADDR = "";
this.图片29.Location = new System.Drawing.Point(8, 36);
this.图片29.Name = "图片29";
this.图片29.PLC = ((uint)(0u));
this.图片29.Size = new System.Drawing.Size(1600, 970);
this.图片29.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片29.TabIndex = 6949;
this.图片29.TabStop = false;
this.图片29.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片29.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片29.Value = ((ulong)(0ul));
interLock41.HDADDR = "";
interLock41.PLC = ((uint)(0u));
interLock41.互锁启用值 = ((uint)(1u));
interLock41.互锁地址 = "";
interLock41.互锁显示图标 = null;
interLock41.互锁显示文本 = "LOCK";
interLock41.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片29.互锁 = interLock41;
this.图片29.安全级别 = ((uint)(0u));
this.图片29.开关功能.PLC = null;
this.图片29.开关功能.地址 = null;
this.图片29.开关功能.开关 = null;
this.图片29.开关功能.扩展 = null;
this.图片29.快捷键 = "";
this.图片29.指示灯地址 = "";
this.图片29.指示类型 = PCHMI.图片.DatType.BIT;
this.图片29.操作记录 = "";
this.图片29.显示内容.BkImg = null;
this.图片29.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片29.显示内容.状态文本 = null;
this.图片29.显示内容.默认状态文本ID = ((uint)(0u));
this.图片29.显示文本 = true;
this.图片29.显示边框 = false;
this.图片29.权限提示文本 = "";
this.图片29.语言 = ((uint)(0u));
this.图片29.边框颜色 = System.Drawing.Color.Gainsboro;
//
// 数据显示器1
//
this.数据显示器1.BackColor = System.Drawing.Color.White;
this.数据显示器1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.数据显示器1.Cursor = System.Windows.Forms.Cursors.Default;
this.数据显示器1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.数据显示器1.ForeColor = System.Drawing.Color.Black;
this.数据显示器1.HDADDR = "DB2001.6";
this.数据显示器1.Location = new System.Drawing.Point(441, 132);
this.数据显示器1.Name = "数据显示器1";
this.数据显示器1.PLC = ((uint)(5u));
this.数据显示器1.Size = new System.Drawing.Size(55, 14);
this.数据显示器1.TabIndex = 7000;
this.数据显示器1.Text = "0.00";
this.数据显示器1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.数据显示器1.Value = ((ulong)(0ul));
interLock42.HDADDR = "";
interLock42.PLC = ((uint)(0u));
interLock42.互锁启用值 = ((uint)(1u));
interLock42.互锁地址 = "";
interLock42.互锁显示图标 = null;
interLock42.互锁显示文本 = "LOCK";
interLock42.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.数据显示器1.互锁 = interLock42;
this.数据显示器1.值限制 = false;
this.数据显示器1.回车后触发TAB = false;
this.数据显示器1.字符串长度 = ((uint)(10u));
this.数据显示器1.安全级别 = ((uint)(0u));
this.数据显示器1.小数位数 = ((uint)(2u));
this.数据显示器1.总显示位数 = ((uint)(8u));
this.数据显示器1.操作记录 = "";
this.数据显示器1.数值改变事件参数 = "NULL";
this.数据显示器1.数据类型 = PCHMI.数据显示器.DatType.F32;
this.数据显示器1.最大值 = "10000";
this.数据显示器1.最小值 = "-5000";
this.数据显示器1.权限提示文本 = "";
this.数据显示器1.输入方式 = PCHMI.数据显示器.INTYPE.禁止;
this.数据显示器1.键盘输入事件参数 = "NULL";
this.数据显示器1.键盘进入方式 = PCHMI.数据显示器.KeyInMode.无效;
this.数据显示器1.零抑制 = false;
this.数据显示器1.零显示 = false;
//
// 数据显示器2
//
this.数据显示器2.BackColor = System.Drawing.Color.White;
this.数据显示器2.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.数据显示器2.Cursor = System.Windows.Forms.Cursors.Default;
this.数据显示器2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.数据显示器2.ForeColor = System.Drawing.Color.Black;
this.数据显示器2.HDADDR = "DB2005.0";
this.数据显示器2.Location = new System.Drawing.Point(441, 159);
this.数据显示器2.Name = "数据显示器2";
this.数据显示器2.PLC = ((uint)(5u));
this.数据显示器2.Size = new System.Drawing.Size(55, 14);
this.数据显示器2.TabIndex = 7001;
this.数据显示器2.Text = "0.00";
this.数据显示器2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.数据显示器2.Value = ((ulong)(0ul));
interLock43.HDADDR = "";
interLock43.PLC = ((uint)(0u));
interLock43.互锁启用值 = ((uint)(1u));
interLock43.互锁地址 = "";
interLock43.互锁显示图标 = null;
interLock43.互锁显示文本 = "LOCK";
interLock43.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.数据显示器2.互锁 = interLock43;
this.数据显示器2.值限制 = false;
this.数据显示器2.回车后触发TAB = false;
this.数据显示器2.字符串长度 = ((uint)(10u));
this.数据显示器2.安全级别 = ((uint)(0u));
this.数据显示器2.小数位数 = ((uint)(2u));
this.数据显示器2.总显示位数 = ((uint)(8u));
this.数据显示器2.操作记录 = "";
this.数据显示器2.数值改变事件参数 = "NULL";
this.数据显示器2.数据类型 = PCHMI.数据显示器.DatType.F32;
this.数据显示器2.最大值 = "10000";
this.数据显示器2.最小值 = "-5000";
this.数据显示器2.权限提示文本 = "";
this.数据显示器2.输入方式 = PCHMI.数据显示器.INTYPE.禁止;
this.数据显示器2.键盘输入事件参数 = "NULL";
this.数据显示器2.键盘进入方式 = PCHMI.数据显示器.KeyInMode.无效;
this.数据显示器2.零抑制 = false;
this.数据显示器2.零显示 = false;
//
// 数据显示器3
//
this.数据显示器3.BackColor = System.Drawing.Color.White;
this.数据显示器3.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.数据显示器3.Cursor = System.Windows.Forms.Cursors.Default;
this.数据显示器3.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.数据显示器3.ForeColor = System.Drawing.Color.Black;
this.数据显示器3.HDADDR = "DB2005.4";
this.数据显示器3.Location = new System.Drawing.Point(441, 213);
this.数据显示器3.Name = "数据显示器3";
this.数据显示器3.PLC = ((uint)(5u));
this.数据显示器3.Size = new System.Drawing.Size(55, 14);
this.数据显示器3.TabIndex = 7003;
this.数据显示器3.Text = "0.00";
this.数据显示器3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.数据显示器3.Value = ((ulong)(0ul));
interLock44.HDADDR = "";
interLock44.PLC = ((uint)(0u));
interLock44.互锁启用值 = ((uint)(1u));
interLock44.互锁地址 = "";
interLock44.互锁显示图标 = null;
interLock44.互锁显示文本 = "LOCK";
interLock44.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.数据显示器3.互锁 = interLock44;
this.数据显示器3.值限制 = false;
this.数据显示器3.回车后触发TAB = false;
this.数据显示器3.字符串长度 = ((uint)(10u));
this.数据显示器3.安全级别 = ((uint)(0u));
this.数据显示器3.小数位数 = ((uint)(2u));
this.数据显示器3.总显示位数 = ((uint)(8u));
this.数据显示器3.操作记录 = "";
this.数据显示器3.数值改变事件参数 = "NULL";
this.数据显示器3.数据类型 = PCHMI.数据显示器.DatType.F32;
this.数据显示器3.最大值 = "10000";
this.数据显示器3.最小值 = "-5000";
this.数据显示器3.权限提示文本 = "";
this.数据显示器3.输入方式 = PCHMI.数据显示器.INTYPE.禁止;
this.数据显示器3.键盘输入事件参数 = "NULL";
this.数据显示器3.键盘进入方式 = PCHMI.数据显示器.KeyInMode.无效;
this.数据显示器3.零抑制 = false;
this.数据显示器3.零显示 = false;
//
// 数据显示器4
//
this.数据显示器4.BackColor = System.Drawing.Color.White;
this.数据显示器4.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.数据显示器4.Cursor = System.Windows.Forms.Cursors.Default;
this.数据显示器4.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.数据显示器4.ForeColor = System.Drawing.Color.Black;
this.数据显示器4.HDADDR = "DB2005.8";
this.数据显示器4.Location = new System.Drawing.Point(441, 186);
this.数据显示器4.Name = "数据显示器4";
this.数据显示器4.PLC = ((uint)(5u));
this.数据显示器4.Size = new System.Drawing.Size(55, 14);
this.数据显示器4.TabIndex = 7002;
this.数据显示器4.Text = "0.00";
this.数据显示器4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.数据显示器4.Value = ((ulong)(0ul));
interLock45.HDADDR = "";
interLock45.PLC = ((uint)(0u));
interLock45.互锁启用值 = ((uint)(1u));
interLock45.互锁地址 = "";
interLock45.互锁显示图标 = null;
interLock45.互锁显示文本 = "LOCK";
interLock45.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.数据显示器4.互锁 = interLock45;
this.数据显示器4.值限制 = false;
this.数据显示器4.回车后触发TAB = false;
this.数据显示器4.字符串长度 = ((uint)(10u));
this.数据显示器4.安全级别 = ((uint)(0u));
this.数据显示器4.小数位数 = ((uint)(2u));
this.数据显示器4.总显示位数 = ((uint)(8u));
this.数据显示器4.操作记录 = "";
this.数据显示器4.数值改变事件参数 = "NULL";
this.数据显示器4.数据类型 = PCHMI.数据显示器.DatType.F32;
this.数据显示器4.最大值 = "10000";
this.数据显示器4.最小值 = "-5000";
this.数据显示器4.权限提示文本 = "";
this.数据显示器4.输入方式 = PCHMI.数据显示器.INTYPE.禁止;
this.数据显示器4.键盘输入事件参数 = "NULL";
this.数据显示器4.键盘进入方式 = PCHMI.数据显示器.KeyInMode.无效;
this.数据显示器4.零抑制 = false;
this.数据显示器4.零显示 = false;
//
// 数据显示器5
//
this.数据显示器5.BackColor = System.Drawing.Color.White;
this.数据显示器5.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.数据显示器5.Cursor = System.Windows.Forms.Cursors.Default;
this.数据显示器5.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.数据显示器5.ForeColor = System.Drawing.Color.Black;
this.数据显示器5.HDADDR = "DB2005.12";
this.数据显示器5.Location = new System.Drawing.Point(441, 240);
this.数据显示器5.Name = "数据显示器5";
this.数据显示器5.PLC = ((uint)(5u));
this.数据显示器5.Size = new System.Drawing.Size(55, 14);
this.数据显示器5.TabIndex = 7004;
this.数据显示器5.Text = "0.00";
this.数据显示器5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.数据显示器5.Value = ((ulong)(0ul));
interLock46.HDADDR = "";
interLock46.PLC = ((uint)(0u));
interLock46.互锁启用值 = ((uint)(1u));
interLock46.互锁地址 = "";
interLock46.互锁显示图标 = null;
interLock46.互锁显示文本 = "LOCK";
interLock46.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.数据显示器5.互锁 = interLock46;
this.数据显示器5.值限制 = false;
this.数据显示器5.回车后触发TAB = false;
this.数据显示器5.字符串长度 = ((uint)(10u));
this.数据显示器5.安全级别 = ((uint)(0u));
this.数据显示器5.小数位数 = ((uint)(2u));
this.数据显示器5.总显示位数 = ((uint)(8u));
this.数据显示器5.操作记录 = "";
this.数据显示器5.数值改变事件参数 = "NULL";
this.数据显示器5.数据类型 = PCHMI.数据显示器.DatType.F32;
this.数据显示器5.最大值 = "10000";
this.数据显示器5.最小值 = "-5000";
this.数据显示器5.权限提示文本 = "";
this.数据显示器5.输入方式 = PCHMI.数据显示器.INTYPE.禁止;
this.数据显示器5.键盘输入事件参数 = "NULL";
this.数据显示器5.键盘进入方式 = PCHMI.数据显示器.KeyInMode.无效;
this.数据显示器5.零抑制 = false;
this.数据显示器5.零显示 = false;
//
// label19
//
this.label19.AutoSize = true;
this.label19.BackColor = System.Drawing.Color.White;
this.label19.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label19.ForeColor = System.Drawing.Color.Black;
this.label19.Location = new System.Drawing.Point(13, 478);
this.label19.Name = "label19";
this.label19.Size = new System.Drawing.Size(147, 14);
this.label19.TabIndex = 7006;
this.label19.Text = "泄压阀4状态 [开关量]";
//
// 图片10
//
this.图片10.BackColor = System.Drawing.Color.Black;
this.图片10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片10.HDADDR = "";
this.图片10.Location = new System.Drawing.Point(10, 495);
this.图片10.Name = "图片10";
this.图片10.PLC = ((uint)(0u));
this.图片10.Size = new System.Drawing.Size(612, 2);
this.图片10.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.图片10.TabIndex = 7005;
this.图片10.TabStop = false;
this.图片10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片10.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片10.Value = ((ulong)(0ul));
interLock47.HDADDR = "";
interLock47.PLC = ((uint)(0u));
interLock47.互锁启用值 = ((uint)(1u));
interLock47.互锁地址 = "";
interLock47.互锁显示图标 = null;
interLock47.互锁显示文本 = "LOCK";
interLock47.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片10.互锁 = interLock47;
this.图片10.安全级别 = ((uint)(0u));
this.图片10.开关功能.PLC = null;
this.图片10.开关功能.地址 = null;
this.图片10.开关功能.开关 = null;
this.图片10.开关功能.扩展 = null;
this.图片10.快捷键 = "";
this.图片10.指示灯地址 = "";
this.图片10.指示类型 = PCHMI.图片.DatType.BIT;
this.图片10.操作记录 = "";
this.图片10.显示内容.BkImg = null;
this.图片10.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
this.图片10.显示内容.状态文本 = null;
this.图片10.显示内容.默认状态文本ID = ((uint)(0u));
this.图片10.显示文本 = true;
this.图片10.显示边框 = false;
this.图片10.权限提示文本 = "";
this.图片10.语言 = ((uint)(0u));
this.图片10.边框颜色 = System.Drawing.Color.Gainsboro;
//
// 图片14
//
this.图片14.BackColor = System.Drawing.Color.Silver;
this.图片14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.图片14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片14.HDADDR = "DB2002.2.3";
this.图片14.Location = new System.Drawing.Point(461, 319);
this.图片14.Name = "图片14";
this.图片14.PLC = ((uint)(5u));
this.图片14.Size = new System.Drawing.Size(15, 15);
this.图片14.TabIndex = 7007;
this.图片14.TabStop = false;
this.图片14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片14.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片14.Value = ((ulong)(0ul));
interLock48.HDADDR = "";
interLock48.PLC = ((uint)(0u));
interLock48.互锁启用值 = ((uint)(1u));
interLock48.互锁地址 = "";
interLock48.互锁显示图标 = null;
interLock48.互锁显示文本 = "LOCK";
interLock48.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片14.互锁 = interLock48;
this.图片14.安全级别 = ((uint)(0u));
this.图片14.开关功能.PLC = null;
this.图片14.开关功能.地址 = null;
this.图片14.开关功能.开关 = null;
this.图片14.开关功能.扩展 = null;
this.图片14.快捷键 = "";
this.图片14.指示灯地址 = "DB2002.2.3";
this.图片14.指示类型 = PCHMI.图片.DatType.BIT;
this.图片14.操作记录 = "";
this.图片14.显示内容.BkImg = null;
this.图片14.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
sT_SW_IF13.BkColor = System.Drawing.Color.Silver;
sT_SW_IF13.Img = null;
sT_SW_IF13.MaxVal = ((ulong)(0ul));
sT_SW_IF13.MinVal = ((ulong)(0ul));
sT_SW_IF13.Txt0 = "";
sT_SW_IF13.Txt1 = "";
sT_SW_IF13.Txt2 = "";
sT_SW_IF13.Txt3 = "";
sT_SW_IF13.Txt4 = "";
sT_SW_IF13.Txt5 = "";
sT_SW_IF13.Txt6 = "";
sT_SW_IF13.Txt7 = "";
sT_SW_IF13.TxtColor = System.Drawing.Color.Black;
sT_SW_IF13.TxtNumber = "";
sT_SW_IF14.BkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
sT_SW_IF14.Img = null;
sT_SW_IF14.MaxVal = ((ulong)(0ul));
sT_SW_IF14.MinVal = ((ulong)(0ul));
sT_SW_IF14.Txt0 = "";
sT_SW_IF14.Txt1 = "";
sT_SW_IF14.Txt2 = "";
sT_SW_IF14.Txt3 = "";
sT_SW_IF14.Txt4 = "";
sT_SW_IF14.Txt5 = "";
sT_SW_IF14.Txt6 = "";
sT_SW_IF14.Txt7 = "";
sT_SW_IF14.TxtColor = System.Drawing.Color.Black;
sT_SW_IF14.TxtNumber = "";
this.图片14.显示内容.状态文本 = new PCHMI.ST_SW_IF[] {
sT_SW_IF13,
sT_SW_IF14};
this.图片14.显示内容.默认状态文本ID = ((uint)(0u));
this.图片14.显示文本 = false;
this.图片14.显示边框 = false;
this.图片14.权限提示文本 = "";
this.图片14.语言 = ((uint)(0u));
this.图片14.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片19
//
this.图片19.BackColor = System.Drawing.Color.Silver;
this.图片19.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.图片19.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片19.HDADDR = "DB2002.3.0";
this.图片19.Location = new System.Drawing.Point(461, 371);
this.图片19.Name = "图片19";
this.图片19.PLC = ((uint)(5u));
this.图片19.Size = new System.Drawing.Size(15, 15);
this.图片19.TabIndex = 7008;
this.图片19.TabStop = false;
this.图片19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片19.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片19.Value = ((ulong)(0ul));
interLock49.HDADDR = "";
interLock49.PLC = ((uint)(0u));
interLock49.互锁启用值 = ((uint)(1u));
interLock49.互锁地址 = "";
interLock49.互锁显示图标 = null;
interLock49.互锁显示文本 = "LOCK";
interLock49.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片19.互锁 = interLock49;
this.图片19.安全级别 = ((uint)(0u));
this.图片19.开关功能.PLC = null;
this.图片19.开关功能.地址 = null;
this.图片19.开关功能.开关 = null;
this.图片19.开关功能.扩展 = null;
this.图片19.快捷键 = "";
this.图片19.指示灯地址 = "DB2002.3.0";
this.图片19.指示类型 = PCHMI.图片.DatType.BIT;
this.图片19.操作记录 = "";
this.图片19.显示内容.BkImg = null;
this.图片19.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
sT_SW_IF15.BkColor = System.Drawing.Color.Silver;
sT_SW_IF15.Img = null;
sT_SW_IF15.MaxVal = ((ulong)(0ul));
sT_SW_IF15.MinVal = ((ulong)(0ul));
sT_SW_IF15.Txt0 = "";
sT_SW_IF15.Txt1 = "";
sT_SW_IF15.Txt2 = "";
sT_SW_IF15.Txt3 = "";
sT_SW_IF15.Txt4 = "";
sT_SW_IF15.Txt5 = "";
sT_SW_IF15.Txt6 = "";
sT_SW_IF15.Txt7 = "";
sT_SW_IF15.TxtColor = System.Drawing.Color.Black;
sT_SW_IF15.TxtNumber = "";
sT_SW_IF16.BkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
sT_SW_IF16.Img = null;
sT_SW_IF16.MaxVal = ((ulong)(0ul));
sT_SW_IF16.MinVal = ((ulong)(0ul));
sT_SW_IF16.Txt0 = "";
sT_SW_IF16.Txt1 = "";
sT_SW_IF16.Txt2 = "";
sT_SW_IF16.Txt3 = "";
sT_SW_IF16.Txt4 = "";
sT_SW_IF16.Txt5 = "";
sT_SW_IF16.Txt6 = "";
sT_SW_IF16.Txt7 = "";
sT_SW_IF16.TxtColor = System.Drawing.Color.Black;
sT_SW_IF16.TxtNumber = "";
this.图片19.显示内容.状态文本 = new PCHMI.ST_SW_IF[] {
sT_SW_IF15,
sT_SW_IF16};
this.图片19.显示内容.默认状态文本ID = ((uint)(0u));
this.图片19.显示文本 = false;
this.图片19.显示边框 = false;
this.图片19.权限提示文本 = "";
this.图片19.语言 = ((uint)(0u));
this.图片19.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片22
//
this.图片22.BackColor = System.Drawing.Color.Silver;
this.图片22.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.图片22.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片22.HDADDR = "DB2002.4.7";
this.图片22.Location = new System.Drawing.Point(461, 451);
this.图片22.Name = "图片22";
this.图片22.PLC = ((uint)(5u));
this.图片22.Size = new System.Drawing.Size(15, 15);
this.图片22.TabIndex = 7009;
this.图片22.TabStop = false;
this.图片22.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片22.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片22.Value = ((ulong)(0ul));
interLock50.HDADDR = "";
interLock50.PLC = ((uint)(0u));
interLock50.互锁启用值 = ((uint)(1u));
interLock50.互锁地址 = "";
interLock50.互锁显示图标 = null;
interLock50.互锁显示文本 = "LOCK";
interLock50.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片22.互锁 = interLock50;
this.图片22.安全级别 = ((uint)(0u));
this.图片22.开关功能.PLC = null;
this.图片22.开关功能.地址 = null;
this.图片22.开关功能.开关 = null;
this.图片22.开关功能.扩展 = null;
this.图片22.快捷键 = "";
this.图片22.指示灯地址 = "DB2002.4.7";
this.图片22.指示类型 = PCHMI.图片.DatType.BIT;
this.图片22.操作记录 = "";
this.图片22.显示内容.BkImg = null;
this.图片22.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
sT_SW_IF17.BkColor = System.Drawing.Color.Silver;
sT_SW_IF17.Img = null;
sT_SW_IF17.MaxVal = ((ulong)(0ul));
sT_SW_IF17.MinVal = ((ulong)(0ul));
sT_SW_IF17.Txt0 = "";
sT_SW_IF17.Txt1 = "";
sT_SW_IF17.Txt2 = "";
sT_SW_IF17.Txt3 = "";
sT_SW_IF17.Txt4 = "";
sT_SW_IF17.Txt5 = "";
sT_SW_IF17.Txt6 = "";
sT_SW_IF17.Txt7 = "";
sT_SW_IF17.TxtColor = System.Drawing.Color.Black;
sT_SW_IF17.TxtNumber = "";
sT_SW_IF18.BkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
sT_SW_IF18.Img = null;
sT_SW_IF18.MaxVal = ((ulong)(0ul));
sT_SW_IF18.MinVal = ((ulong)(0ul));
sT_SW_IF18.Txt0 = "";
sT_SW_IF18.Txt1 = "";
sT_SW_IF18.Txt2 = "";
sT_SW_IF18.Txt3 = "";
sT_SW_IF18.Txt4 = "";
sT_SW_IF18.Txt5 = "";
sT_SW_IF18.Txt6 = "";
sT_SW_IF18.Txt7 = "";
sT_SW_IF18.TxtColor = System.Drawing.Color.Black;
sT_SW_IF18.TxtNumber = "";
this.图片22.显示内容.状态文本 = new PCHMI.ST_SW_IF[] {
sT_SW_IF17,
sT_SW_IF18};
this.图片22.显示内容.默认状态文本ID = ((uint)(0u));
this.图片22.显示文本 = false;
this.图片22.显示边框 = false;
this.图片22.权限提示文本 = "";
this.图片22.语言 = ((uint)(0u));
this.图片22.边框颜色 = System.Drawing.Color.LightGray;
//
// 图片24
//
this.图片24.BackColor = System.Drawing.Color.Silver;
this.图片24.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.图片24.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片24.HDADDR = "DB2002.5.4";
this.图片24.Location = new System.Drawing.Point(461, 477);
this.图片24.Name = "图片24";
this.图片24.PLC = ((uint)(5u));
this.图片24.Size = new System.Drawing.Size(15, 15);
this.图片24.TabIndex = 7010;
this.图片24.TabStop = false;
this.图片24.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.图片24.TxtFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.图片24.Value = ((ulong)(0ul));
interLock51.HDADDR = "";
interLock51.PLC = ((uint)(0u));
interLock51.互锁启用值 = ((uint)(1u));
interLock51.互锁地址 = "";
interLock51.互锁显示图标 = null;
interLock51.互锁显示文本 = "LOCK";
interLock51.互锁类型 = PCHMI.InterLock.DatType.BIT;
this.图片24.互锁 = interLock51;
this.图片24.安全级别 = ((uint)(0u));
this.图片24.开关功能.PLC = null;
this.图片24.开关功能.地址 = null;
this.图片24.开关功能.开关 = null;
this.图片24.开关功能.扩展 = null;
this.图片24.快捷键 = "";
this.图片24.指示灯地址 = "DB2002.5.4";
this.图片24.指示类型 = PCHMI.图片.DatType.BIT;
this.图片24.操作记录 = "";
this.图片24.显示内容.BkImg = null;
this.图片24.显示内容.状态切换条件 = PCHMI.Employee.STSW.按序号值切换状态;
sT_SW_IF19.BkColor = System.Drawing.Color.Silver;
sT_SW_IF19.Img = null;
sT_SW_IF19.MaxVal = ((ulong)(0ul));
sT_SW_IF19.MinVal = ((ulong)(0ul));
sT_SW_IF19.Txt0 = "";
sT_SW_IF19.Txt1 = "";
sT_SW_IF19.Txt2 = "";
sT_SW_IF19.Txt3 = "";
sT_SW_IF19.Txt4 = "";
sT_SW_IF19.Txt5 = "";
sT_SW_IF19.Txt6 = "";
sT_SW_IF19.Txt7 = "";
sT_SW_IF19.TxtColor = System.Drawing.Color.Black;
sT_SW_IF19.TxtNumber = "";
sT_SW_IF20.BkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
sT_SW_IF20.Img = null;
sT_SW_IF20.MaxVal = ((ulong)(0ul));
sT_SW_IF20.MinVal = ((ulong)(0ul));
sT_SW_IF20.Txt0 = "";
sT_SW_IF20.Txt1 = "";
sT_SW_IF20.Txt2 = "";
sT_SW_IF20.Txt3 = "";
sT_SW_IF20.Txt4 = "";
sT_SW_IF20.Txt5 = "";
sT_SW_IF20.Txt6 = "";
sT_SW_IF20.Txt7 = "";
sT_SW_IF20.TxtColor = System.Drawing.Color.Black;
sT_SW_IF20.TxtNumber = "";
this.图片24.显示内容.状态文本 = new PCHMI.ST_SW_IF[] {
sT_SW_IF19,
sT_SW_IF20};
this.图片24.显示内容.默认状态文本ID = ((uint)(0u));
this.图片24.显示文本 = false;
this.图片24.显示边框 = false;
this.图片24.权限提示文本 = "";
this.图片24.语言 = ((uint)(0u));
this.图片24.边框颜色 = System.Drawing.Color.LightGray;
//
// 高压喷雾
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.图片24);
this.Controls.Add(this.图片22);
this.Controls.Add(this.图片19);
this.Controls.Add(this.图片14);
this.Controls.Add(this.label19);
this.Controls.Add(this.图片10);
this.Controls.Add(this.数据显示器5);
this.Controls.Add(this.数据显示器3);
this.Controls.Add(this.数据显示器4);
this.Controls.Add(this.数据显示器2);
this.Controls.Add(this.数据显示器1);
this.Controls.Add(this.图片61);
this.Controls.Add(this.图片62);
this.Controls.Add(this.图片26);
this.Controls.Add(this.图片57);
this.Controls.Add(this.图片58);
this.Controls.Add(this.label17);
this.Controls.Add(this.图片49);
this.Controls.Add(this.label18);
this.Controls.Add(this.图片51);
this.Controls.Add(this.label3);
this.Controls.Add(this.图片47);
this.Controls.Add(this.label4);
this.Controls.Add(this.图片45);
this.Controls.Add(this.label13);
this.Controls.Add(this.图片42);
this.Controls.Add(this.label12);
this.Controls.Add(this.图片12);
this.Controls.Add(this.label10);
this.Controls.Add(this.图片30);
this.Controls.Add(this.label6);
this.Controls.Add(this.label7);
this.Controls.Add(this.label8);
this.Controls.Add(this.label5);
this.Controls.Add(this.label9);
this.Controls.Add(this.label11);
this.Controls.Add(this.图片43);
this.Controls.Add(this.图片41);
this.Controls.Add(this.图片39);
this.Controls.Add(this.图片16);
this.Controls.Add(this.图片31);
this.Controls.Add(this.图片28);
this.Controls.Add(this.label14);
this.Controls.Add(this.图片25);
this.Controls.Add(this.数据显示器73);
this.Controls.Add(this.label62);
this.Controls.Add(this.label63);
this.Controls.Add(this.图片23);
this.Controls.Add(this.图片17);
this.Controls.Add(this.图片18);
this.Controls.Add(this.图片20);
this.Controls.Add(this.图片21);
this.Controls.Add(this.label1);
this.Controls.Add(this.label2);
this.Controls.Add(this.label15);
this.Controls.Add(this.label16);
this.Controls.Add(this.label67);
this.Controls.Add(this.图片13);
this.Controls.Add(this.label22);
this.Controls.Add(this.图片2);
this.Controls.Add(this.图片3);
this.Controls.Add(this.图片8);
this.Controls.Add(this.图片5);
this.Controls.Add(this.图片6);
this.Controls.Add(this.图片11);
this.Controls.Add(this.图片9);
this.Controls.Add(this.图片4);
this.Controls.Add(this.图片38);
this.Controls.Add(this.图片37);
this.Controls.Add(this.图片7);
this.Controls.Add(this.图片15);
this.Controls.Add(this.图片109);
this.Controls.Add(this.图片1);
this.Controls.Add(this.图片29);
this.Name = "高压喷雾";
this.Size = new System.Drawing.Size(2218, 1107);
((System.ComponentModel.ISupportInitialize)(this.图片1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片13)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片8)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片5)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片6)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片11)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片9)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片4)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片38)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片37)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片7)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片15)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片109)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片61)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片62)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片26)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片57)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片58)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片49)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片51)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片47)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片45)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片42)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片12)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片30)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片43)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片41)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片39)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片16)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片31)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片28)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片25)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片23)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片17)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片18)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片20)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片21)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片29)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片10)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片14)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片19)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片22)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.图片24)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private PCHMI.图片 图片1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label15;
private System.Windows.Forms.Label label16;
private PCHMI.图片 图片13;
private System.Windows.Forms.Label label22;
private PCHMI.图片 图片2;
private PCHMI.图片 图片3;
private PCHMI.图片 图片8;
private PCHMI.图片 图片5;
private PCHMI.图片 图片6;
private PCHMI.图片 图片11;
private PCHMI.图片 图片9;
private PCHMI.图片 图片4;
private PCHMI.图片 图片38;
private PCHMI.图片 图片37;
private PCHMI.图片 图片7;
private PCHMI.图片 图片15;
private PCHMI.图片 图片109;
private System.Windows.Forms.Label label67;
private PCHMI.图片 图片61;
private PCHMI.图片 图片62;
private PCHMI.图片 图片26;
private PCHMI.图片 图片57;
private PCHMI.图片 图片58;
private System.Windows.Forms.Label label17;
private PCHMI.图片 图片49;
private System.Windows.Forms.Label label18;
private PCHMI.图片 图片51;
private System.Windows.Forms.Label label3;
private PCHMI.图片 图片47;
private System.Windows.Forms.Label label4;
private PCHMI.图片 图片45;
private System.Windows.Forms.Label label13;
private PCHMI.图片 图片42;
private System.Windows.Forms.Label label12;
private PCHMI.图片 图片12;
private System.Windows.Forms.Label label10;
private PCHMI.图片 图片30;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.Label label11;
private PCHMI.图片 图片43;
private PCHMI.图片 图片41;
private PCHMI.图片 图片39;
private PCHMI.图片 图片16;
private PCHMI.图片 图片31;
private PCHMI.图片 图片28;
private System.Windows.Forms.Label label14;
private PCHMI.图片 图片25;
private PCHMI.数据显示器 数据显示器73;
private System.Windows.Forms.Label label62;
private System.Windows.Forms.Label label63;
private PCHMI.图片 图片23;
private PCHMI.图片 图片17;
private PCHMI.图片 图片18;
private PCHMI.图片 图片20;
private PCHMI.图片 图片21;
private PCHMI.图片 图片29;
private PCHMI.数据显示器 数据显示器1;
private PCHMI.数据显示器 数据显示器2;
private PCHMI.数据显示器 数据显示器3;
private PCHMI.数据显示器 数据显示器4;
private PCHMI.数据显示器 数据显示器5;
private System.Windows.Forms.Label label19;
private PCHMI.图片 图片10;
private PCHMI.图片 图片14;
private PCHMI.图片 图片19;
private PCHMI.图片 图片22;
private PCHMI.图片 图片24;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/amateur-organization/xin2.git
git@gitee.com:amateur-organization/xin2.git
amateur-organization
xin2
xin2
master

搜索帮助