| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139 |
- namespace YangjieTester.工站操作
- {
- partial class Form26_转向站2
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.uiPanel1 = new Sunny.UI.UIPanel();
- this.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.btn工站启用 = new PlcUiControl.PlcUiButton();
- this.uiTabControl1 = new Sunny.UI.UITabControl();
- this.tabPage1 = new System.Windows.Forms.TabPage();
- this.uiGroupBox3 = new Sunny.UI.UIGroupBox();
- this.plcUiLight2 = new PlcUiControl.PlcUiLight();
- this.plcUiLight3 = new PlcUiControl.PlcUiLight();
- this.plcUiLight4 = new PlcUiControl.PlcUiLight();
- this.btn负90度位置 = new PlcUiControl.PlcUiButton();
- this.btn180度位置 = new PlcUiControl.PlcUiButton();
- this.btn方向旋转正反转 = new PlcUiControl.PlcUiButton();
- this.btn90度位置 = new PlcUiControl.PlcUiButton();
- this.txt方向旋转负90度位置 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel12 = new Sunny.UI.UILabel();
- this.txt方向旋转180度位置 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel13 = new Sunny.UI.UILabel();
- this.txt方向旋转90度位置 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel14 = new Sunny.UI.UILabel();
- this.btn方向旋转马达上电 = new PlcUiControl.PlcUiButton();
- this.txt方向旋转0度位置 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel15 = new Sunny.UI.UILabel();
- this.txt方向旋转初始位置 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel16 = new Sunny.UI.UILabel();
- this.btn方向旋转马达回原 = new PlcUiControl.PlcUiButton();
- this.btn0度位置 = new PlcUiControl.PlcUiButton();
- this.plcUiNumberDisplay3 = new PlcUiControl.PlcUiNumberDisplay();
- this.uiLabel20 = new Sunny.UI.UILabel();
- this.plcUiNumberDisplay4 = new PlcUiControl.PlcUiNumberDisplay();
- this.uiLabel21 = new Sunny.UI.UILabel();
- this.uiGroupBox4 = new Sunny.UI.UIGroupBox();
- this.plcUiLight40 = new PlcUiControl.PlcUiLight();
- this.plcUiLight41 = new PlcUiControl.PlcUiLight();
- this.plcUiLight42 = new PlcUiControl.PlcUiLight();
- this.btn上下马达上电 = new PlcUiControl.PlcUiButton();
- this.txt上下马达下位置 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel22 = new Sunny.UI.UILabel();
- this.txt上下马达上位置 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel23 = new Sunny.UI.UILabel();
- this.btn上下马达上下 = new PlcUiControl.PlcUiButton();
- this.btn上下马达回原 = new PlcUiControl.PlcUiButton();
- this.btn上升 = new PlcUiControl.PlcUiButton();
- this.btn下降 = new PlcUiControl.PlcUiButton();
- this.plcUiNumberDisplay5 = new PlcUiControl.PlcUiNumberDisplay();
- this.uiLabel24 = new Sunny.UI.UILabel();
- this.plcUiNumberDisplay6 = new PlcUiControl.PlcUiNumberDisplay();
- this.uiLabel25 = new Sunny.UI.UILabel();
- this.tabPage2 = new System.Windows.Forms.TabPage();
- this.tabPage3 = new System.Windows.Forms.TabPage();
- this.uiGroupBox5 = new Sunny.UI.UIGroupBox();
- this.uiLabel27 = new Sunny.UI.UILabel();
- this.cob旋转角度 = new PlcUiControl.PlcUiComboBox();
- this.uiLabel28 = new Sunny.UI.UILabel();
- this.txt旋转完成延时 = new PlcUiControl.PlcUiNumberInput();
- this.tabPage4 = new System.Windows.Forms.TabPage();
- this.uiGroupBox1 = new Sunny.UI.UIGroupBox();
- this.plcUiNumberDisplay1 = new PlcUiControl.PlcUiNumberDisplay();
- this.txt旋转马达伺服输出转矩限制 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel1 = new Sunny.UI.UILabel();
- this.uiLabel2 = new Sunny.UI.UILabel();
- this.txt旋转马达撞击报警阈值 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel3 = new Sunny.UI.UILabel();
- this.txt旋转马达扭矩报警阈值 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel4 = new Sunny.UI.UILabel();
- this.txt旋转马达最高速 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel5 = new Sunny.UI.UILabel();
- this.uiGroupBox2 = new Sunny.UI.UIGroupBox();
- this.txt防压检测终点 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel47 = new Sunny.UI.UILabel();
- this.txt防撞检测起点 = new PlcUiControl.PlcUiNumberInput();
- this.txt防撞检测终点 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel48 = new Sunny.UI.UILabel();
- this.uiLabel49 = new Sunny.UI.UILabel();
- this.uiLabel50 = new Sunny.UI.UILabel();
- this.txt防压检测起点 = new PlcUiControl.PlcUiNumberInput();
- this.txt上下马达速度 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel6 = new Sunny.UI.UILabel();
- this.txt上下马达偏移量 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel7 = new Sunny.UI.UILabel();
- this.txt上下马达减速时间 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel8 = new Sunny.UI.UILabel();
- this.txt上下马达加速时间 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel9 = new Sunny.UI.UILabel();
- this.txt上下马达伺服输出转矩限制 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel10 = new Sunny.UI.UILabel();
- this.plcUiNumberDisplay2 = new PlcUiControl.PlcUiNumberDisplay();
- this.uiLabel11 = new Sunny.UI.UILabel();
- this.txt上下马达防撞报警阈值 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel17 = new Sunny.UI.UILabel();
- this.txt上下马达防压报警阈值 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel18 = new Sunny.UI.UILabel();
- this.txt上下马达最高速 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel19 = new Sunny.UI.UILabel();
- this.tabPage5 = new System.Windows.Forms.TabPage();
- this.plcUiLight1 = new PlcUiControl.PlcUiLight();
- this.uiPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
- this.uiTabControl1.SuspendLayout();
- this.tabPage1.SuspendLayout();
- this.uiGroupBox3.SuspendLayout();
- this.uiGroupBox4.SuspendLayout();
- this.tabPage3.SuspendLayout();
- this.uiGroupBox5.SuspendLayout();
- this.tabPage4.SuspendLayout();
- this.uiGroupBox1.SuspendLayout();
- this.uiGroupBox2.SuspendLayout();
- this.tabPage5.SuspendLayout();
- this.SuspendLayout();
- //
- // uiPanel1
- //
- this.uiPanel1.Controls.Add(this.pictureBox1);
- this.uiPanel1.Controls.Add(this.btn工站启用);
- this.uiPanel1.Dock = System.Windows.Forms.DockStyle.Left;
- this.uiPanel1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel1.Location = new System.Drawing.Point(0, 35);
- this.uiPanel1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel1.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel1.Name = "uiPanel1";
- this.uiPanel1.Padding = new System.Windows.Forms.Padding(2);
- this.uiPanel1.Size = new System.Drawing.Size(233, 733);
- this.uiPanel1.TabIndex = 11;
- this.uiPanel1.Text = null;
- this.uiPanel1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // pictureBox1
- //
- this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Top;
- this.pictureBox1.Location = new System.Drawing.Point(2, 56);
- this.pictureBox1.Name = "pictureBox1";
- this.pictureBox1.Padding = new System.Windows.Forms.Padding(2);
- this.pictureBox1.Size = new System.Drawing.Size(229, 185);
- this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
- this.pictureBox1.TabIndex = 165;
- this.pictureBox1.TabStop = false;
- //
- // btn工站启用
- //
- this.btn工站启用.ButtonType = PlcUiControl.ButtonType.交替型;
- this.btn工站启用.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btn工站启用.DisabilityTriggerNode = null;
- this.btn工站启用.Dock = System.Windows.Forms.DockStyle.Top;
- this.btn工站启用.FillColor = System.Drawing.Color.Gray;
- this.btn工站启用.FillHoverColor = System.Drawing.Color.Gray;
- this.btn工站启用.FillSelectedColor = System.Drawing.Color.Gray;
- this.btn工站启用.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn工站启用.InvisibilityTriggerNode = null;
- this.btn工站启用.Location = new System.Drawing.Point(2, 2);
- this.btn工站启用.Maximum = 0D;
- this.btn工站启用.Minimum = 0D;
- this.btn工站启用.MinimumSize = new System.Drawing.Size(1, 1);
- this.btn工站启用.Name = "btn工站启用";
- this.btn工站启用.NeedUserEnsure = false;
- this.btn工站启用.OffColor = System.Drawing.Color.Gray;
- this.btn工站启用.OffSymbol = 0;
- this.btn工站启用.OffText = "工站不启用";
- this.btn工站启用.OnColor = System.Drawing.Color.Green;
- this.btn工站启用.OnSymbol = 0;
- this.btn工站启用.OnText = "工站启用";
- this.btn工站启用.ReadNode = new Node("Application.Var_state.站位启用[26]", NodeType.BOOL, null);
- this.btn工站启用.Size = new System.Drawing.Size(229, 54);
- this.btn工站启用.Symbol = 0;
- this.btn工站启用.TabIndex = 164;
- this.btn工站启用.Text = "工站不启用";
- this.btn工站启用.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn工站启用.WriteNode = new Node("Application.Var_state.站位启用[26]", NodeType.BOOL, null);
- //
- // uiTabControl1
- //
- this.uiTabControl1.Controls.Add(this.tabPage1);
- this.uiTabControl1.Controls.Add(this.tabPage2);
- this.uiTabControl1.Controls.Add(this.tabPage3);
- this.uiTabControl1.Controls.Add(this.tabPage4);
- this.uiTabControl1.Controls.Add(this.tabPage5);
- this.uiTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiTabControl1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
- this.uiTabControl1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl1.ItemSize = new System.Drawing.Size(150, 40);
- this.uiTabControl1.Location = new System.Drawing.Point(233, 35);
- this.uiTabControl1.MainPage = "";
- this.uiTabControl1.Name = "uiTabControl1";
- this.uiTabControl1.SelectedIndex = 0;
- this.uiTabControl1.Size = new System.Drawing.Size(1133, 733);
- this.uiTabControl1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
- this.uiTabControl1.TabIndex = 12;
- this.uiTabControl1.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- //
- // tabPage1
- //
- this.tabPage1.Controls.Add(this.uiGroupBox3);
- this.tabPage1.Controls.Add(this.uiGroupBox4);
- this.tabPage1.Location = new System.Drawing.Point(0, 40);
- this.tabPage1.Name = "tabPage1";
- this.tabPage1.Size = new System.Drawing.Size(1133, 693);
- this.tabPage1.TabIndex = 0;
- this.tabPage1.Text = "常规操作";
- this.tabPage1.UseVisualStyleBackColor = true;
- //
- // uiGroupBox3
- //
- this.uiGroupBox3.Controls.Add(this.plcUiLight2);
- this.uiGroupBox3.Controls.Add(this.plcUiLight3);
- this.uiGroupBox3.Controls.Add(this.plcUiLight4);
- this.uiGroupBox3.Controls.Add(this.btn负90度位置);
- this.uiGroupBox3.Controls.Add(this.btn180度位置);
- this.uiGroupBox3.Controls.Add(this.btn方向旋转正反转);
- this.uiGroupBox3.Controls.Add(this.btn90度位置);
- this.uiGroupBox3.Controls.Add(this.txt方向旋转负90度位置);
- this.uiGroupBox3.Controls.Add(this.uiLabel12);
- this.uiGroupBox3.Controls.Add(this.txt方向旋转180度位置);
- this.uiGroupBox3.Controls.Add(this.uiLabel13);
- this.uiGroupBox3.Controls.Add(this.txt方向旋转90度位置);
- this.uiGroupBox3.Controls.Add(this.uiLabel14);
- this.uiGroupBox3.Controls.Add(this.btn方向旋转马达上电);
- this.uiGroupBox3.Controls.Add(this.txt方向旋转0度位置);
- this.uiGroupBox3.Controls.Add(this.uiLabel15);
- this.uiGroupBox3.Controls.Add(this.txt方向旋转初始位置);
- this.uiGroupBox3.Controls.Add(this.uiLabel16);
- this.uiGroupBox3.Controls.Add(this.btn方向旋转马达回原);
- this.uiGroupBox3.Controls.Add(this.btn0度位置);
- this.uiGroupBox3.Controls.Add(this.plcUiNumberDisplay3);
- this.uiGroupBox3.Controls.Add(this.uiLabel20);
- this.uiGroupBox3.Controls.Add(this.plcUiNumberDisplay4);
- this.uiGroupBox3.Controls.Add(this.uiLabel21);
- this.uiGroupBox3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox3.Location = new System.Drawing.Point(8, 233);
- this.uiGroupBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox3.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox3.Name = "uiGroupBox3";
- this.uiGroupBox3.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox3.Size = new System.Drawing.Size(1042, 209);
- this.uiGroupBox3.TabIndex = 23;
- this.uiGroupBox3.Text = "方向旋转";
- this.uiGroupBox3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // plcUiLight2
- //
- this.plcUiLight2.DisabilityTriggerNode = null;
- this.plcUiLight2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight2.InvisibilityTriggerNode = null;
- this.plcUiLight2.Location = new System.Drawing.Point(491, 121);
- this.plcUiLight2.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight2.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight2.Name = "plcUiLight2";
- this.plcUiLight2.NodeName = "回原完成";
- this.plcUiLight2.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight2.OffText = null;
- this.plcUiLight2.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight2.OnText = null;
- this.plcUiLight2.Radius = 39;
- this.plcUiLight2.ReadNode = new Node("Application.A26_DirectionTurn_Auto.b旋转轴回原完成", NodeType.BOOL, null);
- this.plcUiLight2.ShowText = true;
- this.plcUiLight2.Size = new System.Drawing.Size(111, 39);
- this.plcUiLight2.State = Sunny.UI.UILightState.Off;
- this.plcUiLight2.TabIndex = 206;
- this.plcUiLight2.Text = "回原完成";
- this.plcUiLight2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight2.WriteNode = null;
- //
- // plcUiLight3
- //
- this.plcUiLight3.DisabilityTriggerNode = null;
- this.plcUiLight3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight3.InvisibilityTriggerNode = null;
- this.plcUiLight3.Location = new System.Drawing.Point(379, 121);
- this.plcUiLight3.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight3.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight3.Name = "plcUiLight3";
- this.plcUiLight3.NodeName = "Error";
- this.plcUiLight3.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight3.OffText = null;
- this.plcUiLight3.On_Color = System.Drawing.Color.Red;
- this.plcUiLight3.OnColor = System.Drawing.Color.Red;
- this.plcUiLight3.OnText = null;
- this.plcUiLight3.Radius = 39;
- this.plcUiLight3.ReadNode = new Node("Application.A26_DirectionTurn_Auto.b旋转轴Error", NodeType.BOOL, null);
- this.plcUiLight3.ShowText = true;
- this.plcUiLight3.Size = new System.Drawing.Size(92, 39);
- this.plcUiLight3.State = Sunny.UI.UILightState.Off;
- this.plcUiLight3.TabIndex = 205;
- this.plcUiLight3.Text = "Error";
- this.plcUiLight3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight3.WriteNode = null;
- //
- // plcUiLight4
- //
- this.plcUiLight4.DisabilityTriggerNode = null;
- this.plcUiLight4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight4.InvisibilityTriggerNode = null;
- this.plcUiLight4.Location = new System.Drawing.Point(267, 121);
- this.plcUiLight4.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight4.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight4.Name = "plcUiLight4";
- this.plcUiLight4.NodeName = "使能状态";
- this.plcUiLight4.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight4.OffText = null;
- this.plcUiLight4.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight4.OnText = null;
- this.plcUiLight4.Radius = 39;
- this.plcUiLight4.ReadNode = new Node("Application.A26_DirectionTurn_Auto.b旋转轴使能状态", NodeType.BOOL, null);
- this.plcUiLight4.ShowText = true;
- this.plcUiLight4.Size = new System.Drawing.Size(112, 39);
- this.plcUiLight4.State = Sunny.UI.UILightState.Off;
- this.plcUiLight4.TabIndex = 204;
- this.plcUiLight4.Text = "使能状态";
- this.plcUiLight4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight4.WriteNode = null;
- //
- // btn负90度位置
- //
- this.btn负90度位置.ButtonType = PlcUiControl.ButtonType.保持型;
- this.btn负90度位置.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btn负90度位置.DisabilityTriggerNode = null;
- this.btn负90度位置.FillColor = System.Drawing.Color.LightSeaGreen;
- this.btn负90度位置.FillHoverColor = System.Drawing.Color.LightSeaGreen;
- this.btn负90度位置.FillSelectedColor = System.Drawing.Color.LightSeaGreen;
- this.btn负90度位置.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn负90度位置.InvisibilityTriggerNode = null;
- this.btn负90度位置.Location = new System.Drawing.Point(611, 40);
- this.btn负90度位置.Maximum = 0D;
- this.btn负90度位置.Minimum = 0D;
- this.btn负90度位置.MinimumSize = new System.Drawing.Size(1, 1);
- this.btn负90度位置.Name = "btn负90度位置";
- this.btn负90度位置.NeedUserEnsure = false;
- this.btn负90度位置.OffColor = System.Drawing.Color.LightSeaGreen;
- this.btn负90度位置.OffSymbol = 0;
- this.btn负90度位置.OffText = "-90度位置";
- this.btn负90度位置.OnColor = System.Drawing.Color.Green;
- this.btn负90度位置.OnSymbol = 0;
- this.btn负90度位置.OnText = "-90度位置";
- this.btn负90度位置.ReadNode = new Node("Application.A26_DirectionTurn_Manual.b方向旋转马达负90度定位", NodeType.BOOL, null);
- this.btn负90度位置.Size = new System.Drawing.Size(102, 66);
- this.btn负90度位置.Symbol = 0;
- this.btn负90度位置.SymbolSize = 72;
- this.btn负90度位置.TabIndex = 22;
- this.btn负90度位置.Text = "-90度位置";
- this.btn负90度位置.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn负90度位置.WriteNode = new Node("Application.A26_DirectionTurn_Manual.b方向旋转马达负90度定位", NodeType.BOOL, null);
- //
- // btn180度位置
- //
- this.btn180度位置.ButtonType = PlcUiControl.ButtonType.保持型;
- this.btn180度位置.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btn180度位置.DisabilityTriggerNode = null;
- this.btn180度位置.FillColor = System.Drawing.Color.LightSeaGreen;
- this.btn180度位置.FillHoverColor = System.Drawing.Color.LightSeaGreen;
- this.btn180度位置.FillSelectedColor = System.Drawing.Color.LightSeaGreen;
- this.btn180度位置.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn180度位置.InvisibilityTriggerNode = null;
- this.btn180度位置.Location = new System.Drawing.Point(499, 40);
- this.btn180度位置.Maximum = 0D;
- this.btn180度位置.Minimum = 0D;
- this.btn180度位置.MinimumSize = new System.Drawing.Size(1, 1);
- this.btn180度位置.Name = "btn180度位置";
- this.btn180度位置.NeedUserEnsure = false;
- this.btn180度位置.OffColor = System.Drawing.Color.LightSeaGreen;
- this.btn180度位置.OffSymbol = 0;
- this.btn180度位置.OffText = "180度位置";
- this.btn180度位置.OnColor = System.Drawing.Color.Green;
- this.btn180度位置.OnSymbol = 0;
- this.btn180度位置.OnText = "180度位置";
- this.btn180度位置.ReadNode = new Node("Application.A26_DirectionTurn_Manual.b方向旋转马达180度定位", NodeType.BOOL, null);
- this.btn180度位置.Size = new System.Drawing.Size(102, 66);
- this.btn180度位置.Symbol = 0;
- this.btn180度位置.SymbolSize = 72;
- this.btn180度位置.TabIndex = 21;
- this.btn180度位置.Text = "180度位置";
- this.btn180度位置.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn180度位置.WriteNode = new Node("Application.A26_DirectionTurn_Manual.b方向旋转马达180度定位", NodeType.BOOL, null);
- //
- // btn方向旋转正反转
- //
- this.btn方向旋转正反转.ButtonType = PlcUiControl.ButtonType.保持型;
- this.btn方向旋转正反转.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btn方向旋转正反转.DisabilityTriggerNode = null;
- this.btn方向旋转正反转.FillColor = System.Drawing.Color.LightSeaGreen;
- this.btn方向旋转正反转.FillHoverColor = System.Drawing.Color.LightSeaGreen;
- this.btn方向旋转正反转.FillSelectedColor = System.Drawing.Color.LightSeaGreen;
- this.btn方向旋转正反转.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn方向旋转正反转.InvisibilityTriggerNode = null;
- this.btn方向旋转正反转.Location = new System.Drawing.Point(732, 40);
- this.btn方向旋转正反转.Maximum = 0D;
- this.btn方向旋转正反转.Minimum = 0D;
- this.btn方向旋转正反转.MinimumSize = new System.Drawing.Size(1, 1);
- this.btn方向旋转正反转.Name = "btn方向旋转正反转";
- this.btn方向旋转正反转.NeedUserEnsure = false;
- this.btn方向旋转正反转.OffColor = System.Drawing.Color.LightSeaGreen;
- this.btn方向旋转正反转.OffSymbol = 361561;
- this.btn方向旋转正反转.OffText = "正反转";
- this.btn方向旋转正反转.OnColor = System.Drawing.Color.Green;
- this.btn方向旋转正反转.OnSymbol = 361561;
- this.btn方向旋转正反转.OnText = "正反转";
- this.btn方向旋转正反转.ReadNode = new Node("Application.A26_DirectionTurn_Manual.b方向旋转马达正反转", NodeType.BOOL, null);
- this.btn方向旋转正反转.Size = new System.Drawing.Size(99, 66);
- this.btn方向旋转正反转.Symbol = 361561;
- this.btn方向旋转正反转.SymbolSize = 48;
- this.btn方向旋转正反转.TabIndex = 21;
- this.btn方向旋转正反转.Text = "正反转";
- this.btn方向旋转正反转.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn方向旋转正反转.WriteNode = new Node("Application.A26_DirectionTurn_Manual.b方向旋转马达正反转", NodeType.BOOL, null);
- //
- // btn90度位置
- //
- this.btn90度位置.ButtonType = PlcUiControl.ButtonType.保持型;
- this.btn90度位置.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btn90度位置.DisabilityTriggerNode = null;
- this.btn90度位置.FillColor = System.Drawing.Color.LightSeaGreen;
- this.btn90度位置.FillHoverColor = System.Drawing.Color.LightSeaGreen;
- this.btn90度位置.FillSelectedColor = System.Drawing.Color.LightSeaGreen;
- this.btn90度位置.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn90度位置.InvisibilityTriggerNode = null;
- this.btn90度位置.Location = new System.Drawing.Point(386, 40);
- this.btn90度位置.Maximum = 0D;
- this.btn90度位置.Minimum = 0D;
- this.btn90度位置.MinimumSize = new System.Drawing.Size(1, 1);
- this.btn90度位置.Name = "btn90度位置";
- this.btn90度位置.NeedUserEnsure = false;
- this.btn90度位置.OffColor = System.Drawing.Color.LightSeaGreen;
- this.btn90度位置.OffSymbol = 0;
- this.btn90度位置.OffText = "90度位置";
- this.btn90度位置.OnColor = System.Drawing.Color.Green;
- this.btn90度位置.OnSymbol = 0;
- this.btn90度位置.OnText = "90度位置";
- this.btn90度位置.ReadNode = new Node("Application.A26_DirectionTurn_Manual.b方向旋转马达90度定位", NodeType.BOOL, null);
- this.btn90度位置.Size = new System.Drawing.Size(102, 66);
- this.btn90度位置.Symbol = 0;
- this.btn90度位置.SymbolSize = 72;
- this.btn90度位置.TabIndex = 20;
- this.btn90度位置.Text = "90度位置";
- this.btn90度位置.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn90度位置.WriteNode = new Node("Application.A26_DirectionTurn_Manual.b方向旋转马达90度定位", NodeType.BOOL, null);
- //
- // txt方向旋转负90度位置
- //
- this.txt方向旋转负90度位置.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt方向旋转负90度位置.DisabilityTriggerNode = null;
- this.txt方向旋转负90度位置.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt方向旋转负90度位置.Gain = 1D;
- this.txt方向旋转负90度位置.IntegerDigits = 0;
- this.txt方向旋转负90度位置.InvisibilityTriggerNode = null;
- this.txt方向旋转负90度位置.Location = new System.Drawing.Point(791, 166);
- this.txt方向旋转负90度位置.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt方向旋转负90度位置.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt方向旋转负90度位置.Name = "txt方向旋转负90度位置";
- this.txt方向旋转负90度位置.Padding = new System.Windows.Forms.Padding(5);
- this.txt方向旋转负90度位置.ReadNode = new Node("Application.A26_DirectionTurn_Manual.lr方向旋转马达负90度位置设定", NodeType.LREAL, null);
- this.txt方向旋转负90度位置.ShowText = false;
- this.txt方向旋转负90度位置.Size = new System.Drawing.Size(125, 27);
- this.txt方向旋转负90度位置.TabIndex = 19;
- this.txt方向旋转负90度位置.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt方向旋转负90度位置.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt方向旋转负90度位置.Watermark = "";
- this.txt方向旋转负90度位置.WriteNode = new Node("Application.A26_DirectionTurn_Manual.lr方向旋转马达负90度位置设定", NodeType.LREAL, null);
- //
- // uiLabel12
- //
- this.uiLabel12.AutoSize = true;
- this.uiLabel12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel12.Location = new System.Drawing.Point(713, 172);
- this.uiLabel12.Name = "uiLabel12";
- this.uiLabel12.Size = new System.Drawing.Size(79, 16);
- this.uiLabel12.TabIndex = 18;
- this.uiLabel12.Text = "-90度位置";
- //
- // txt方向旋转180度位置
- //
- this.txt方向旋转180度位置.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt方向旋转180度位置.DisabilityTriggerNode = null;
- this.txt方向旋转180度位置.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt方向旋转180度位置.Gain = 1D;
- this.txt方向旋转180度位置.IntegerDigits = 0;
- this.txt方向旋转180度位置.InvisibilityTriggerNode = null;
- this.txt方向旋转180度位置.Location = new System.Drawing.Point(574, 166);
- this.txt方向旋转180度位置.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt方向旋转180度位置.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt方向旋转180度位置.Name = "txt方向旋转180度位置";
- this.txt方向旋转180度位置.Padding = new System.Windows.Forms.Padding(5);
- this.txt方向旋转180度位置.ReadNode = new Node("Application.A26_DirectionTurn_Manual.lr方向旋转马达180度位置设定", NodeType.LREAL, "位置设定——HMIset");
- this.txt方向旋转180度位置.ShowText = false;
- this.txt方向旋转180度位置.Size = new System.Drawing.Size(125, 27);
- this.txt方向旋转180度位置.TabIndex = 17;
- this.txt方向旋转180度位置.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt方向旋转180度位置.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt方向旋转180度位置.Watermark = "";
- this.txt方向旋转180度位置.WriteNode = new Node("Application.A26_DirectionTurn_Manual.lr方向旋转马达180度位置设定", NodeType.LREAL, "位置设定——HMIset");
- //
- // uiLabel13
- //
- this.uiLabel13.AutoSize = true;
- this.uiLabel13.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel13.Location = new System.Drawing.Point(496, 172);
- this.uiLabel13.Name = "uiLabel13";
- this.uiLabel13.Size = new System.Drawing.Size(79, 16);
- this.uiLabel13.TabIndex = 16;
- this.uiLabel13.Text = "180度位置";
- //
- // txt方向旋转90度位置
- //
- this.txt方向旋转90度位置.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt方向旋转90度位置.DisabilityTriggerNode = null;
- this.txt方向旋转90度位置.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt方向旋转90度位置.Gain = 1D;
- this.txt方向旋转90度位置.IntegerDigits = 0;
- this.txt方向旋转90度位置.InvisibilityTriggerNode = null;
- this.txt方向旋转90度位置.Location = new System.Drawing.Point(352, 166);
- this.txt方向旋转90度位置.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt方向旋转90度位置.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt方向旋转90度位置.Name = "txt方向旋转90度位置";
- this.txt方向旋转90度位置.Padding = new System.Windows.Forms.Padding(5);
- this.txt方向旋转90度位置.ReadNode = new Node("Application.A26_DirectionTurn_Manual.lr方向旋转马达90度位置设定", NodeType.LREAL, "位置设定——HMIset");
- this.txt方向旋转90度位置.ShowText = false;
- this.txt方向旋转90度位置.Size = new System.Drawing.Size(125, 27);
- this.txt方向旋转90度位置.TabIndex = 15;
- this.txt方向旋转90度位置.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt方向旋转90度位置.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt方向旋转90度位置.Watermark = "";
- this.txt方向旋转90度位置.WriteNode = new Node("Application.A26_DirectionTurn_Manual.lr方向旋转马达90度位置设定", NodeType.LREAL, "位置设定——HMIset");
- //
- // uiLabel14
- //
- this.uiLabel14.AutoSize = true;
- this.uiLabel14.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel14.Location = new System.Drawing.Point(274, 172);
- this.uiLabel14.Name = "uiLabel14";
- this.uiLabel14.Size = new System.Drawing.Size(71, 16);
- this.uiLabel14.TabIndex = 14;
- this.uiLabel14.Text = "90度位置";
- //
- // btn方向旋转马达上电
- //
- this.btn方向旋转马达上电.ButtonType = PlcUiControl.ButtonType.交替型;
- this.btn方向旋转马达上电.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btn方向旋转马达上电.DisabilityTriggerNode = null;
- this.btn方向旋转马达上电.FillColor = System.Drawing.Color.Green;
- this.btn方向旋转马达上电.FillHoverColor = System.Drawing.Color.Green;
- this.btn方向旋转马达上电.FillSelectedColor = System.Drawing.Color.Green;
- this.btn方向旋转马达上电.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn方向旋转马达上电.InvisibilityTriggerNode = null;
- this.btn方向旋转马达上电.Location = new System.Drawing.Point(847, 40);
- this.btn方向旋转马达上电.Maximum = 0D;
- this.btn方向旋转马达上电.Minimum = 0D;
- this.btn方向旋转马达上电.MinimumSize = new System.Drawing.Size(1, 1);
- this.btn方向旋转马达上电.Name = "btn方向旋转马达上电";
- this.btn方向旋转马达上电.NeedUserEnsure = false;
- this.btn方向旋转马达上电.OffColor = System.Drawing.Color.Green;
- this.btn方向旋转马达上电.OffSymbol = 0;
- this.btn方向旋转马达上电.OffText = "马达上电";
- this.btn方向旋转马达上电.OnColor = System.Drawing.Color.Gray;
- this.btn方向旋转马达上电.OnSymbol = 0;
- this.btn方向旋转马达上电.OnText = "马达断电";
- this.btn方向旋转马达上电.ReadNode = new Node("Application.A26_DirectionTurn_Manual.b方向旋转马达断使能", NodeType.BOOL, null);
- this.btn方向旋转马达上电.Size = new System.Drawing.Size(80, 66);
- this.btn方向旋转马达上电.Symbol = 0;
- this.btn方向旋转马达上电.TabIndex = 13;
- this.btn方向旋转马达上电.Text = "马达上电";
- this.btn方向旋转马达上电.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn方向旋转马达上电.WriteNode = new Node("Application.A26_DirectionTurn_Manual.b方向旋转马达断使能", NodeType.BOOL, null);
- //
- // txt方向旋转0度位置
- //
- this.txt方向旋转0度位置.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt方向旋转0度位置.DisabilityTriggerNode = null;
- this.txt方向旋转0度位置.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt方向旋转0度位置.Gain = 1D;
- this.txt方向旋转0度位置.IntegerDigits = 0;
- this.txt方向旋转0度位置.InvisibilityTriggerNode = null;
- this.txt方向旋转0度位置.Location = new System.Drawing.Point(128, 166);
- this.txt方向旋转0度位置.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt方向旋转0度位置.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt方向旋转0度位置.Name = "txt方向旋转0度位置";
- this.txt方向旋转0度位置.Padding = new System.Windows.Forms.Padding(5);
- this.txt方向旋转0度位置.ReadNode = new Node("Application.A26_DirectionTurn_Manual.lr方向旋转马达0度位置设定", NodeType.LREAL, "位置设定——HMIset");
- this.txt方向旋转0度位置.ShowText = false;
- this.txt方向旋转0度位置.Size = new System.Drawing.Size(125, 27);
- this.txt方向旋转0度位置.TabIndex = 12;
- this.txt方向旋转0度位置.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt方向旋转0度位置.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt方向旋转0度位置.Watermark = "";
- this.txt方向旋转0度位置.WriteNode = new Node("Application.A26_DirectionTurn_Manual.lr方向旋转马达0度位置设定", NodeType.LREAL, "位置设定——HMIset");
- //
- // uiLabel15
- //
- this.uiLabel15.AutoSize = true;
- this.uiLabel15.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel15.Location = new System.Drawing.Point(35, 172);
- this.uiLabel15.Name = "uiLabel15";
- this.uiLabel15.Size = new System.Drawing.Size(63, 16);
- this.uiLabel15.TabIndex = 11;
- this.uiLabel15.Text = "0度位置";
- //
- // txt方向旋转初始位置
- //
- this.txt方向旋转初始位置.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt方向旋转初始位置.DisabilityTriggerNode = null;
- this.txt方向旋转初始位置.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt方向旋转初始位置.Gain = 1D;
- this.txt方向旋转初始位置.IntegerDigits = 0;
- this.txt方向旋转初始位置.InvisibilityTriggerNode = null;
- this.txt方向旋转初始位置.Location = new System.Drawing.Point(128, 121);
- this.txt方向旋转初始位置.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt方向旋转初始位置.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt方向旋转初始位置.Name = "txt方向旋转初始位置";
- this.txt方向旋转初始位置.Padding = new System.Windows.Forms.Padding(5);
- this.txt方向旋转初始位置.ReadNode = new Node("Application.A26_DirectionTurn_Manual.lr方向旋转马达初始位置设定", NodeType.LREAL, "位置设定——HMIset");
- this.txt方向旋转初始位置.ShowText = false;
- this.txt方向旋转初始位置.Size = new System.Drawing.Size(125, 27);
- this.txt方向旋转初始位置.TabIndex = 10;
- this.txt方向旋转初始位置.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt方向旋转初始位置.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt方向旋转初始位置.Watermark = "";
- this.txt方向旋转初始位置.WriteNode = new Node("Application.A26_DirectionTurn_Manual.lr方向旋转马达初始位置设定", NodeType.LREAL, "位置设定——HMIset");
- //
- // uiLabel16
- //
- this.uiLabel16.AutoSize = true;
- this.uiLabel16.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel16.Location = new System.Drawing.Point(27, 123);
- this.uiLabel16.Name = "uiLabel16";
- this.uiLabel16.Size = new System.Drawing.Size(71, 16);
- this.uiLabel16.TabIndex = 9;
- this.uiLabel16.Text = "初始位置";
- //
- // btn方向旋转马达回原
- //
- this.btn方向旋转马达回原.ButtonType = PlcUiControl.ButtonType.保持型;
- this.btn方向旋转马达回原.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btn方向旋转马达回原.DisabilityTriggerNode = null;
- this.btn方向旋转马达回原.FillColor = System.Drawing.Color.LightSeaGreen;
- this.btn方向旋转马达回原.FillHoverColor = System.Drawing.Color.LightSeaGreen;
- this.btn方向旋转马达回原.FillSelectedColor = System.Drawing.Color.LightSeaGreen;
- this.btn方向旋转马达回原.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn方向旋转马达回原.InvisibilityTriggerNode = null;
- this.btn方向旋转马达回原.Location = new System.Drawing.Point(950, 40);
- this.btn方向旋转马达回原.Maximum = 0D;
- this.btn方向旋转马达回原.Minimum = 0D;
- this.btn方向旋转马达回原.MinimumSize = new System.Drawing.Size(1, 1);
- this.btn方向旋转马达回原.Name = "btn方向旋转马达回原";
- this.btn方向旋转马达回原.NeedUserEnsure = false;
- this.btn方向旋转马达回原.OffColor = System.Drawing.Color.LightSeaGreen;
- this.btn方向旋转马达回原.OffSymbol = 0;
- this.btn方向旋转马达回原.OffText = "回原";
- this.btn方向旋转马达回原.OnColor = System.Drawing.Color.Green;
- this.btn方向旋转马达回原.OnSymbol = 0;
- this.btn方向旋转马达回原.OnText = "回原";
- this.btn方向旋转马达回原.ReadNode = new Node("Application.A26_DirectionTurn_Manual.b方向旋转马达回原点", NodeType.BOOL, null);
- this.btn方向旋转马达回原.Size = new System.Drawing.Size(80, 66);
- this.btn方向旋转马达回原.Symbol = 0;
- this.btn方向旋转马达回原.TabIndex = 7;
- this.btn方向旋转马达回原.Text = "回原";
- this.btn方向旋转马达回原.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn方向旋转马达回原.WriteNode = new Node("Application.A26_DirectionTurn_Manual.b方向旋转马达回原点", NodeType.BOOL, null);
- //
- // btn0度位置
- //
- this.btn0度位置.ButtonType = PlcUiControl.ButtonType.保持型;
- this.btn0度位置.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btn0度位置.DisabilityTriggerNode = null;
- this.btn0度位置.FillColor = System.Drawing.Color.LightSeaGreen;
- this.btn0度位置.FillHoverColor = System.Drawing.Color.LightSeaGreen;
- this.btn0度位置.FillSelectedColor = System.Drawing.Color.LightSeaGreen;
- this.btn0度位置.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn0度位置.InvisibilityTriggerNode = null;
- this.btn0度位置.Location = new System.Drawing.Point(267, 40);
- this.btn0度位置.Maximum = 0D;
- this.btn0度位置.Minimum = 0D;
- this.btn0度位置.MinimumSize = new System.Drawing.Size(1, 1);
- this.btn0度位置.Name = "btn0度位置";
- this.btn0度位置.NeedUserEnsure = false;
- this.btn0度位置.OffColor = System.Drawing.Color.LightSeaGreen;
- this.btn0度位置.OffSymbol = 0;
- this.btn0度位置.OffText = "0度位置";
- this.btn0度位置.OnColor = System.Drawing.Color.Green;
- this.btn0度位置.OnSymbol = 0;
- this.btn0度位置.OnText = "0度位置";
- this.btn0度位置.ReadNode = new Node("Application.A26_DirectionTurn_Manual.b方向旋转马达0度定位", NodeType.BOOL, null);
- this.btn0度位置.Size = new System.Drawing.Size(102, 66);
- this.btn0度位置.Symbol = 0;
- this.btn0度位置.SymbolSize = 72;
- this.btn0度位置.TabIndex = 4;
- this.btn0度位置.Text = "0度位置";
- this.btn0度位置.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn0度位置.WriteNode = new Node("Application.A26_DirectionTurn_Manual.b方向旋转马达0度定位", NodeType.BOOL, null);
- //
- // plcUiNumberDisplay3
- //
- this.plcUiNumberDisplay3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.plcUiNumberDisplay3.DecimalPlaces = 2;
- this.plcUiNumberDisplay3.DisabilityTriggerNode = null;
- this.plcUiNumberDisplay3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiNumberDisplay3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.plcUiNumberDisplay3.Gain = 1D;
- this.plcUiNumberDisplay3.IntegerDigits = 0;
- this.plcUiNumberDisplay3.InvisibilityTriggerNode = null;
- this.plcUiNumberDisplay3.Location = new System.Drawing.Point(128, 78);
- this.plcUiNumberDisplay3.Name = "plcUiNumberDisplay3";
- this.plcUiNumberDisplay3.Preffix = null;
- this.plcUiNumberDisplay3.ReadNode = new Node("Application.A26_DirectionTurn_Manual.b方向旋转马达当前扭矩", NodeType.LREAL, "方向旋转马达扭矩显示——HMIscreen");
- this.plcUiNumberDisplay3.Size = new System.Drawing.Size(125, 27);
- this.plcUiNumberDisplay3.Suffix = null;
- this.plcUiNumberDisplay3.TabIndex = 3;
- this.plcUiNumberDisplay3.Text = "0";
- this.plcUiNumberDisplay3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.plcUiNumberDisplay3.WriteNode = null;
- //
- // uiLabel20
- //
- this.uiLabel20.AutoSize = true;
- this.uiLabel20.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel20.Location = new System.Drawing.Point(27, 83);
- this.uiLabel20.Name = "uiLabel20";
- this.uiLabel20.Size = new System.Drawing.Size(71, 16);
- this.uiLabel20.TabIndex = 2;
- this.uiLabel20.Text = "当前扭矩";
- //
- // plcUiNumberDisplay4
- //
- this.plcUiNumberDisplay4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.plcUiNumberDisplay4.DecimalPlaces = 2;
- this.plcUiNumberDisplay4.DisabilityTriggerNode = null;
- this.plcUiNumberDisplay4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiNumberDisplay4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.plcUiNumberDisplay4.Gain = 1D;
- this.plcUiNumberDisplay4.IntegerDigits = 0;
- this.plcUiNumberDisplay4.InvisibilityTriggerNode = null;
- this.plcUiNumberDisplay4.Location = new System.Drawing.Point(128, 39);
- this.plcUiNumberDisplay4.Name = "plcUiNumberDisplay4";
- this.plcUiNumberDisplay4.Preffix = null;
- this.plcUiNumberDisplay4.ReadNode = new Node("Application.A26_DirectionTurn_Manual.b方向旋转马达当前位置", NodeType.LREAL, "方向旋转马达位置显示——HMIscreen");
- this.plcUiNumberDisplay4.Size = new System.Drawing.Size(125, 27);
- this.plcUiNumberDisplay4.Suffix = null;
- this.plcUiNumberDisplay4.TabIndex = 1;
- this.plcUiNumberDisplay4.Text = "0";
- this.plcUiNumberDisplay4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.plcUiNumberDisplay4.WriteNode = null;
- //
- // uiLabel21
- //
- this.uiLabel21.AutoSize = true;
- this.uiLabel21.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel21.Location = new System.Drawing.Point(27, 44);
- this.uiLabel21.Name = "uiLabel21";
- this.uiLabel21.Size = new System.Drawing.Size(71, 16);
- this.uiLabel21.TabIndex = 0;
- this.uiLabel21.Text = "当前位置";
- //
- // uiGroupBox4
- //
- this.uiGroupBox4.Controls.Add(this.plcUiLight40);
- this.uiGroupBox4.Controls.Add(this.plcUiLight41);
- this.uiGroupBox4.Controls.Add(this.plcUiLight42);
- this.uiGroupBox4.Controls.Add(this.btn上下马达上电);
- this.uiGroupBox4.Controls.Add(this.txt上下马达下位置);
- this.uiGroupBox4.Controls.Add(this.uiLabel22);
- this.uiGroupBox4.Controls.Add(this.txt上下马达上位置);
- this.uiGroupBox4.Controls.Add(this.uiLabel23);
- this.uiGroupBox4.Controls.Add(this.btn上下马达上下);
- this.uiGroupBox4.Controls.Add(this.btn上下马达回原);
- this.uiGroupBox4.Controls.Add(this.btn上升);
- this.uiGroupBox4.Controls.Add(this.btn下降);
- this.uiGroupBox4.Controls.Add(this.plcUiNumberDisplay5);
- this.uiGroupBox4.Controls.Add(this.uiLabel24);
- this.uiGroupBox4.Controls.Add(this.plcUiNumberDisplay6);
- this.uiGroupBox4.Controls.Add(this.uiLabel25);
- this.uiGroupBox4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox4.Location = new System.Drawing.Point(8, 5);
- this.uiGroupBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox4.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox4.Name = "uiGroupBox4";
- this.uiGroupBox4.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox4.Size = new System.Drawing.Size(1042, 194);
- this.uiGroupBox4.TabIndex = 22;
- this.uiGroupBox4.Text = "上下";
- this.uiGroupBox4.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // plcUiLight40
- //
- this.plcUiLight40.DisabilityTriggerNode = null;
- this.plcUiLight40.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight40.InvisibilityTriggerNode = null;
- this.plcUiLight40.Location = new System.Drawing.Point(491, 121);
- this.plcUiLight40.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight40.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight40.Name = "plcUiLight40";
- this.plcUiLight40.NodeName = "回原完成";
- this.plcUiLight40.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight40.OffText = null;
- this.plcUiLight40.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight40.OnText = null;
- this.plcUiLight40.Radius = 39;
- this.plcUiLight40.ReadNode = new Node("Application.A26_DirectionTurn_Auto.b下压轴回原完成", NodeType.BOOL, null);
- this.plcUiLight40.ShowText = true;
- this.plcUiLight40.Size = new System.Drawing.Size(111, 39);
- this.plcUiLight40.State = Sunny.UI.UILightState.Off;
- this.plcUiLight40.TabIndex = 203;
- this.plcUiLight40.Text = "回原完成";
- this.plcUiLight40.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight40.WriteNode = null;
- //
- // plcUiLight41
- //
- this.plcUiLight41.DisabilityTriggerNode = null;
- this.plcUiLight41.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight41.InvisibilityTriggerNode = null;
- this.plcUiLight41.Location = new System.Drawing.Point(379, 121);
- this.plcUiLight41.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight41.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight41.Name = "plcUiLight41";
- this.plcUiLight41.NodeName = "Error";
- this.plcUiLight41.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight41.OffText = null;
- this.plcUiLight41.On_Color = System.Drawing.Color.Red;
- this.plcUiLight41.OnColor = System.Drawing.Color.Red;
- this.plcUiLight41.OnText = null;
- this.plcUiLight41.Radius = 39;
- this.plcUiLight41.ReadNode = new Node("Application.A26_DirectionTurn_Auto.b下压轴Error", NodeType.BOOL, "轴状态");
- this.plcUiLight41.ShowText = true;
- this.plcUiLight41.Size = new System.Drawing.Size(92, 39);
- this.plcUiLight41.State = Sunny.UI.UILightState.Off;
- this.plcUiLight41.TabIndex = 202;
- this.plcUiLight41.Text = "Error";
- this.plcUiLight41.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight41.WriteNode = null;
- //
- // plcUiLight42
- //
- this.plcUiLight42.DisabilityTriggerNode = null;
- this.plcUiLight42.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight42.InvisibilityTriggerNode = null;
- this.plcUiLight42.Location = new System.Drawing.Point(267, 121);
- this.plcUiLight42.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight42.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight42.Name = "plcUiLight42";
- this.plcUiLight42.NodeName = "使能状态";
- this.plcUiLight42.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight42.OffText = null;
- this.plcUiLight42.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight42.OnText = null;
- this.plcUiLight42.Radius = 39;
- this.plcUiLight42.ReadNode = new Node("Application.A26_DirectionTurn_Auto.b下压轴使能状态", NodeType.BOOL, null);
- this.plcUiLight42.ShowText = true;
- this.plcUiLight42.Size = new System.Drawing.Size(112, 39);
- this.plcUiLight42.State = Sunny.UI.UILightState.Off;
- this.plcUiLight42.TabIndex = 201;
- this.plcUiLight42.Text = "使能状态";
- this.plcUiLight42.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight42.WriteNode = null;
- //
- // btn上下马达上电
- //
- this.btn上下马达上电.ButtonType = PlcUiControl.ButtonType.交替型;
- this.btn上下马达上电.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btn上下马达上电.DisabilityTriggerNode = null;
- this.btn上下马达上电.FillColor = System.Drawing.Color.Green;
- this.btn上下马达上电.FillHoverColor = System.Drawing.Color.Green;
- this.btn上下马达上电.FillSelectedColor = System.Drawing.Color.Green;
- this.btn上下马达上电.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn上下马达上电.InvisibilityTriggerNode = null;
- this.btn上下马达上电.Location = new System.Drawing.Point(611, 40);
- this.btn上下马达上电.Maximum = 0D;
- this.btn上下马达上电.Minimum = 0D;
- this.btn上下马达上电.MinimumSize = new System.Drawing.Size(1, 1);
- this.btn上下马达上电.Name = "btn上下马达上电";
- this.btn上下马达上电.NeedUserEnsure = false;
- this.btn上下马达上电.OffColor = System.Drawing.Color.Green;
- this.btn上下马达上电.OffSymbol = 0;
- this.btn上下马达上电.OffText = "马达上电";
- this.btn上下马达上电.OnColor = System.Drawing.Color.Gray;
- this.btn上下马达上电.OnSymbol = 0;
- this.btn上下马达上电.OnText = "马达断电";
- this.btn上下马达上电.ReadNode = new Node("Application.A26_DirectionTurn_Manual.b下压马达断使能", NodeType.BOOL, null);
- this.btn上下马达上电.Size = new System.Drawing.Size(80, 66);
- this.btn上下马达上电.Symbol = 0;
- this.btn上下马达上电.TabIndex = 13;
- this.btn上下马达上电.Text = "马达上电";
- this.btn上下马达上电.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn上下马达上电.WriteNode = new Node("Application.A26_DirectionTurn_Manual.b下压马达断使能", NodeType.BOOL, null);
- //
- // txt上下马达下位置
- //
- this.txt上下马达下位置.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt上下马达下位置.DisabilityTriggerNode = null;
- this.txt上下马达下位置.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt上下马达下位置.Gain = 1D;
- this.txt上下马达下位置.IntegerDigits = 0;
- this.txt上下马达下位置.InvisibilityTriggerNode = null;
- this.txt上下马达下位置.Location = new System.Drawing.Point(128, 158);
- this.txt上下马达下位置.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt上下马达下位置.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt上下马达下位置.Name = "txt上下马达下位置";
- this.txt上下马达下位置.Padding = new System.Windows.Forms.Padding(5);
- this.txt上下马达下位置.ReadNode = new Node("Application.A26_DirectionTurn_Manual.lr下压马达下位置设定", NodeType.LREAL, "下压伺服下位置设定——HMIset");
- this.txt上下马达下位置.ShowText = false;
- this.txt上下马达下位置.Size = new System.Drawing.Size(125, 27);
- this.txt上下马达下位置.TabIndex = 12;
- this.txt上下马达下位置.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt上下马达下位置.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt上下马达下位置.Watermark = "";
- this.txt上下马达下位置.WriteNode = new Node("Application.A26_DirectionTurn_Manual.lr下压马达下位置设定", NodeType.LREAL, "下压伺服下位置设定——HMIset");
- //
- // uiLabel22
- //
- this.uiLabel22.AutoSize = true;
- this.uiLabel22.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel22.Location = new System.Drawing.Point(27, 160);
- this.uiLabel22.Name = "uiLabel22";
- this.uiLabel22.Size = new System.Drawing.Size(87, 16);
- this.uiLabel22.TabIndex = 11;
- this.uiLabel22.Text = "马达下位置";
- //
- // txt上下马达上位置
- //
- this.txt上下马达上位置.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt上下马达上位置.DisabilityTriggerNode = null;
- this.txt上下马达上位置.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt上下马达上位置.Gain = 1D;
- this.txt上下马达上位置.IntegerDigits = 0;
- this.txt上下马达上位置.InvisibilityTriggerNode = null;
- this.txt上下马达上位置.Location = new System.Drawing.Point(128, 121);
- this.txt上下马达上位置.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt上下马达上位置.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt上下马达上位置.Name = "txt上下马达上位置";
- this.txt上下马达上位置.Padding = new System.Windows.Forms.Padding(5);
- this.txt上下马达上位置.ReadNode = new Node("Application.A26_DirectionTurn_Manual.lr下压马达上位置设定", NodeType.LREAL, "下压伺服上位置设定——HMIset");
- this.txt上下马达上位置.ShowText = false;
- this.txt上下马达上位置.Size = new System.Drawing.Size(125, 27);
- this.txt上下马达上位置.TabIndex = 10;
- this.txt上下马达上位置.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt上下马达上位置.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt上下马达上位置.Watermark = "";
- this.txt上下马达上位置.WriteNode = new Node("Application.A26_DirectionTurn_Manual.lr下压马达上位置设定", NodeType.LREAL, "下压伺服上位置设定——HMIset");
- //
- // uiLabel23
- //
- this.uiLabel23.AutoSize = true;
- this.uiLabel23.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel23.Location = new System.Drawing.Point(27, 123);
- this.uiLabel23.Name = "uiLabel23";
- this.uiLabel23.Size = new System.Drawing.Size(87, 16);
- this.uiLabel23.TabIndex = 9;
- this.uiLabel23.Text = "马达上位置";
- //
- // btn上下马达上下
- //
- this.btn上下马达上下.ButtonType = PlcUiControl.ButtonType.保持型;
- this.btn上下马达上下.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btn上下马达上下.DisabilityTriggerNode = null;
- this.btn上下马达上下.FillColor = System.Drawing.Color.LightSeaGreen;
- this.btn上下马达上下.FillHoverColor = System.Drawing.Color.LightSeaGreen;
- this.btn上下马达上下.FillSelectedColor = System.Drawing.Color.LightSeaGreen;
- this.btn上下马达上下.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn上下马达上下.InvisibilityTriggerNode = null;
- this.btn上下马达上下.IsReadWriteNodeSame = false;
- this.btn上下马达上下.Location = new System.Drawing.Point(828, 40);
- this.btn上下马达上下.Maximum = 0D;
- this.btn上下马达上下.Minimum = 0D;
- this.btn上下马达上下.MinimumSize = new System.Drawing.Size(1, 1);
- this.btn上下马达上下.Name = "btn上下马达上下";
- this.btn上下马达上下.NeedUserEnsure = false;
- this.btn上下马达上下.OffColor = System.Drawing.Color.LightSeaGreen;
- this.btn上下马达上下.OffSymbol = 361660;
- this.btn上下马达上下.OffText = "下位";
- this.btn上下马达上下.OnColor = System.Drawing.Color.Green;
- this.btn上下马达上下.OnSymbol = 361660;
- this.btn上下马达上下.OnText = "上位";
- this.btn上下马达上下.ReadNode = new Node("Application.Var_state.AxisPosCheck[15]", NodeType.BOOL, null);
- this.btn上下马达上下.Size = new System.Drawing.Size(99, 66);
- this.btn上下马达上下.Symbol = 361660;
- this.btn上下马达上下.SymbolSize = 48;
- this.btn上下马达上下.TabIndex = 8;
- this.btn上下马达上下.Text = "下位";
- this.btn上下马达上下.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn上下马达上下.WriteNode = new Node("Application.A26_DirectionTurn_Manual.b下压马达上下", NodeType.BOOL, null);
- //
- // btn上下马达回原
- //
- this.btn上下马达回原.ButtonType = PlcUiControl.ButtonType.保持型;
- this.btn上下马达回原.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btn上下马达回原.DisabilityTriggerNode = null;
- this.btn上下马达回原.FillColor = System.Drawing.Color.LightSeaGreen;
- this.btn上下马达回原.FillHoverColor = System.Drawing.Color.LightSeaGreen;
- this.btn上下马达回原.FillSelectedColor = System.Drawing.Color.LightSeaGreen;
- this.btn上下马达回原.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn上下马达回原.InvisibilityTriggerNode = null;
- this.btn上下马达回原.Location = new System.Drawing.Point(717, 40);
- this.btn上下马达回原.Maximum = 0D;
- this.btn上下马达回原.Minimum = 0D;
- this.btn上下马达回原.MinimumSize = new System.Drawing.Size(1, 1);
- this.btn上下马达回原.Name = "btn上下马达回原";
- this.btn上下马达回原.NeedUserEnsure = false;
- this.btn上下马达回原.OffColor = System.Drawing.Color.LightSeaGreen;
- this.btn上下马达回原.OffSymbol = 0;
- this.btn上下马达回原.OffText = "回原";
- this.btn上下马达回原.OnColor = System.Drawing.Color.Green;
- this.btn上下马达回原.OnSymbol = 0;
- this.btn上下马达回原.OnText = "回原";
- this.btn上下马达回原.ReadNode = new Node("Application.A26_DirectionTurn_Manual.b下压马达回原点", NodeType.BOOL, null);
- this.btn上下马达回原.Size = new System.Drawing.Size(80, 66);
- this.btn上下马达回原.Symbol = 0;
- this.btn上下马达回原.TabIndex = 7;
- this.btn上下马达回原.Text = "回原";
- this.btn上下马达回原.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn上下马达回原.WriteNode = new Node("Application.A26_DirectionTurn_Manual.b下压马达回原点", NodeType.BOOL, null);
- //
- // btn上升
- //
- this.btn上升.ButtonType = PlcUiControl.ButtonType.保持型;
- this.btn上升.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btn上升.DisabilityTriggerNode = null;
- this.btn上升.FillColor = System.Drawing.Color.LightSeaGreen;
- this.btn上升.FillHoverColor = System.Drawing.Color.LightSeaGreen;
- this.btn上升.FillSelectedColor = System.Drawing.Color.LightSeaGreen;
- this.btn上升.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn上升.InvisibilityTriggerNode = null;
- this.btn上升.Location = new System.Drawing.Point(445, 40);
- this.btn上升.Maximum = 0D;
- this.btn上升.Minimum = 0D;
- this.btn上升.MinimumSize = new System.Drawing.Size(1, 1);
- this.btn上升.Name = "btn上升";
- this.btn上升.NeedUserEnsure = false;
- this.btn上升.OffColor = System.Drawing.Color.LightSeaGreen;
- this.btn上升.OffSymbol = 361610;
- this.btn上升.OffText = "上升";
- this.btn上升.OnColor = System.Drawing.Color.Green;
- this.btn上升.OnSymbol = 361610;
- this.btn上升.OnText = "上升";
- this.btn上升.ReadNode = new Node("Application.A26_DirectionTurn_Manual.b下压马达上升", NodeType.BOOL, null);
- this.btn上升.Size = new System.Drawing.Size(147, 66);
- this.btn上升.Symbol = 361610;
- this.btn上升.SymbolSize = 72;
- this.btn上升.TabIndex = 5;
- this.btn上升.Text = "上升";
- this.btn上升.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn上升.WriteNode = new Node("Application.A26_DirectionTurn_Manual.b下压马达上升", NodeType.BOOL, null);
- //
- // btn下降
- //
- this.btn下降.ButtonType = PlcUiControl.ButtonType.保持型;
- this.btn下降.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btn下降.DisabilityTriggerNode = null;
- this.btn下降.FillColor = System.Drawing.Color.LightSeaGreen;
- this.btn下降.FillHoverColor = System.Drawing.Color.LightSeaGreen;
- this.btn下降.FillSelectedColor = System.Drawing.Color.LightSeaGreen;
- this.btn下降.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn下降.InvisibilityTriggerNode = null;
- this.btn下降.Location = new System.Drawing.Point(267, 40);
- this.btn下降.Maximum = 0D;
- this.btn下降.Minimum = 0D;
- this.btn下降.MinimumSize = new System.Drawing.Size(1, 1);
- this.btn下降.Name = "btn下降";
- this.btn下降.NeedUserEnsure = false;
- this.btn下降.OffColor = System.Drawing.Color.LightSeaGreen;
- this.btn下降.OffSymbol = 361611;
- this.btn下降.OffText = "下降";
- this.btn下降.OnColor = System.Drawing.Color.Green;
- this.btn下降.OnSymbol = 361611;
- this.btn下降.OnText = "下降";
- this.btn下降.ReadNode = new Node("Application.A26_DirectionTurn_Manual.b下压马达下降", NodeType.BOOL, null);
- this.btn下降.Size = new System.Drawing.Size(147, 66);
- this.btn下降.Symbol = 361611;
- this.btn下降.SymbolSize = 72;
- this.btn下降.TabIndex = 4;
- this.btn下降.Text = "下降";
- this.btn下降.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btn下降.WriteNode = new Node("Application.A26_DirectionTurn_Manual.b下压马达下降", NodeType.BOOL, null);
- //
- // plcUiNumberDisplay5
- //
- this.plcUiNumberDisplay5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.plcUiNumberDisplay5.DecimalPlaces = 2;
- this.plcUiNumberDisplay5.DisabilityTriggerNode = null;
- this.plcUiNumberDisplay5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiNumberDisplay5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.plcUiNumberDisplay5.Gain = 1D;
- this.plcUiNumberDisplay5.IntegerDigits = 0;
- this.plcUiNumberDisplay5.InvisibilityTriggerNode = null;
- this.plcUiNumberDisplay5.Location = new System.Drawing.Point(128, 78);
- this.plcUiNumberDisplay5.Name = "plcUiNumberDisplay5";
- this.plcUiNumberDisplay5.Preffix = null;
- this.plcUiNumberDisplay5.ReadNode = new Node("Application.A26_DirectionTurn_Manual.b下压马达当前扭矩", NodeType.LREAL, "下压伺服扭矩显示——HMIscreen");
- this.plcUiNumberDisplay5.Size = new System.Drawing.Size(125, 27);
- this.plcUiNumberDisplay5.Suffix = null;
- this.plcUiNumberDisplay5.TabIndex = 3;
- this.plcUiNumberDisplay5.Text = "0";
- this.plcUiNumberDisplay5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.plcUiNumberDisplay5.WriteNode = null;
- //
- // uiLabel24
- //
- this.uiLabel24.AutoSize = true;
- this.uiLabel24.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel24.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel24.Location = new System.Drawing.Point(27, 83);
- this.uiLabel24.Name = "uiLabel24";
- this.uiLabel24.Size = new System.Drawing.Size(71, 16);
- this.uiLabel24.TabIndex = 2;
- this.uiLabel24.Text = "当前扭矩";
- //
- // plcUiNumberDisplay6
- //
- this.plcUiNumberDisplay6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.plcUiNumberDisplay6.DecimalPlaces = 2;
- this.plcUiNumberDisplay6.DisabilityTriggerNode = null;
- this.plcUiNumberDisplay6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiNumberDisplay6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.plcUiNumberDisplay6.Gain = 1D;
- this.plcUiNumberDisplay6.IntegerDigits = 0;
- this.plcUiNumberDisplay6.InvisibilityTriggerNode = null;
- this.plcUiNumberDisplay6.Location = new System.Drawing.Point(128, 39);
- this.plcUiNumberDisplay6.Name = "plcUiNumberDisplay6";
- this.plcUiNumberDisplay6.Preffix = null;
- this.plcUiNumberDisplay6.ReadNode = new Node("Application.A26_DirectionTurn_Manual.b下压马达当前位置", NodeType.LREAL, "下压伺服位置显示——HMIscreen");
- this.plcUiNumberDisplay6.Size = new System.Drawing.Size(125, 27);
- this.plcUiNumberDisplay6.Suffix = null;
- this.plcUiNumberDisplay6.TabIndex = 1;
- this.plcUiNumberDisplay6.Text = "0";
- this.plcUiNumberDisplay6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.plcUiNumberDisplay6.WriteNode = null;
- //
- // uiLabel25
- //
- this.uiLabel25.AutoSize = true;
- this.uiLabel25.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel25.Location = new System.Drawing.Point(27, 44);
- this.uiLabel25.Name = "uiLabel25";
- this.uiLabel25.Size = new System.Drawing.Size(71, 16);
- this.uiLabel25.TabIndex = 0;
- this.uiLabel25.Text = "当前位置";
- //
- // tabPage2
- //
- this.tabPage2.Location = new System.Drawing.Point(0, 40);
- this.tabPage2.Name = "tabPage2";
- this.tabPage2.Size = new System.Drawing.Size(200, 60);
- this.tabPage2.TabIndex = 1;
- this.tabPage2.Text = "功能设置";
- this.tabPage2.UseVisualStyleBackColor = true;
- //
- // tabPage3
- //
- this.tabPage3.Controls.Add(this.uiGroupBox5);
- this.tabPage3.Location = new System.Drawing.Point(0, 40);
- this.tabPage3.Name = "tabPage3";
- this.tabPage3.Size = new System.Drawing.Size(200, 60);
- this.tabPage3.TabIndex = 2;
- this.tabPage3.Text = "参数设置";
- this.tabPage3.UseVisualStyleBackColor = true;
- //
- // uiGroupBox5
- //
- this.uiGroupBox5.Controls.Add(this.uiLabel27);
- this.uiGroupBox5.Controls.Add(this.cob旋转角度);
- this.uiGroupBox5.Controls.Add(this.uiLabel28);
- this.uiGroupBox5.Controls.Add(this.txt旋转完成延时);
- this.uiGroupBox5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox5.Location = new System.Drawing.Point(8, 5);
- this.uiGroupBox5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox5.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox5.Name = "uiGroupBox5";
- this.uiGroupBox5.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox5.Size = new System.Drawing.Size(275, 125);
- this.uiGroupBox5.TabIndex = 38;
- this.uiGroupBox5.Text = "参数";
- this.uiGroupBox5.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // uiLabel27
- //
- this.uiLabel27.AutoSize = true;
- this.uiLabel27.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel27.Location = new System.Drawing.Point(3, 42);
- this.uiLabel27.Name = "uiLabel27";
- this.uiLabel27.Size = new System.Drawing.Size(127, 16);
- this.uiLabel27.TabIndex = 32;
- this.uiLabel27.Text = "旋转2完成延时ms";
- //
- // cob旋转角度
- //
- this.cob旋转角度.DataSource = null;
- this.cob旋转角度.DisabilityTriggerNode = null;
- this.cob旋转角度.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
- this.cob旋转角度.FillColor = System.Drawing.Color.White;
- this.cob旋转角度.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cob旋转角度.IndexBase = 0;
- this.cob旋转角度.InvisibilityTriggerNode = null;
- this.cob旋转角度.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
- this.cob旋转角度.Items.AddRange(new object[] {
- "0度",
- "90度",
- "180度",
- "-90度"});
- this.cob旋转角度.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.cob旋转角度.Location = new System.Drawing.Point(135, 82);
- this.cob旋转角度.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cob旋转角度.MinimumSize = new System.Drawing.Size(63, 0);
- this.cob旋转角度.Name = "cob旋转角度";
- this.cob旋转角度.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cob旋转角度.ReadNode = new Node("Application.A26_DirectionTurn_Auto.lr_自动旋转角度", NodeType.UDINT, "lr旋转正向角度自动——HMIset");
- this.cob旋转角度.Size = new System.Drawing.Size(125, 27);
- this.cob旋转角度.SymbolSize = 24;
- this.cob旋转角度.TabIndex = 39;
- this.cob旋转角度.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cob旋转角度.Watermark = "";
- this.cob旋转角度.WriteNode = new Node("Application.A26_DirectionTurn_Auto.lr_自动旋转角度", NodeType.UDINT, "lr旋转正向角度自动——HMIset");
- //
- // uiLabel28
- //
- this.uiLabel28.AutoSize = true;
- this.uiLabel28.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel28.Location = new System.Drawing.Point(57, 87);
- this.uiLabel28.Name = "uiLabel28";
- this.uiLabel28.Size = new System.Drawing.Size(71, 16);
- this.uiLabel28.TabIndex = 39;
- this.uiLabel28.Text = "旋转角度";
- //
- // txt旋转完成延时
- //
- this.txt旋转完成延时.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt旋转完成延时.DisabilityTriggerNode = null;
- this.txt旋转完成延时.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt旋转完成延时.Gain = 1D;
- this.txt旋转完成延时.IntegerDigits = 0;
- this.txt旋转完成延时.InvisibilityTriggerNode = null;
- this.txt旋转完成延时.Location = new System.Drawing.Point(135, 37);
- this.txt旋转完成延时.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt旋转完成延时.Minimum = 0D;
- this.txt旋转完成延时.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt旋转完成延时.Name = "txt旋转完成延时";
- this.txt旋转完成延时.Padding = new System.Windows.Forms.Padding(5);
- this.txt旋转完成延时.ReadNode = new Node("Application.A26_DirectionTurn_Auto.ui定位延时", NodeType.UDINT, "定位延时");
- this.txt旋转完成延时.ShowText = false;
- this.txt旋转完成延时.Size = new System.Drawing.Size(125, 27);
- this.txt旋转完成延时.TabIndex = 33;
- this.txt旋转完成延时.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt旋转完成延时.Type = Sunny.UI.UITextBox.UIEditType.Integer;
- this.txt旋转完成延时.Watermark = "";
- this.txt旋转完成延时.WriteNode = new Node("Application.A26_DirectionTurn_Auto.ui定位延时", NodeType.UDINT, "定位延时");
- //
- // tabPage4
- //
- this.tabPage4.Controls.Add(this.uiGroupBox1);
- this.tabPage4.Controls.Add(this.uiGroupBox2);
- this.tabPage4.Location = new System.Drawing.Point(0, 40);
- this.tabPage4.Name = "tabPage4";
- this.tabPage4.Size = new System.Drawing.Size(200, 60);
- this.tabPage4.TabIndex = 3;
- this.tabPage4.Text = "马达参数设置";
- this.tabPage4.UseVisualStyleBackColor = true;
- //
- // uiGroupBox1
- //
- this.uiGroupBox1.Controls.Add(this.plcUiNumberDisplay1);
- this.uiGroupBox1.Controls.Add(this.txt旋转马达伺服输出转矩限制);
- this.uiGroupBox1.Controls.Add(this.uiLabel1);
- this.uiGroupBox1.Controls.Add(this.uiLabel2);
- this.uiGroupBox1.Controls.Add(this.txt旋转马达撞击报警阈值);
- this.uiGroupBox1.Controls.Add(this.uiLabel3);
- this.uiGroupBox1.Controls.Add(this.txt旋转马达扭矩报警阈值);
- this.uiGroupBox1.Controls.Add(this.uiLabel4);
- this.uiGroupBox1.Controls.Add(this.txt旋转马达最高速);
- this.uiGroupBox1.Controls.Add(this.uiLabel5);
- this.uiGroupBox1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox1.Location = new System.Drawing.Point(8, 290);
- this.uiGroupBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox1.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox1.Name = "uiGroupBox1";
- this.uiGroupBox1.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox1.Size = new System.Drawing.Size(1097, 198);
- this.uiGroupBox1.TabIndex = 9;
- this.uiGroupBox1.Text = "旋转马达";
- this.uiGroupBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // plcUiNumberDisplay1
- //
- this.plcUiNumberDisplay1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.plcUiNumberDisplay1.DecimalPlaces = 2;
- this.plcUiNumberDisplay1.DisabilityTriggerNode = null;
- this.plcUiNumberDisplay1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiNumberDisplay1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.plcUiNumberDisplay1.Gain = 1D;
- this.plcUiNumberDisplay1.IntegerDigits = 0;
- this.plcUiNumberDisplay1.InvisibilityTriggerNode = null;
- this.plcUiNumberDisplay1.Location = new System.Drawing.Point(150, 36);
- this.plcUiNumberDisplay1.Name = "plcUiNumberDisplay1";
- this.plcUiNumberDisplay1.Preffix = null;
- this.plcUiNumberDisplay1.ReadNode = new Node("Application.A26_DirectionTurn_Manual.b方向旋转马达当前扭矩", NodeType.LREAL, "方向旋转马达扭矩显示——HMIscreen");
- this.plcUiNumberDisplay1.Size = new System.Drawing.Size(125, 27);
- this.plcUiNumberDisplay1.Suffix = null;
- this.plcUiNumberDisplay1.TabIndex = 18;
- this.plcUiNumberDisplay1.Text = "0";
- this.plcUiNumberDisplay1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.plcUiNumberDisplay1.WriteNode = null;
- //
- // txt旋转马达伺服输出转矩限制
- //
- this.txt旋转马达伺服输出转矩限制.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt旋转马达伺服输出转矩限制.DisabilityTriggerNode = null;
- this.txt旋转马达伺服输出转矩限制.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt旋转马达伺服输出转矩限制.Gain = 1D;
- this.txt旋转马达伺服输出转矩限制.IntegerDigits = 0;
- this.txt旋转马达伺服输出转矩限制.InvisibilityTriggerNode = null;
- this.txt旋转马达伺服输出转矩限制.Location = new System.Drawing.Point(435, 111);
- this.txt旋转马达伺服输出转矩限制.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt旋转马达伺服输出转矩限制.Maximum = 350D;
- this.txt旋转马达伺服输出转矩限制.Minimum = 0D;
- this.txt旋转马达伺服输出转矩限制.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt旋转马达伺服输出转矩限制.Name = "txt旋转马达伺服输出转矩限制";
- this.txt旋转马达伺服输出转矩限制.Padding = new System.Windows.Forms.Padding(5);
- this.txt旋转马达伺服输出转矩限制.ReadNode = new Node("Application.A26_DirectionTurn_Auto.lr_DircTurnAxis_TorqueLimit", NodeType.LREAL, "lr旋转伺服转矩限制——HMIset");
- this.txt旋转马达伺服输出转矩限制.ShowText = false;
- this.txt旋转马达伺服输出转矩限制.Size = new System.Drawing.Size(125, 27);
- this.txt旋转马达伺服输出转矩限制.TabIndex = 17;
- this.txt旋转马达伺服输出转矩限制.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt旋转马达伺服输出转矩限制.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt旋转马达伺服输出转矩限制.Watermark = "";
- this.txt旋转马达伺服输出转矩限制.WriteNode = new Node("Application.A26_DirectionTurn_Auto.lr_DircTurnAxis_TorqueLimit", NodeType.LREAL, "lr旋转伺服转矩限制——HMIset");
- //
- // uiLabel1
- //
- this.uiLabel1.AutoSize = true;
- this.uiLabel1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel1.Location = new System.Drawing.Point(287, 117);
- this.uiLabel1.Name = "uiLabel1";
- this.uiLabel1.Size = new System.Drawing.Size(143, 16);
- this.uiLabel1.TabIndex = 16;
- this.uiLabel1.Text = "伺服输出转矩限制%";
- //
- // uiLabel2
- //
- this.uiLabel2.AutoSize = true;
- this.uiLabel2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel2.Location = new System.Drawing.Point(72, 41);
- this.uiLabel2.Name = "uiLabel2";
- this.uiLabel2.Size = new System.Drawing.Size(71, 16);
- this.uiLabel2.TabIndex = 15;
- this.uiLabel2.Text = "当前扭矩";
- //
- // txt旋转马达撞击报警阈值
- //
- this.txt旋转马达撞击报警阈值.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt旋转马达撞击报警阈值.DisabilityTriggerNode = null;
- this.txt旋转马达撞击报警阈值.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt旋转马达撞击报警阈值.Gain = 1D;
- this.txt旋转马达撞击报警阈值.IntegerDigits = 0;
- this.txt旋转马达撞击报警阈值.InvisibilityTriggerNode = null;
- this.txt旋转马达撞击报警阈值.Location = new System.Drawing.Point(435, 36);
- this.txt旋转马达撞击报警阈值.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt旋转马达撞击报警阈值.Maximum = 350D;
- this.txt旋转马达撞击报警阈值.Minimum = 0D;
- this.txt旋转马达撞击报警阈值.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt旋转马达撞击报警阈值.Name = "txt旋转马达撞击报警阈值";
- this.txt旋转马达撞击报警阈值.Padding = new System.Windows.Forms.Padding(5);
- this.txt旋转马达撞击报警阈值.ReadNode = new Node("Application.A26_DirectionTurn_Auto.lr_DircTurnAxis_ImpactAlarm", NodeType.LREAL, "lr旋转伺服撞击报警设置——HMIset");
- this.txt旋转马达撞击报警阈值.ShowText = false;
- this.txt旋转马达撞击报警阈值.Size = new System.Drawing.Size(125, 27);
- this.txt旋转马达撞击报警阈值.TabIndex = 14;
- this.txt旋转马达撞击报警阈值.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt旋转马达撞击报警阈值.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt旋转马达撞击报警阈值.Watermark = "";
- this.txt旋转马达撞击报警阈值.WriteNode = new Node("Application.A26_DirectionTurn_Auto.lr_DircTurnAxis_ImpactAlarm", NodeType.LREAL, "lr旋转伺服撞击报警设置——HMIset");
- //
- // uiLabel3
- //
- this.uiLabel3.AutoSize = true;
- this.uiLabel3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel3.Location = new System.Drawing.Point(319, 42);
- this.uiLabel3.Name = "uiLabel3";
- this.uiLabel3.Size = new System.Drawing.Size(111, 16);
- this.uiLabel3.TabIndex = 13;
- this.uiLabel3.Text = "撞击报警阈值%";
- //
- // txt旋转马达扭矩报警阈值
- //
- this.txt旋转马达扭矩报警阈值.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt旋转马达扭矩报警阈值.DisabilityTriggerNode = null;
- this.txt旋转马达扭矩报警阈值.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt旋转马达扭矩报警阈值.Gain = 1D;
- this.txt旋转马达扭矩报警阈值.IntegerDigits = 0;
- this.txt旋转马达扭矩报警阈值.InvisibilityTriggerNode = null;
- this.txt旋转马达扭矩报警阈值.Location = new System.Drawing.Point(435, 74);
- this.txt旋转马达扭矩报警阈值.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt旋转马达扭矩报警阈值.Maximum = 350D;
- this.txt旋转马达扭矩报警阈值.Minimum = 0D;
- this.txt旋转马达扭矩报警阈值.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt旋转马达扭矩报警阈值.Name = "txt旋转马达扭矩报警阈值";
- this.txt旋转马达扭矩报警阈值.Padding = new System.Windows.Forms.Padding(5);
- this.txt旋转马达扭矩报警阈值.ReadNode = new Node("Application.A26_DirectionTurn_Auto.lr_DircTurnAxis_AlarmTorque", NodeType.LREAL, "lr旋转伺服力矩报警阀值——HMIset");
- this.txt旋转马达扭矩报警阈值.ShowText = false;
- this.txt旋转马达扭矩报警阈值.Size = new System.Drawing.Size(125, 27);
- this.txt旋转马达扭矩报警阈值.TabIndex = 12;
- this.txt旋转马达扭矩报警阈值.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt旋转马达扭矩报警阈值.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt旋转马达扭矩报警阈值.Watermark = "";
- this.txt旋转马达扭矩报警阈值.WriteNode = new Node("Application.A26_DirectionTurn_Auto.lr_DircTurnAxis_AlarmTorque", NodeType.LREAL, "lr旋转伺服力矩报警阀值——HMIset");
- //
- // uiLabel4
- //
- this.uiLabel4.AutoSize = true;
- this.uiLabel4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel4.Location = new System.Drawing.Point(319, 79);
- this.uiLabel4.Name = "uiLabel4";
- this.uiLabel4.Size = new System.Drawing.Size(111, 16);
- this.uiLabel4.TabIndex = 11;
- this.uiLabel4.Text = "扭矩报警阈值%";
- //
- // txt旋转马达最高速
- //
- this.txt旋转马达最高速.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt旋转马达最高速.DisabilityTriggerNode = null;
- this.txt旋转马达最高速.DoubleValue = 1D;
- this.txt旋转马达最高速.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt旋转马达最高速.Gain = 1D;
- this.txt旋转马达最高速.IntegerDigits = 0;
- this.txt旋转马达最高速.InvisibilityTriggerNode = null;
- this.txt旋转马达最高速.Location = new System.Drawing.Point(150, 74);
- this.txt旋转马达最高速.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt旋转马达最高速.Maximum = 999999D;
- this.txt旋转马达最高速.Minimum = 1D;
- this.txt旋转马达最高速.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt旋转马达最高速.Name = "txt旋转马达最高速";
- this.txt旋转马达最高速.Padding = new System.Windows.Forms.Padding(5);
- this.txt旋转马达最高速.ReadNode = new Node("Application.A26_DirectionTurn_Auto.lr_DircTurnAxis_MaxSpeed", NodeType.LREAL, "lr旋转伺服最高速度——HMIset");
- this.txt旋转马达最高速.ShowText = false;
- this.txt旋转马达最高速.Size = new System.Drawing.Size(125, 27);
- this.txt旋转马达最高速.TabIndex = 10;
- this.txt旋转马达最高速.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt旋转马达最高速.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt旋转马达最高速.Watermark = "";
- this.txt旋转马达最高速.WriteNode = new Node("Application.A26_DirectionTurn_Auto.lr_DircTurnAxis_MaxSpeed", NodeType.LREAL, "lr旋转伺服最高速度——HMIset");
- //
- // uiLabel5
- //
- this.uiLabel5.AutoSize = true;
- this.uiLabel5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel5.Location = new System.Drawing.Point(87, 79);
- this.uiLabel5.Name = "uiLabel5";
- this.uiLabel5.Size = new System.Drawing.Size(55, 16);
- this.uiLabel5.TabIndex = 9;
- this.uiLabel5.Text = "最高速";
- //
- // uiGroupBox2
- //
- this.uiGroupBox2.Controls.Add(this.txt防压检测终点);
- this.uiGroupBox2.Controls.Add(this.uiLabel47);
- this.uiGroupBox2.Controls.Add(this.txt防撞检测起点);
- this.uiGroupBox2.Controls.Add(this.txt防撞检测终点);
- this.uiGroupBox2.Controls.Add(this.uiLabel48);
- this.uiGroupBox2.Controls.Add(this.uiLabel49);
- this.uiGroupBox2.Controls.Add(this.uiLabel50);
- this.uiGroupBox2.Controls.Add(this.txt防压检测起点);
- this.uiGroupBox2.Controls.Add(this.txt上下马达速度);
- this.uiGroupBox2.Controls.Add(this.uiLabel6);
- this.uiGroupBox2.Controls.Add(this.txt上下马达偏移量);
- this.uiGroupBox2.Controls.Add(this.uiLabel7);
- this.uiGroupBox2.Controls.Add(this.txt上下马达减速时间);
- this.uiGroupBox2.Controls.Add(this.uiLabel8);
- this.uiGroupBox2.Controls.Add(this.txt上下马达加速时间);
- this.uiGroupBox2.Controls.Add(this.uiLabel9);
- this.uiGroupBox2.Controls.Add(this.txt上下马达伺服输出转矩限制);
- this.uiGroupBox2.Controls.Add(this.uiLabel10);
- this.uiGroupBox2.Controls.Add(this.plcUiNumberDisplay2);
- this.uiGroupBox2.Controls.Add(this.uiLabel11);
- this.uiGroupBox2.Controls.Add(this.txt上下马达防撞报警阈值);
- this.uiGroupBox2.Controls.Add(this.uiLabel17);
- this.uiGroupBox2.Controls.Add(this.txt上下马达防压报警阈值);
- this.uiGroupBox2.Controls.Add(this.uiLabel18);
- this.uiGroupBox2.Controls.Add(this.txt上下马达最高速);
- this.uiGroupBox2.Controls.Add(this.uiLabel19);
- this.uiGroupBox2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox2.Location = new System.Drawing.Point(8, 5);
- this.uiGroupBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox2.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox2.Name = "uiGroupBox2";
- this.uiGroupBox2.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox2.Size = new System.Drawing.Size(1097, 275);
- this.uiGroupBox2.TabIndex = 8;
- this.uiGroupBox2.Text = "上下马达";
- this.uiGroupBox2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // txt防压检测终点
- //
- this.txt防压检测终点.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt防压检测终点.DisabilityTriggerNode = null;
- this.txt防压检测终点.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt防压检测终点.Gain = 1D;
- this.txt防压检测终点.IntegerDigits = 0;
- this.txt防压检测终点.InvisibilityTriggerNode = null;
- this.txt防压检测终点.Location = new System.Drawing.Point(935, 75);
- this.txt防压检测终点.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt防压检测终点.Maximum = 100D;
- this.txt防压检测终点.Minimum = 0D;
- this.txt防压检测终点.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt防压检测终点.Name = "txt防压检测终点";
- this.txt防压检测终点.Padding = new System.Windows.Forms.Padding(5);
- this.txt防压检测终点.ReadNode = new Node("Application.Var_state.lr防压位置终点[15]", NodeType.LREAL, null);
- this.txt防压检测终点.ShowText = false;
- this.txt防压检测终点.Size = new System.Drawing.Size(125, 27);
- this.txt防压检测终点.TabIndex = 109;
- this.txt防压检测终点.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt防压检测终点.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt防压检测终点.Watermark = "";
- this.txt防压检测终点.WriteNode = new Node("Application.Var_state.lr防压位置终点[15]", NodeType.LREAL, null);
- //
- // uiLabel47
- //
- this.uiLabel47.AutoSize = true;
- this.uiLabel47.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel47.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel47.Location = new System.Drawing.Point(583, 40);
- this.uiLabel47.Name = "uiLabel47";
- this.uiLabel47.Size = new System.Drawing.Size(103, 16);
- this.uiLabel47.TabIndex = 102;
- this.uiLabel47.Text = "防撞检测起点";
- //
- // txt防撞检测起点
- //
- this.txt防撞检测起点.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt防撞检测起点.DisabilityTriggerNode = null;
- this.txt防撞检测起点.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt防撞检测起点.Gain = 1D;
- this.txt防撞检测起点.IntegerDigits = 0;
- this.txt防撞检测起点.InvisibilityTriggerNode = null;
- this.txt防撞检测起点.Location = new System.Drawing.Point(693, 35);
- this.txt防撞检测起点.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt防撞检测起点.Maximum = 100D;
- this.txt防撞检测起点.Minimum = 0D;
- this.txt防撞检测起点.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt防撞检测起点.Name = "txt防撞检测起点";
- this.txt防撞检测起点.Padding = new System.Windows.Forms.Padding(5);
- this.txt防撞检测起点.ReadNode = new Node("Application.Var_state.lr防撞位置起点[15]", NodeType.LREAL, null);
- this.txt防撞检测起点.ShowText = false;
- this.txt防撞检测起点.Size = new System.Drawing.Size(125, 27);
- this.txt防撞检测起点.TabIndex = 103;
- this.txt防撞检测起点.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt防撞检测起点.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt防撞检测起点.Watermark = "";
- this.txt防撞检测起点.WriteNode = new Node("Application.Var_state.lr防撞位置起点[15]", NodeType.LREAL, null);
- //
- // txt防撞检测终点
- //
- this.txt防撞检测终点.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt防撞检测终点.DisabilityTriggerNode = null;
- this.txt防撞检测终点.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt防撞检测终点.Gain = 1D;
- this.txt防撞检测终点.IntegerDigits = 0;
- this.txt防撞检测终点.InvisibilityTriggerNode = null;
- this.txt防撞检测终点.Location = new System.Drawing.Point(935, 36);
- this.txt防撞检测终点.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt防撞检测终点.Maximum = 100D;
- this.txt防撞检测终点.Minimum = 0D;
- this.txt防撞检测终点.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt防撞检测终点.Name = "txt防撞检测终点";
- this.txt防撞检测终点.Padding = new System.Windows.Forms.Padding(5);
- this.txt防撞检测终点.ReadNode = new Node("Application.Var_state.lr防撞位置终点[15]", NodeType.LREAL, null);
- this.txt防撞检测终点.ShowText = false;
- this.txt防撞检测终点.Size = new System.Drawing.Size(125, 27);
- this.txt防撞检测终点.TabIndex = 105;
- this.txt防撞检测终点.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt防撞检测终点.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt防撞检测终点.Watermark = "";
- this.txt防撞检测终点.WriteNode = new Node("Application.Var_state.lr防撞位置终点[15]", NodeType.LREAL, null);
- //
- // uiLabel48
- //
- this.uiLabel48.AutoSize = true;
- this.uiLabel48.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel48.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel48.Location = new System.Drawing.Point(825, 79);
- this.uiLabel48.Name = "uiLabel48";
- this.uiLabel48.Size = new System.Drawing.Size(103, 16);
- this.uiLabel48.TabIndex = 108;
- this.uiLabel48.Text = "防压检测终点";
- //
- // uiLabel49
- //
- this.uiLabel49.AutoSize = true;
- this.uiLabel49.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel49.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel49.Location = new System.Drawing.Point(825, 40);
- this.uiLabel49.Name = "uiLabel49";
- this.uiLabel49.Size = new System.Drawing.Size(103, 16);
- this.uiLabel49.TabIndex = 104;
- this.uiLabel49.Text = "防撞检测终点";
- //
- // uiLabel50
- //
- this.uiLabel50.AutoSize = true;
- this.uiLabel50.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel50.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel50.Location = new System.Drawing.Point(583, 80);
- this.uiLabel50.Name = "uiLabel50";
- this.uiLabel50.Size = new System.Drawing.Size(103, 16);
- this.uiLabel50.TabIndex = 106;
- this.uiLabel50.Text = "防压检测起点";
- //
- // txt防压检测起点
- //
- this.txt防压检测起点.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt防压检测起点.DisabilityTriggerNode = null;
- this.txt防压检测起点.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt防压检测起点.Gain = 1D;
- this.txt防压检测起点.IntegerDigits = 0;
- this.txt防压检测起点.InvisibilityTriggerNode = null;
- this.txt防压检测起点.Location = new System.Drawing.Point(693, 75);
- this.txt防压检测起点.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt防压检测起点.Maximum = 100D;
- this.txt防压检测起点.Minimum = 0D;
- this.txt防压检测起点.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt防压检测起点.Name = "txt防压检测起点";
- this.txt防压检测起点.Padding = new System.Windows.Forms.Padding(5);
- this.txt防压检测起点.ReadNode = new Node("Application.Var_state.lr防压位置起点[15]", NodeType.LREAL, null);
- this.txt防压检测起点.ShowText = false;
- this.txt防压检测起点.Size = new System.Drawing.Size(125, 27);
- this.txt防压检测起点.TabIndex = 107;
- this.txt防压检测起点.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt防压检测起点.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt防压检测起点.Watermark = "";
- this.txt防压检测起点.WriteNode = new Node("Application.Var_state.lr防压位置起点[15]", NodeType.LREAL, null);
- //
- // txt上下马达速度
- //
- this.txt上下马达速度.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt上下马达速度.DisabilityTriggerNode = null;
- this.txt上下马达速度.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt上下马达速度.Gain = 1D;
- this.txt上下马达速度.IntegerDigits = 0;
- this.txt上下马达速度.InvisibilityTriggerNode = null;
- this.txt上下马达速度.Location = new System.Drawing.Point(150, 235);
- this.txt上下马达速度.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt上下马达速度.Maximum = 350D;
- this.txt上下马达速度.Minimum = 0D;
- this.txt上下马达速度.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt上下马达速度.Name = "txt上下马达速度";
- this.txt上下马达速度.Padding = new System.Windows.Forms.Padding(5);
- this.txt上下马达速度.ReadNode = new Node("Application.A26_DirectionTurn_Auto.lr_UpDownAxis_Speed", NodeType.LREAL, "lr上下伺服速度——HMIset");
- this.txt上下马达速度.ShowText = false;
- this.txt上下马达速度.Size = new System.Drawing.Size(125, 27);
- this.txt上下马达速度.TabIndex = 25;
- this.txt上下马达速度.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt上下马达速度.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt上下马达速度.Watermark = "";
- this.txt上下马达速度.WriteNode = new Node("Application.A26_DirectionTurn_Auto.lr_UpDownAxis_Speed", NodeType.LREAL, "lr上下伺服速度——HMIset");
- //
- // uiLabel6
- //
- this.uiLabel6.AutoSize = true;
- this.uiLabel6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel6.Location = new System.Drawing.Point(80, 238);
- this.uiLabel6.Name = "uiLabel6";
- this.uiLabel6.Size = new System.Drawing.Size(63, 16);
- this.uiLabel6.TabIndex = 24;
- this.uiLabel6.Text = "速度(%)";
- //
- // txt上下马达偏移量
- //
- this.txt上下马达偏移量.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt上下马达偏移量.DisabilityTriggerNode = null;
- this.txt上下马达偏移量.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt上下马达偏移量.Gain = 1D;
- this.txt上下马达偏移量.IntegerDigits = 0;
- this.txt上下马达偏移量.InvisibilityTriggerNode = null;
- this.txt上下马达偏移量.Location = new System.Drawing.Point(150, 198);
- this.txt上下马达偏移量.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt上下马达偏移量.Maximum = 350D;
- this.txt上下马达偏移量.Minimum = 0D;
- this.txt上下马达偏移量.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt上下马达偏移量.Name = "txt上下马达偏移量";
- this.txt上下马达偏移量.Padding = new System.Windows.Forms.Padding(5);
- this.txt上下马达偏移量.ReadNode = new Node("Application.A26_DirectionTurn_Auto.lr_UpDownAxis_Offset", NodeType.LREAL, "lr上下伺服偏移量——HMIset");
- this.txt上下马达偏移量.ShowText = false;
- this.txt上下马达偏移量.Size = new System.Drawing.Size(125, 27);
- this.txt上下马达偏移量.TabIndex = 23;
- this.txt上下马达偏移量.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt上下马达偏移量.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt上下马达偏移量.Watermark = "";
- this.txt上下马达偏移量.WriteNode = new Node("Application.A26_DirectionTurn_Auto.lr_UpDownAxis_Offset", NodeType.LREAL, "lr上下伺服偏移量——HMIset");
- //
- // uiLabel7
- //
- this.uiLabel7.AutoSize = true;
- this.uiLabel7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel7.Location = new System.Drawing.Point(88, 204);
- this.uiLabel7.Name = "uiLabel7";
- this.uiLabel7.Size = new System.Drawing.Size(55, 16);
- this.uiLabel7.TabIndex = 22;
- this.uiLabel7.Text = "偏移量";
- //
- // txt上下马达减速时间
- //
- this.txt上下马达减速时间.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt上下马达减速时间.DisabilityTriggerNode = null;
- this.txt上下马达减速时间.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt上下马达减速时间.Gain = 1D;
- this.txt上下马达减速时间.IntegerDigits = 0;
- this.txt上下马达减速时间.InvisibilityTriggerNode = null;
- this.txt上下马达减速时间.Location = new System.Drawing.Point(150, 155);
- this.txt上下马达减速时间.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt上下马达减速时间.Maximum = 350D;
- this.txt上下马达减速时间.Minimum = 0D;
- this.txt上下马达减速时间.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt上下马达减速时间.Name = "txt上下马达减速时间";
- this.txt上下马达减速时间.Padding = new System.Windows.Forms.Padding(5);
- this.txt上下马达减速时间.ReadNode = new Node("Application.A26_DirectionTurn_Auto.lr_UpDownAxis_DedTime", NodeType.LREAL, "lr上下伺服减速时间 ms——HMIset");
- this.txt上下马达减速时间.ShowText = false;
- this.txt上下马达减速时间.Size = new System.Drawing.Size(125, 27);
- this.txt上下马达减速时间.TabIndex = 21;
- this.txt上下马达减速时间.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt上下马达减速时间.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt上下马达减速时间.Watermark = "";
- this.txt上下马达减速时间.WriteNode = new Node("Application.A26_DirectionTurn_Auto.lr_UpDownAxis_DedTime", NodeType.LREAL, "lr上下伺服减速时间 ms——HMIset");
- //
- // uiLabel8
- //
- this.uiLabel8.AutoSize = true;
- this.uiLabel8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel8.Location = new System.Drawing.Point(8, 163);
- this.uiLabel8.Name = "uiLabel8";
- this.uiLabel8.Size = new System.Drawing.Size(135, 16);
- this.uiLabel8.TabIndex = 20;
- this.uiLabel8.Text = "马达减速时间(ms)";
- //
- // txt上下马达加速时间
- //
- this.txt上下马达加速时间.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt上下马达加速时间.DisabilityTriggerNode = null;
- this.txt上下马达加速时间.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt上下马达加速时间.Gain = 1D;
- this.txt上下马达加速时间.IntegerDigits = 0;
- this.txt上下马达加速时间.InvisibilityTriggerNode = null;
- this.txt上下马达加速时间.Location = new System.Drawing.Point(150, 115);
- this.txt上下马达加速时间.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt上下马达加速时间.Maximum = 350D;
- this.txt上下马达加速时间.Minimum = 0D;
- this.txt上下马达加速时间.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt上下马达加速时间.Name = "txt上下马达加速时间";
- this.txt上下马达加速时间.Padding = new System.Windows.Forms.Padding(5);
- this.txt上下马达加速时间.ReadNode = new Node("Application.A26_DirectionTurn_Auto.lr_UpDownAxis_AccTime", NodeType.LREAL, "lr上下伺服加速时间 ms——HMIset");
- this.txt上下马达加速时间.ShowText = false;
- this.txt上下马达加速时间.Size = new System.Drawing.Size(125, 27);
- this.txt上下马达加速时间.TabIndex = 19;
- this.txt上下马达加速时间.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt上下马达加速时间.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt上下马达加速时间.Watermark = "";
- this.txt上下马达加速时间.WriteNode = new Node("Application.A26_DirectionTurn_Auto.lr_UpDownAxis_AccTime", NodeType.LREAL, "lr上下伺服加速时间 ms——HMIset");
- //
- // uiLabel9
- //
- this.uiLabel9.AutoSize = true;
- this.uiLabel9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel9.Location = new System.Drawing.Point(8, 120);
- this.uiLabel9.Name = "uiLabel9";
- this.uiLabel9.Size = new System.Drawing.Size(135, 16);
- this.uiLabel9.TabIndex = 18;
- this.uiLabel9.Text = "马达加速时间(ms)";
- //
- // txt上下马达伺服输出转矩限制
- //
- this.txt上下马达伺服输出转矩限制.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt上下马达伺服输出转矩限制.DisabilityTriggerNode = null;
- this.txt上下马达伺服输出转矩限制.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt上下马达伺服输出转矩限制.Gain = 1D;
- this.txt上下马达伺服输出转矩限制.IntegerDigits = 0;
- this.txt上下马达伺服输出转矩限制.InvisibilityTriggerNode = null;
- this.txt上下马达伺服输出转矩限制.Location = new System.Drawing.Point(435, 116);
- this.txt上下马达伺服输出转矩限制.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt上下马达伺服输出转矩限制.Maximum = 350D;
- this.txt上下马达伺服输出转矩限制.Minimum = 0D;
- this.txt上下马达伺服输出转矩限制.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt上下马达伺服输出转矩限制.Name = "txt上下马达伺服输出转矩限制";
- this.txt上下马达伺服输出转矩限制.Padding = new System.Windows.Forms.Padding(5);
- this.txt上下马达伺服输出转矩限制.ReadNode = new Node("Application.A26_DirectionTurn_Auto.lr_UpDownAxis_TorqueLimit", NodeType.LREAL, "lr上下伺服转矩限制——HMIset");
- this.txt上下马达伺服输出转矩限制.ShowText = false;
- this.txt上下马达伺服输出转矩限制.Size = new System.Drawing.Size(125, 27);
- this.txt上下马达伺服输出转矩限制.TabIndex = 17;
- this.txt上下马达伺服输出转矩限制.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt上下马达伺服输出转矩限制.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt上下马达伺服输出转矩限制.Watermark = "";
- this.txt上下马达伺服输出转矩限制.WriteNode = new Node("Application.A26_DirectionTurn_Auto.lr_UpDownAxis_TorqueLimit", NodeType.LREAL, "lr上下伺服转矩限制——HMIset");
- //
- // uiLabel10
- //
- this.uiLabel10.AutoSize = true;
- this.uiLabel10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel10.Location = new System.Drawing.Point(287, 122);
- this.uiLabel10.Name = "uiLabel10";
- this.uiLabel10.Size = new System.Drawing.Size(143, 16);
- this.uiLabel10.TabIndex = 16;
- this.uiLabel10.Text = "伺服输出转矩限制%";
- //
- // plcUiNumberDisplay2
- //
- this.plcUiNumberDisplay2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.plcUiNumberDisplay2.DecimalPlaces = 2;
- this.plcUiNumberDisplay2.DisabilityTriggerNode = null;
- this.plcUiNumberDisplay2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiNumberDisplay2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.plcUiNumberDisplay2.Gain = 1D;
- this.plcUiNumberDisplay2.IntegerDigits = 0;
- this.plcUiNumberDisplay2.InvisibilityTriggerNode = null;
- this.plcUiNumberDisplay2.Location = new System.Drawing.Point(150, 36);
- this.plcUiNumberDisplay2.Name = "plcUiNumberDisplay2";
- this.plcUiNumberDisplay2.Preffix = null;
- this.plcUiNumberDisplay2.ReadNode = new Node("Application.A26_DirectionTurn_Manual.b下压马达当前扭矩", NodeType.LREAL, "下压伺服扭矩显示——HMIscreen");
- this.plcUiNumberDisplay2.Size = new System.Drawing.Size(125, 27);
- this.plcUiNumberDisplay2.Suffix = null;
- this.plcUiNumberDisplay2.TabIndex = 4;
- this.plcUiNumberDisplay2.Text = "0";
- this.plcUiNumberDisplay2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.plcUiNumberDisplay2.WriteNode = null;
- //
- // uiLabel11
- //
- this.uiLabel11.AutoSize = true;
- this.uiLabel11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel11.Location = new System.Drawing.Point(72, 41);
- this.uiLabel11.Name = "uiLabel11";
- this.uiLabel11.Size = new System.Drawing.Size(71, 16);
- this.uiLabel11.TabIndex = 15;
- this.uiLabel11.Text = "当前扭矩";
- //
- // txt上下马达防撞报警阈值
- //
- this.txt上下马达防撞报警阈值.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt上下马达防撞报警阈值.DisabilityTriggerNode = null;
- this.txt上下马达防撞报警阈值.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt上下马达防撞报警阈值.Gain = 1D;
- this.txt上下马达防撞报警阈值.IntegerDigits = 0;
- this.txt上下马达防撞报警阈值.InvisibilityTriggerNode = null;
- this.txt上下马达防撞报警阈值.Location = new System.Drawing.Point(435, 35);
- this.txt上下马达防撞报警阈值.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt上下马达防撞报警阈值.Maximum = 350D;
- this.txt上下马达防撞报警阈值.Minimum = 0D;
- this.txt上下马达防撞报警阈值.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt上下马达防撞报警阈值.Name = "txt上下马达防撞报警阈值";
- this.txt上下马达防撞报警阈值.Padding = new System.Windows.Forms.Padding(5);
- this.txt上下马达防撞报警阈值.ReadNode = new Node("Application.A26_DirectionTurn_Auto.lr_UpDownAxis_ImpactAlarm", NodeType.LREAL, "lr上下伺服撞击报警设置——HMIset");
- this.txt上下马达防撞报警阈值.ShowText = false;
- this.txt上下马达防撞报警阈值.Size = new System.Drawing.Size(125, 27);
- this.txt上下马达防撞报警阈值.TabIndex = 14;
- this.txt上下马达防撞报警阈值.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt上下马达防撞报警阈值.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt上下马达防撞报警阈值.Watermark = "";
- this.txt上下马达防撞报警阈值.WriteNode = new Node("Application.A26_DirectionTurn_Auto.lr_UpDownAxis_ImpactAlarm", NodeType.LREAL, "lr上下伺服撞击报警设置——HMIset");
- //
- // uiLabel17
- //
- this.uiLabel17.AutoSize = true;
- this.uiLabel17.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel17.Location = new System.Drawing.Point(319, 41);
- this.uiLabel17.Name = "uiLabel17";
- this.uiLabel17.Size = new System.Drawing.Size(111, 16);
- this.uiLabel17.TabIndex = 13;
- this.uiLabel17.Text = "防撞报警阈值%";
- //
- // txt上下马达防压报警阈值
- //
- this.txt上下马达防压报警阈值.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt上下马达防压报警阈值.DisabilityTriggerNode = null;
- this.txt上下马达防压报警阈值.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt上下马达防压报警阈值.Gain = 1D;
- this.txt上下马达防压报警阈值.IntegerDigits = 0;
- this.txt上下马达防压报警阈值.InvisibilityTriggerNode = null;
- this.txt上下马达防压报警阈值.Location = new System.Drawing.Point(435, 75);
- this.txt上下马达防压报警阈值.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt上下马达防压报警阈值.Maximum = 350D;
- this.txt上下马达防压报警阈值.Minimum = 0D;
- this.txt上下马达防压报警阈值.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt上下马达防压报警阈值.Name = "txt上下马达防压报警阈值";
- this.txt上下马达防压报警阈值.Padding = new System.Windows.Forms.Padding(5);
- this.txt上下马达防压报警阈值.ReadNode = new Node("Application.A26_DirectionTurn_Auto.lr_UpDownAxis_AlarmTorque", NodeType.LREAL, "lr上下伺服力矩报警阀值——HMIset");
- this.txt上下马达防压报警阈值.ShowText = false;
- this.txt上下马达防压报警阈值.Size = new System.Drawing.Size(125, 27);
- this.txt上下马达防压报警阈值.TabIndex = 12;
- this.txt上下马达防压报警阈值.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt上下马达防压报警阈值.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt上下马达防压报警阈值.Watermark = "";
- this.txt上下马达防压报警阈值.WriteNode = new Node("Application.A26_DirectionTurn_Auto.lr_UpDownAxis_AlarmTorque", NodeType.LREAL, "lr上下伺服力矩报警阀值——HMIset");
- //
- // uiLabel18
- //
- this.uiLabel18.AutoSize = true;
- this.uiLabel18.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel18.Location = new System.Drawing.Point(319, 80);
- this.uiLabel18.Name = "uiLabel18";
- this.uiLabel18.Size = new System.Drawing.Size(111, 16);
- this.uiLabel18.TabIndex = 11;
- this.uiLabel18.Text = "防压报警阈值%";
- //
- // txt上下马达最高速
- //
- this.txt上下马达最高速.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt上下马达最高速.DisabilityTriggerNode = null;
- this.txt上下马达最高速.DoubleValue = 1D;
- this.txt上下马达最高速.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt上下马达最高速.Gain = 1D;
- this.txt上下马达最高速.IntegerDigits = 0;
- this.txt上下马达最高速.InvisibilityTriggerNode = null;
- this.txt上下马达最高速.Location = new System.Drawing.Point(150, 75);
- this.txt上下马达最高速.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt上下马达最高速.Maximum = 999999D;
- this.txt上下马达最高速.Minimum = 1D;
- this.txt上下马达最高速.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt上下马达最高速.Name = "txt上下马达最高速";
- this.txt上下马达最高速.Padding = new System.Windows.Forms.Padding(5);
- this.txt上下马达最高速.ReadNode = new Node("Application.A26_DirectionTurn_Auto.lr_UpDownAxis_MaxSpeed", NodeType.LREAL, "上位界面有的参数\r\nlr上下伺服最高速度——HMIset");
- this.txt上下马达最高速.ShowText = false;
- this.txt上下马达最高速.Size = new System.Drawing.Size(125, 27);
- this.txt上下马达最高速.TabIndex = 10;
- this.txt上下马达最高速.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt上下马达最高速.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt上下马达最高速.Watermark = "";
- this.txt上下马达最高速.WriteNode = new Node("Application.A26_DirectionTurn_Auto.lr_UpDownAxis_MaxSpeed", NodeType.LREAL, "上位界面有的参数\r\nlr上下伺服最高速度——HMIset");
- //
- // uiLabel19
- //
- this.uiLabel19.AutoSize = true;
- this.uiLabel19.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel19.Location = new System.Drawing.Point(88, 80);
- this.uiLabel19.Name = "uiLabel19";
- this.uiLabel19.Size = new System.Drawing.Size(55, 16);
- this.uiLabel19.TabIndex = 9;
- this.uiLabel19.Text = "最高速";
- //
- // tabPage5
- //
- this.tabPage5.Controls.Add(this.plcUiLight1);
- this.tabPage5.Location = new System.Drawing.Point(0, 40);
- this.tabPage5.Name = "tabPage5";
- this.tabPage5.Size = new System.Drawing.Size(200, 60);
- this.tabPage5.TabIndex = 4;
- this.tabPage5.Text = "IO";
- this.tabPage5.UseVisualStyleBackColor = true;
- //
- // plcUiLight1
- //
- this.plcUiLight1.DisabilityTriggerNode = null;
- this.plcUiLight1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight1.InvisibilityTriggerNode = null;
- this.plcUiLight1.Location = new System.Drawing.Point(4, 3);
- this.plcUiLight1.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight1.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight1.Name = "plcUiLight1";
- this.plcUiLight1.NodeName = "b材料检测_低位";
- this.plcUiLight1.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight1.OffText = null;
- this.plcUiLight1.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight1.OnText = null;
- this.plcUiLight1.Radius = 58;
- this.plcUiLight1.ReadNode = new Node("Application.InOutPut.A26转向站2.b材料检测_低位", NodeType.BOOL, null);
- this.plcUiLight1.ShowText = true;
- this.plcUiLight1.Size = new System.Drawing.Size(261, 58);
- this.plcUiLight1.State = Sunny.UI.UILightState.Off;
- this.plcUiLight1.TabIndex = 29;
- this.plcUiLight1.Text = "b材料检测_低位";
- this.plcUiLight1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight1.WriteNode = null;
- //
- // Form26_转向站2
- //
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
- this.ClientSize = new System.Drawing.Size(1366, 768);
- this.Controls.Add(this.uiTabControl1);
- this.Controls.Add(this.uiPanel1);
- this.Name = "Form26_转向站2";
- this.Text = "Form26_转向站2 ";
- this.uiPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
- this.uiTabControl1.ResumeLayout(false);
- this.tabPage1.ResumeLayout(false);
- this.uiGroupBox3.ResumeLayout(false);
- this.uiGroupBox3.PerformLayout();
- this.uiGroupBox4.ResumeLayout(false);
- this.uiGroupBox4.PerformLayout();
- this.tabPage3.ResumeLayout(false);
- this.uiGroupBox5.ResumeLayout(false);
- this.uiGroupBox5.PerformLayout();
- this.tabPage4.ResumeLayout(false);
- this.uiGroupBox1.ResumeLayout(false);
- this.uiGroupBox1.PerformLayout();
- this.uiGroupBox2.ResumeLayout(false);
- this.uiGroupBox2.PerformLayout();
- this.tabPage5.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private Sunny.UI.UIPanel uiPanel1;
- public Sunny.UI.UITabControl uiTabControl1;
- private System.Windows.Forms.TabPage tabPage1;
- private System.Windows.Forms.TabPage tabPage2;
- private System.Windows.Forms.TabPage tabPage3;
- private System.Windows.Forms.TabPage tabPage4;
- private System.Windows.Forms.TabPage tabPage5;
- private PlcUiControl.PlcUiLight plcUiLight1;
- private Sunny.UI.UIGroupBox uiGroupBox1;
- private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay1;
- private PlcUiControl.PlcUiNumberInput txt旋转马达伺服输出转矩限制;
- private Sunny.UI.UILabel uiLabel1;
- private Sunny.UI.UILabel uiLabel2;
- private PlcUiControl.PlcUiNumberInput txt旋转马达撞击报警阈值;
- private Sunny.UI.UILabel uiLabel3;
- private PlcUiControl.PlcUiNumberInput txt旋转马达扭矩报警阈值;
- private Sunny.UI.UILabel uiLabel4;
- private PlcUiControl.PlcUiNumberInput txt旋转马达最高速;
- private Sunny.UI.UILabel uiLabel5;
- private Sunny.UI.UIGroupBox uiGroupBox2;
- private PlcUiControl.PlcUiNumberInput txt上下马达速度;
- private Sunny.UI.UILabel uiLabel6;
- private PlcUiControl.PlcUiNumberInput txt上下马达偏移量;
- private Sunny.UI.UILabel uiLabel7;
- private PlcUiControl.PlcUiNumberInput txt上下马达减速时间;
- private Sunny.UI.UILabel uiLabel8;
- private PlcUiControl.PlcUiNumberInput txt上下马达加速时间;
- private Sunny.UI.UILabel uiLabel9;
- private PlcUiControl.PlcUiNumberInput txt上下马达伺服输出转矩限制;
- private Sunny.UI.UILabel uiLabel10;
- private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay2;
- private Sunny.UI.UILabel uiLabel11;
- private PlcUiControl.PlcUiNumberInput txt上下马达防撞报警阈值;
- private Sunny.UI.UILabel uiLabel17;
- private PlcUiControl.PlcUiNumberInput txt上下马达防压报警阈值;
- private Sunny.UI.UILabel uiLabel18;
- private PlcUiControl.PlcUiNumberInput txt上下马达最高速;
- private Sunny.UI.UILabel uiLabel19;
- private PlcUiControl.PlcUiButton btn方向旋转正反转;
- private Sunny.UI.UIGroupBox uiGroupBox3;
- private PlcUiControl.PlcUiButton btn负90度位置;
- private PlcUiControl.PlcUiButton btn180度位置;
- private PlcUiControl.PlcUiButton btn90度位置;
- private PlcUiControl.PlcUiNumberInput txt方向旋转180度位置;
- private Sunny.UI.UILabel uiLabel13;
- private PlcUiControl.PlcUiNumberInput txt方向旋转90度位置;
- private Sunny.UI.UILabel uiLabel14;
- private PlcUiControl.PlcUiButton btn方向旋转马达上电;
- private PlcUiControl.PlcUiNumberInput txt方向旋转0度位置;
- private Sunny.UI.UILabel uiLabel15;
- private PlcUiControl.PlcUiNumberInput txt方向旋转初始位置;
- private Sunny.UI.UILabel uiLabel16;
- private PlcUiControl.PlcUiButton btn方向旋转马达回原;
- private PlcUiControl.PlcUiButton btn0度位置;
- private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay3;
- private Sunny.UI.UILabel uiLabel20;
- private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay4;
- private Sunny.UI.UILabel uiLabel21;
- private Sunny.UI.UIGroupBox uiGroupBox4;
- private PlcUiControl.PlcUiButton btn上下马达上电;
- private PlcUiControl.PlcUiNumberInput txt上下马达下位置;
- private Sunny.UI.UILabel uiLabel22;
- private PlcUiControl.PlcUiNumberInput txt上下马达上位置;
- private Sunny.UI.UILabel uiLabel23;
- private PlcUiControl.PlcUiButton btn上下马达上下;
- private PlcUiControl.PlcUiButton btn上下马达回原;
- private PlcUiControl.PlcUiButton btn上升;
- private PlcUiControl.PlcUiButton btn下降;
- private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay5;
- private Sunny.UI.UILabel uiLabel24;
- private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay6;
- private Sunny.UI.UILabel uiLabel25;
- private Sunny.UI.UIGroupBox uiGroupBox5;
- private Sunny.UI.UILabel uiLabel27;
- private PlcUiControl.PlcUiNumberInput txt旋转完成延时;
- private Sunny.UI.UILabel uiLabel28;
- private PlcUiControl.PlcUiNumberInput txt方向旋转负90度位置;
- private Sunny.UI.UILabel uiLabel12;
- private PlcUiControl.PlcUiLight plcUiLight2;
- private PlcUiControl.PlcUiLight plcUiLight3;
- private PlcUiControl.PlcUiLight plcUiLight4;
- private PlcUiControl.PlcUiLight plcUiLight40;
- private PlcUiControl.PlcUiLight plcUiLight41;
- private PlcUiControl.PlcUiLight plcUiLight42;
- private PlcUiControl.PlcUiComboBox cob旋转角度;
- private System.Windows.Forms.PictureBox pictureBox1;
- private PlcUiControl.PlcUiButton btn工站启用;
- private PlcUiControl.PlcUiNumberInput txt防压检测终点;
- private Sunny.UI.UILabel uiLabel47;
- private PlcUiControl.PlcUiNumberInput txt防撞检测起点;
- private PlcUiControl.PlcUiNumberInput txt防撞检测终点;
- private Sunny.UI.UILabel uiLabel48;
- private Sunny.UI.UILabel uiLabel49;
- private Sunny.UI.UILabel uiLabel50;
- private PlcUiControl.PlcUiNumberInput txt防压检测起点;
- }
- }
|