| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869 |
- namespace YangjieTester.工站操作
- {
- partial class Form27_3D检测站
- {
- /// <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.uiGroupBox10 = new Sunny.UI.UIGroupBox();
- this.plcUiLight34 = new PlcUiControl.PlcUiLight();
- this.plcUiLight30 = new PlcUiControl.PlcUiLight();
- this.btn影像触发 = new PlcUiControl.PlcUiButton();
- 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.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.uiGroupBox1 = new Sunny.UI.UIGroupBox();
- this.uiLabel15 = new Sunny.UI.UILabel();
- this.txt结果读取延时 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel16 = new Sunny.UI.UILabel();
- this.txt完成超时时长 = new PlcUiControl.PlcUiNumberInput();
- this.txt影像触发时长 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel29 = new Sunny.UI.UILabel();
- this.uiGroupBox5 = new Sunny.UI.UIGroupBox();
- this.txt转矩限制 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel14 = new Sunny.UI.UILabel();
- this.txt下压行程 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel13 = new Sunny.UI.UILabel();
- this.txt叠料偏差 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel12 = new Sunny.UI.UILabel();
- this.txt设置力 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel5 = new Sunny.UI.UILabel();
- this.txt跨距对比间距数量 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel4 = new Sunny.UI.UILabel();
- this.txt影像重拍次数 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel3 = new Sunny.UI.UILabel();
- this.txt3D连续良品数量 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel2 = new Sunny.UI.UILabel();
- this.txt3D连续不良数量 = new PlcUiControl.PlcUiNumberInput();
- this.uiLabel1 = new Sunny.UI.UILabel();
- this.tabPage4 = new System.Windows.Forms.TabPage();
- 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.plcUiLight47 = new PlcUiControl.PlcUiLight();
- this.plcUiLight2 = new PlcUiControl.PlcUiLight();
- this.plcUiLight1 = new PlcUiControl.PlcUiLight();
- this.uiPanel1.SuspendLayout();
- this.uiGroupBox10.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
- this.uiTabControl1.SuspendLayout();
- this.tabPage1.SuspendLayout();
- this.uiGroupBox4.SuspendLayout();
- this.tabPage3.SuspendLayout();
- this.uiGroupBox1.SuspendLayout();
- this.uiGroupBox5.SuspendLayout();
- this.tabPage4.SuspendLayout();
- this.uiGroupBox2.SuspendLayout();
- this.tabPage5.SuspendLayout();
- this.SuspendLayout();
- //
- // uiPanel1
- //
- this.uiPanel1.Controls.Add(this.uiGroupBox10);
- 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;
- //
- // uiGroupBox10
- //
- this.uiGroupBox10.Controls.Add(this.plcUiLight34);
- this.uiGroupBox10.Controls.Add(this.plcUiLight30);
- this.uiGroupBox10.Controls.Add(this.btn影像触发);
- this.uiGroupBox10.Dock = System.Windows.Forms.DockStyle.Top;
- this.uiGroupBox10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox10.Location = new System.Drawing.Point(2, 241);
- this.uiGroupBox10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox10.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox10.Name = "uiGroupBox10";
- this.uiGroupBox10.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox10.Size = new System.Drawing.Size(229, 130);
- this.uiGroupBox10.TabIndex = 165;
- this.uiGroupBox10.Text = "3D检测";
- this.uiGroupBox10.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // plcUiLight34
- //
- this.plcUiLight34.DisabilityTriggerNode = null;
- this.plcUiLight34.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight34.InvisibilityTriggerNode = null;
- this.plcUiLight34.Location = new System.Drawing.Point(3, 78);
- this.plcUiLight34.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight34.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight34.Name = "plcUiLight34";
- this.plcUiLight34.NodeName = "OK/NG";
- this.plcUiLight34.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight34.OffText = "OK/NG";
- this.plcUiLight34.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight34.OnText = "OK/NG";
- this.plcUiLight34.Radius = 39;
- this.plcUiLight34.ReadNode = new Node("Application.InOutPut.A27_3D画像.bOK_NG", NodeType.BOOL, null);
- this.plcUiLight34.ShowText = true;
- this.plcUiLight34.Size = new System.Drawing.Size(95, 39);
- this.plcUiLight34.State = Sunny.UI.UILightState.Off;
- this.plcUiLight34.TabIndex = 159;
- this.plcUiLight34.Text = "OK/NG";
- this.plcUiLight34.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight34.WriteNode = null;
- //
- // plcUiLight30
- //
- this.plcUiLight30.DisabilityTriggerNode = null;
- this.plcUiLight30.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight30.InvisibilityTriggerNode = null;
- this.plcUiLight30.Location = new System.Drawing.Point(3, 34);
- this.plcUiLight30.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight30.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight30.Name = "plcUiLight30";
- this.plcUiLight30.NodeName = "画像EOT";
- this.plcUiLight30.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight30.OffText = "画像EOT";
- this.plcUiLight30.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight30.OnText = "画像EOT";
- this.plcUiLight30.Radius = 39;
- this.plcUiLight30.ReadNode = new Node("Application.InOutPut.A27_3D画像.bEOT", NodeType.BOOL, null);
- this.plcUiLight30.ShowText = true;
- this.plcUiLight30.Size = new System.Drawing.Size(109, 39);
- this.plcUiLight30.State = Sunny.UI.UILightState.Off;
- this.plcUiLight30.TabIndex = 158;
- this.plcUiLight30.Text = "画像EOT";
- this.plcUiLight30.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight30.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.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(113, 78);
- 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.A27_3DTestStation_Manual.b手动拍照_HMI", NodeType.BOOL, "手动拍照——HMIset");
- this.btn影像触发.Size = new System.Drawing.Size(92, 39);
- this.btn影像触发.Symbol = 0;
- this.btn影像触发.TabIndex = 157;
- 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.A27_3DTestStation_Manual.b手动拍照_HMI", NodeType.BOOL, "手动拍照——HMIset");
- //
- // 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 = 164;
- 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.站位启用[27]", NodeType.BOOL, null);
- this.btn工站启用.Size = new System.Drawing.Size(229, 54);
- this.btn工站启用.Symbol = 0;
- this.btn工站启用.TabIndex = 163;
- 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.站位启用[27]", 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.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;
- //
- // 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.A27_3DTestStation_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 = 206;
- 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.A27_3DTestStation_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 = 205;
- 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.A27_3DTestStation_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 = 204;
- 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.A27_3DTestStation_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.A27_3DTestStation_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.A27_3DTestStation_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.A27_3DTestStation_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.A27_3DTestStation_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.A27_3DTestStation_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[16]", 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.A27_3DTestStation_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.A27_3DTestStation_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.A27_3DTestStation_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.A27_3DTestStation_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.A27_3DTestStation_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.A27_3DTestStation_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.A27_3DTestStation_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.A27_3DTestStation_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.A27_3DTestStation_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.uiGroupBox1);
- 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;
- //
- // uiGroupBox1
- //
- this.uiGroupBox1.Controls.Add(this.uiLabel15);
- this.uiGroupBox1.Controls.Add(this.txt结果读取延时);
- this.uiGroupBox1.Controls.Add(this.uiLabel16);
- this.uiGroupBox1.Controls.Add(this.txt完成超时时长);
- this.uiGroupBox1.Controls.Add(this.txt影像触发时长);
- this.uiGroupBox1.Controls.Add(this.uiLabel29);
- 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(408, 5);
- 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(352, 332);
- this.uiGroupBox1.TabIndex = 39;
- this.uiGroupBox1.Text = "时间参数";
- this.uiGroupBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // 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(50, 121);
- this.uiLabel15.Name = "uiLabel15";
- this.uiLabel15.Size = new System.Drawing.Size(103, 16);
- this.uiLabel15.TabIndex = 40;
- this.uiLabel15.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(160, 115);
- 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.A27_3DTestStation_Auto.u影像读取结果延时", NodeType.UDINT, "影像读取结果延时");
- this.txt结果读取延时.ShowText = false;
- this.txt结果读取延时.Size = new System.Drawing.Size(125, 27);
- this.txt结果读取延时.TabIndex = 41;
- this.txt结果读取延时.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt结果读取延时.Type = Sunny.UI.UITextBox.UIEditType.Integer;
- this.txt结果读取延时.Watermark = "";
- this.txt结果读取延时.WriteNode = new Node("Application.A27_3DTestStation_Auto.u影像读取结果延时", NodeType.UDINT, "影像读取结果延时");
- //
- // 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(50, 79);
- this.uiLabel16.Name = "uiLabel16";
- this.uiLabel16.Size = new System.Drawing.Size(103, 16);
- this.uiLabel16.TabIndex = 38;
- this.uiLabel16.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(160, 73);
- 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.A27_3DTestStation_Auto.u影像报警时间", NodeType.UDINT, "影像报警时间(未完成报警)");
- this.txt完成超时时长.ShowText = false;
- this.txt完成超时时长.Size = new System.Drawing.Size(125, 27);
- this.txt完成超时时长.TabIndex = 39;
- this.txt完成超时时长.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt完成超时时长.Type = Sunny.UI.UITextBox.UIEditType.Integer;
- this.txt完成超时时长.Watermark = "";
- this.txt完成超时时长.WriteNode = new Node("Application.A27_3DTestStation_Auto.u影像报警时间", NodeType.UDINT, "影像报警时间(未完成报警)");
- //
- // 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影像触发时长.IntValue = 1;
- this.txt影像触发时长.InvisibilityTriggerNode = null;
- this.txt影像触发时长.Location = new System.Drawing.Point(160, 37);
- 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.A27_3DTestStation_Auto.u影像触发时间", NodeType.UDINT, "影像触发时间(拍照时间——HMIset");
- this.txt影像触发时长.ShowText = false;
- this.txt影像触发时长.Size = new System.Drawing.Size(125, 27);
- this.txt影像触发时长.TabIndex = 35;
- this.txt影像触发时长.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt影像触发时长.Type = Sunny.UI.UITextBox.UIEditType.Integer;
- this.txt影像触发时长.Watermark = "";
- this.txt影像触发时长.WriteNode = new Node("Application.A27_3DTestStation_Auto.u影像触发时间", NodeType.UDINT, "影像触发时间(拍照时间——HMIset");
- //
- // uiLabel29
- //
- this.uiLabel29.AutoSize = true;
- this.uiLabel29.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- this.uiLabel29.Location = new System.Drawing.Point(23, 42);
- this.uiLabel29.Name = "uiLabel29";
- this.uiLabel29.Size = new System.Drawing.Size(135, 16);
- this.uiLabel29.TabIndex = 34;
- this.uiLabel29.Text = "影像触发时长(ms)";
- //
- // uiGroupBox5
- //
- this.uiGroupBox5.Controls.Add(this.txt转矩限制);
- this.uiGroupBox5.Controls.Add(this.uiLabel14);
- this.uiGroupBox5.Controls.Add(this.txt下压行程);
- this.uiGroupBox5.Controls.Add(this.uiLabel13);
- this.uiGroupBox5.Controls.Add(this.txt叠料偏差);
- this.uiGroupBox5.Controls.Add(this.uiLabel12);
- this.uiGroupBox5.Controls.Add(this.txt设置力);
- this.uiGroupBox5.Controls.Add(this.uiLabel5);
- this.uiGroupBox5.Controls.Add(this.txt跨距对比间距数量);
- this.uiGroupBox5.Controls.Add(this.uiLabel4);
- this.uiGroupBox5.Controls.Add(this.txt影像重拍次数);
- this.uiGroupBox5.Controls.Add(this.uiLabel3);
- this.uiGroupBox5.Controls.Add(this.txt3D连续良品数量);
- this.uiGroupBox5.Controls.Add(this.uiLabel2);
- this.uiGroupBox5.Controls.Add(this.txt3D连续不良数量);
- this.uiGroupBox5.Controls.Add(this.uiLabel1);
- 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(352, 332);
- this.uiGroupBox5.TabIndex = 38;
- this.uiGroupBox5.Text = "参数";
- this.uiGroupBox5.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- //
- // 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转矩限制.IntValue = 1;
- this.txt转矩限制.InvisibilityTriggerNode = null;
- this.txt转矩限制.Location = new System.Drawing.Point(160, 290);
- 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.A27_3DTestStation_Auto.u转矩限制", NodeType.UDINT, "转矩限制(%)——HMIset");
- this.txt转矩限制.ShowText = false;
- this.txt转矩限制.Size = new System.Drawing.Size(125, 27);
- this.txt转矩限制.TabIndex = 49;
- this.txt转矩限制.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt转矩限制.Type = Sunny.UI.UITextBox.UIEditType.Integer;
- this.txt转矩限制.Watermark = "";
- this.txt转矩限制.WriteNode = new Node("Application.A27_3DTestStation_Auto.u转矩限制", NodeType.UDINT, "转矩限制(%)——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(23, 295);
- this.uiLabel14.Name = "uiLabel14";
- this.uiLabel14.Size = new System.Drawing.Size(95, 16);
- this.uiLabel14.TabIndex = 48;
- this.uiLabel14.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(160, 253);
- 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.A27_3DTestStation_Auto.lr下压行程", NodeType.LREAL, "下压行程(mm)——HMIset");
- this.txt下压行程.ShowText = false;
- this.txt下压行程.Size = new System.Drawing.Size(125, 27);
- this.txt下压行程.TabIndex = 47;
- this.txt下压行程.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt下压行程.Type = Sunny.UI.UITextBox.UIEditType.Double;
- this.txt下压行程.Watermark = "";
- this.txt下压行程.WriteNode = new Node("Application.A27_3DTestStation_Auto.lr下压行程", NodeType.LREAL, "下压行程(mm)——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(23, 258);
- this.uiLabel13.Name = "uiLabel13";
- this.uiLabel13.Size = new System.Drawing.Size(103, 16);
- this.uiLabel13.TabIndex = 46;
- this.uiLabel13.Text = "下压行程(mm)";
- //
- // 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叠料偏差.IntValue = 1;
- this.txt叠料偏差.InvisibilityTriggerNode = null;
- this.txt叠料偏差.Location = new System.Drawing.Point(160, 216);
- 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.A27_3DTestStation_Auto.u叠料偏差", NodeType.UDINT, "叠料偏差(0.01deg)——HMIset");
- this.txt叠料偏差.ShowText = false;
- this.txt叠料偏差.Size = new System.Drawing.Size(125, 27);
- this.txt叠料偏差.TabIndex = 45;
- this.txt叠料偏差.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt叠料偏差.Type = Sunny.UI.UITextBox.UIEditType.Integer;
- this.txt叠料偏差.Watermark = "";
- this.txt叠料偏差.WriteNode = new Node("Application.A27_3DTestStation_Auto.u叠料偏差", NodeType.UDINT, "叠料偏差(0.01deg)——HMIset");
- //
- // 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(23, 221);
- this.uiLabel12.Name = "uiLabel12";
- this.uiLabel12.Size = new System.Drawing.Size(143, 16);
- this.uiLabel12.TabIndex = 44;
- this.uiLabel12.Text = "叠料偏差(0.01deg)";
- //
- // 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设置力.IntValue = 1;
- this.txt设置力.InvisibilityTriggerNode = null;
- this.txt设置力.Location = new System.Drawing.Point(160, 179);
- 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.A27_3DTestStation_Auto.u设置力", NodeType.UDINT, "设置力(N )——HMIset");
- this.txt设置力.ShowText = false;
- this.txt设置力.Size = new System.Drawing.Size(125, 27);
- this.txt设置力.TabIndex = 43;
- this.txt设置力.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt设置力.Type = Sunny.UI.UITextBox.UIEditType.Integer;
- this.txt设置力.Watermark = "";
- this.txt设置力.WriteNode = new Node("Application.A27_3DTestStation_Auto.u设置力", NodeType.UDINT, "设置力(N )——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(23, 184);
- this.uiLabel5.Name = "uiLabel5";
- this.uiLabel5.Size = new System.Drawing.Size(95, 16);
- this.uiLabel5.TabIndex = 42;
- this.uiLabel5.Text = "设置力(N)";
- //
- // 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跨距对比间距数量.IntValue = 1;
- this.txt跨距对比间距数量.InvisibilityTriggerNode = null;
- this.txt跨距对比间距数量.Location = new System.Drawing.Point(160, 145);
- 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.A27_3DTestStation_Auto.u跨距对比间距数量", NodeType.UDINT, "跨距对比间距数量——HMIset");
- this.txt跨距对比间距数量.ShowText = false;
- this.txt跨距对比间距数量.Size = new System.Drawing.Size(125, 27);
- this.txt跨距对比间距数量.TabIndex = 41;
- this.txt跨距对比间距数量.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt跨距对比间距数量.Type = Sunny.UI.UITextBox.UIEditType.Integer;
- this.txt跨距对比间距数量.Watermark = "";
- this.txt跨距对比间距数量.WriteNode = new Node("Application.A27_3DTestStation_Auto.u跨距对比间距数量", NodeType.UDINT, "跨距对比间距数量——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(23, 150);
- this.uiLabel4.Name = "uiLabel4";
- this.uiLabel4.Size = new System.Drawing.Size(135, 16);
- this.uiLabel4.TabIndex = 40;
- 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影像重拍次数.IntValue = 1;
- this.txt影像重拍次数.InvisibilityTriggerNode = null;
- this.txt影像重拍次数.Location = new System.Drawing.Point(160, 111);
- 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.A27_3DTestStation_Auto.u影像重拍次数", NodeType.UDINT, "影像重拍次数——HMIset");
- this.txt影像重拍次数.ShowText = false;
- this.txt影像重拍次数.Size = new System.Drawing.Size(125, 27);
- this.txt影像重拍次数.TabIndex = 39;
- this.txt影像重拍次数.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt影像重拍次数.Type = Sunny.UI.UITextBox.UIEditType.Integer;
- this.txt影像重拍次数.Watermark = "";
- this.txt影像重拍次数.WriteNode = new Node("Application.A27_3DTestStation_Auto.u影像重拍次数", NodeType.UDINT, "影像重拍次数——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(23, 116);
- this.uiLabel3.Name = "uiLabel3";
- this.uiLabel3.Size = new System.Drawing.Size(103, 16);
- this.uiLabel3.TabIndex = 38;
- this.uiLabel3.Text = "影像重拍次数";
- //
- // txt3D连续良品数量
- //
- this.txt3D连续良品数量.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt3D连续良品数量.DisabilityTriggerNode = null;
- this.txt3D连续良品数量.DoubleValue = 1D;
- this.txt3D连续良品数量.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt3D连续良品数量.Gain = 1D;
- this.txt3D连续良品数量.IntegerDigits = 0;
- this.txt3D连续良品数量.IntValue = 1;
- this.txt3D连续良品数量.InvisibilityTriggerNode = null;
- this.txt3D连续良品数量.Location = new System.Drawing.Point(160, 73);
- this.txt3D连续良品数量.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt3D连续良品数量.Maximum = 999999D;
- this.txt3D连续良品数量.Minimum = 1D;
- this.txt3D连续良品数量.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt3D连续良品数量.Name = "txt3D连续良品数量";
- this.txt3D连续良品数量.Padding = new System.Windows.Forms.Padding(5);
- this.txt3D连续良品数量.ReadNode = new Node("Application.A27_3DTestStation_Auto.u方向连续良品数量", NodeType.UDINT, "方向连续良数量——HMIset");
- this.txt3D连续良品数量.ShowText = false;
- this.txt3D连续良品数量.Size = new System.Drawing.Size(125, 27);
- this.txt3D连续良品数量.TabIndex = 37;
- this.txt3D连续良品数量.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt3D连续良品数量.Type = Sunny.UI.UITextBox.UIEditType.Integer;
- this.txt3D连续良品数量.Watermark = "";
- this.txt3D连续良品数量.WriteNode = new Node("Application.A27_3DTestStation_Auto.u方向连续良品数量", NodeType.UDINT, "方向连续良数量——HMIset");
- //
- // 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(23, 78);
- this.uiLabel2.Name = "uiLabel2";
- this.uiLabel2.Size = new System.Drawing.Size(119, 16);
- this.uiLabel2.TabIndex = 36;
- this.uiLabel2.Text = "3D连续良品数量";
- //
- // txt3D连续不良数量
- //
- this.txt3D连续不良数量.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.txt3D连续不良数量.DisabilityTriggerNode = null;
- this.txt3D连续不良数量.DoubleValue = 1D;
- this.txt3D连续不良数量.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txt3D连续不良数量.Gain = 1D;
- this.txt3D连续不良数量.IntegerDigits = 0;
- this.txt3D连续不良数量.IntValue = 1;
- this.txt3D连续不良数量.InvisibilityTriggerNode = null;
- this.txt3D连续不良数量.Location = new System.Drawing.Point(160, 37);
- this.txt3D连续不良数量.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.txt3D连续不良数量.Maximum = 999999D;
- this.txt3D连续不良数量.Minimum = 1D;
- this.txt3D连续不良数量.MinimumSize = new System.Drawing.Size(1, 16);
- this.txt3D连续不良数量.Name = "txt3D连续不良数量";
- this.txt3D连续不良数量.Padding = new System.Windows.Forms.Padding(5);
- this.txt3D连续不良数量.ReadNode = new Node("Application.A27_3DTestStation_Auto.u方向连续不良数量", NodeType.UDINT, "上位界面有的参数\r\n方向连续不良数量——HMIset");
- this.txt3D连续不良数量.ShowText = false;
- this.txt3D连续不良数量.Size = new System.Drawing.Size(125, 27);
- this.txt3D连续不良数量.TabIndex = 35;
- this.txt3D连续不良数量.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.txt3D连续不良数量.Type = Sunny.UI.UITextBox.UIEditType.Integer;
- this.txt3D连续不良数量.Watermark = "";
- this.txt3D连续不良数量.WriteNode = new Node("Application.A27_3DTestStation_Auto.u方向连续不良数量", NodeType.UDINT, "上位界面有的参数\r\n方向连续不良数量——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(23, 42);
- this.uiLabel1.Name = "uiLabel1";
- this.uiLabel1.Size = new System.Drawing.Size(119, 16);
- this.uiLabel1.TabIndex = 34;
- this.uiLabel1.Text = "3D连续不良数量";
- //
- // tabPage4
- //
- 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;
- //
- // 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, 341);
- 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(932, 76);
- 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防压位置终点[16]", NodeType.LREAL, null);
- this.txt防压检测终点.ShowText = false;
- this.txt防压检测终点.Size = new System.Drawing.Size(125, 27);
- this.txt防压检测终点.TabIndex = 117;
- 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防压位置终点[16]", 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(580, 41);
- this.uiLabel47.Name = "uiLabel47";
- this.uiLabel47.Size = new System.Drawing.Size(103, 16);
- this.uiLabel47.TabIndex = 110;
- 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(690, 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防撞位置起点[16]", NodeType.LREAL, null);
- this.txt防撞检测起点.ShowText = false;
- this.txt防撞检测起点.Size = new System.Drawing.Size(125, 27);
- this.txt防撞检测起点.TabIndex = 111;
- 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防撞位置起点[16]", 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(932, 37);
- 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防撞位置终点[16]", NodeType.LREAL, null);
- this.txt防撞检测终点.ShowText = false;
- this.txt防撞检测终点.Size = new System.Drawing.Size(125, 27);
- this.txt防撞检测终点.TabIndex = 113;
- 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防撞位置终点[16]", 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(822, 80);
- this.uiLabel48.Name = "uiLabel48";
- this.uiLabel48.Size = new System.Drawing.Size(103, 16);
- this.uiLabel48.TabIndex = 116;
- 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(822, 41);
- this.uiLabel49.Name = "uiLabel49";
- this.uiLabel49.Size = new System.Drawing.Size(103, 16);
- this.uiLabel49.TabIndex = 112;
- 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(580, 81);
- this.uiLabel50.Name = "uiLabel50";
- this.uiLabel50.Size = new System.Drawing.Size(103, 16);
- this.uiLabel50.TabIndex = 114;
- 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(690, 76);
- 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防压位置起点[16]", NodeType.LREAL, null);
- this.txt防压检测起点.ShowText = false;
- this.txt防压检测起点.Size = new System.Drawing.Size(125, 27);
- this.txt防压检测起点.TabIndex = 115;
- 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防压位置起点[16]", 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, 231);
- 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.A27_3DTestStation_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.A27_3DTestStation_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, 234);
- 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, 194);
- 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.A27_3DTestStation_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.A27_3DTestStation_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, 200);
- 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, 151);
- 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.A27_3DTestStation_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.A27_3DTestStation_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, 159);
- 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, 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.A27_3DTestStation_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.A27_3DTestStation_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, 116);
- 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(437, 112);
- 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.A27_3DTestStation_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.A27_3DTestStation_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(289, 118);
- 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.A27_3DTestStation_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(437, 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.A27_3DTestStation_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.A27_3DTestStation_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(321, 42);
- 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(437, 73);
- 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.A27_3DTestStation_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.A27_3DTestStation_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(321, 78);
- 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, 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.A27_3DTestStation_Auto.lr_UpDownAxis_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.A27_3DTestStation_Auto.lr_UpDownAxis_MaxSpeed", NodeType.LREAL, "lr上下伺服最高速度 %——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, 79);
- 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.plcUiLight47);
- this.tabPage5.Controls.Add(this.plcUiLight2);
- 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;
- //
- // plcUiLight47
- //
- this.plcUiLight47.DisabilityTriggerNode = null;
- this.plcUiLight47.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight47.InvisibilityTriggerNode = null;
- this.plcUiLight47.Location = new System.Drawing.Point(424, 3);
- this.plcUiLight47.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight47.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight47.Name = "plcUiLight47";
- this.plcUiLight47.NodeName = "bSOT";
- this.plcUiLight47.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
- this.plcUiLight47.OffText = null;
- this.plcUiLight47.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
- this.plcUiLight47.OnText = null;
- this.plcUiLight47.Radius = 0;
- this.plcUiLight47.ReadNode = new Node("Application.InOutPut.A27_3D画像.bSOT", NodeType.BOOL, null);
- this.plcUiLight47.Shape = Sunny.UI.UIShape.Square;
- this.plcUiLight47.ShowText = true;
- this.plcUiLight47.Size = new System.Drawing.Size(278, 58);
- this.plcUiLight47.State = Sunny.UI.UILightState.Off;
- this.plcUiLight47.TabIndex = 169;
- this.plcUiLight47.Text = "bSOT";
- this.plcUiLight47.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight47.WriteNode = null;
- //
- // plcUiLight2
- //
- this.plcUiLight2.DisabilityTriggerNode = null;
- this.plcUiLight2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight2.InvisibilityTriggerNode = null;
- this.plcUiLight2.Location = new System.Drawing.Point(7, 67);
- this.plcUiLight2.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight2.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight2.Name = "plcUiLight2";
- this.plcUiLight2.NodeName = "bOK_NG";
- 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 = 58;
- this.plcUiLight2.ReadNode = new Node("Application.InOutPut.A27_3D画像.bOK_NG", NodeType.BOOL, null);
- this.plcUiLight2.ShowText = true;
- this.plcUiLight2.Size = new System.Drawing.Size(261, 58);
- this.plcUiLight2.State = Sunny.UI.UILightState.Off;
- this.plcUiLight2.TabIndex = 30;
- this.plcUiLight2.Text = "bOK_NG";
- this.plcUiLight2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight2.WriteNode = null;
- //
- // plcUiLight1
- //
- this.plcUiLight1.DisabilityTriggerNode = null;
- this.plcUiLight1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.plcUiLight1.InvisibilityTriggerNode = null;
- this.plcUiLight1.Location = new System.Drawing.Point(7, 3);
- this.plcUiLight1.MinimumSize = new System.Drawing.Size(1, 1);
- this.plcUiLight1.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight1.Name = "plcUiLight1";
- this.plcUiLight1.NodeName = "bEOT";
- 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.A27_3D画像.bEOT", 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 = "bEOT";
- this.plcUiLight1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.plcUiLight1.WriteNode = null;
- //
- // Form27_3D检测站
- //
- 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 = "Form27_3D检测站";
- this.Text = "Form27_3D检测站 ";
- this.uiPanel1.ResumeLayout(false);
- this.uiGroupBox10.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
- this.uiTabControl1.ResumeLayout(false);
- this.tabPage1.ResumeLayout(false);
- this.uiGroupBox4.ResumeLayout(false);
- this.uiGroupBox4.PerformLayout();
- this.tabPage3.ResumeLayout(false);
- this.uiGroupBox1.ResumeLayout(false);
- this.uiGroupBox1.PerformLayout();
- this.uiGroupBox5.ResumeLayout(false);
- this.uiGroupBox5.PerformLayout();
- this.tabPage4.ResumeLayout(false);
- 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 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 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 PlcUiControl.PlcUiLight plcUiLight2;
- private PlcUiControl.PlcUiNumberInput txt叠料偏差;
- private Sunny.UI.UILabel uiLabel12;
- private PlcUiControl.PlcUiNumberInput txt设置力;
- private Sunny.UI.UILabel uiLabel5;
- private PlcUiControl.PlcUiNumberInput txt跨距对比间距数量;
- private Sunny.UI.UILabel uiLabel4;
- private PlcUiControl.PlcUiNumberInput txt影像重拍次数;
- private Sunny.UI.UILabel uiLabel3;
- private PlcUiControl.PlcUiNumberInput txt3D连续良品数量;
- private Sunny.UI.UILabel uiLabel2;
- private PlcUiControl.PlcUiNumberInput txt3D连续不良数量;
- private Sunny.UI.UILabel uiLabel1;
- private Sunny.UI.UIGroupBox uiGroupBox1;
- private PlcUiControl.PlcUiNumberInput txt影像触发时长;
- private Sunny.UI.UILabel uiLabel29;
- private PlcUiControl.PlcUiNumberInput txt转矩限制;
- private Sunny.UI.UILabel uiLabel14;
- private PlcUiControl.PlcUiNumberInput txt下压行程;
- private Sunny.UI.UILabel uiLabel13;
- private PlcUiControl.PlcUiButton btn工站启用;
- private PlcUiControl.PlcUiLight plcUiLight40;
- private PlcUiControl.PlcUiLight plcUiLight41;
- private PlcUiControl.PlcUiLight plcUiLight42;
- private Sunny.UI.UILabel uiLabel15;
- private PlcUiControl.PlcUiNumberInput txt结果读取延时;
- private Sunny.UI.UILabel uiLabel16;
- private PlcUiControl.PlcUiNumberInput txt完成超时时长;
- private Sunny.UI.UIGroupBox uiGroupBox10;
- private PlcUiControl.PlcUiLight plcUiLight34;
- private PlcUiControl.PlcUiLight plcUiLight30;
- private PlcUiControl.PlcUiButton btn影像触发;
- private System.Windows.Forms.PictureBox pictureBox1;
- 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防压检测起点;
- private PlcUiControl.PlcUiLight plcUiLight47;
- }
- }
|