Form27_3D检测站.Designer.cs 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869
  1. namespace YangjieTester.工站操作
  2. {
  3. partial class Form27_3D检测站
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.uiPanel1 = new Sunny.UI.UIPanel();
  29. this.uiGroupBox10 = new Sunny.UI.UIGroupBox();
  30. this.plcUiLight34 = new PlcUiControl.PlcUiLight();
  31. this.plcUiLight30 = new PlcUiControl.PlcUiLight();
  32. this.btn影像触发 = new PlcUiControl.PlcUiButton();
  33. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  34. this.btn工站启用 = new PlcUiControl.PlcUiButton();
  35. this.uiTabControl1 = new Sunny.UI.UITabControl();
  36. this.tabPage1 = new System.Windows.Forms.TabPage();
  37. this.uiGroupBox4 = new Sunny.UI.UIGroupBox();
  38. this.plcUiLight40 = new PlcUiControl.PlcUiLight();
  39. this.plcUiLight41 = new PlcUiControl.PlcUiLight();
  40. this.plcUiLight42 = new PlcUiControl.PlcUiLight();
  41. this.btn马达上电 = new PlcUiControl.PlcUiButton();
  42. this.txt马达下位置 = new PlcUiControl.PlcUiNumberInput();
  43. this.uiLabel22 = new Sunny.UI.UILabel();
  44. this.txt马达上位置 = new PlcUiControl.PlcUiNumberInput();
  45. this.uiLabel23 = new Sunny.UI.UILabel();
  46. this.btn马达上下 = new PlcUiControl.PlcUiButton();
  47. this.btn马达回原 = new PlcUiControl.PlcUiButton();
  48. this.btn上升 = new PlcUiControl.PlcUiButton();
  49. this.btn下降 = new PlcUiControl.PlcUiButton();
  50. this.plcUiNumberDisplay5 = new PlcUiControl.PlcUiNumberDisplay();
  51. this.uiLabel24 = new Sunny.UI.UILabel();
  52. this.plcUiNumberDisplay6 = new PlcUiControl.PlcUiNumberDisplay();
  53. this.uiLabel25 = new Sunny.UI.UILabel();
  54. this.tabPage2 = new System.Windows.Forms.TabPage();
  55. this.tabPage3 = new System.Windows.Forms.TabPage();
  56. this.uiGroupBox1 = new Sunny.UI.UIGroupBox();
  57. this.uiLabel15 = new Sunny.UI.UILabel();
  58. this.txt结果读取延时 = new PlcUiControl.PlcUiNumberInput();
  59. this.uiLabel16 = new Sunny.UI.UILabel();
  60. this.txt完成超时时长 = new PlcUiControl.PlcUiNumberInput();
  61. this.txt影像触发时长 = new PlcUiControl.PlcUiNumberInput();
  62. this.uiLabel29 = new Sunny.UI.UILabel();
  63. this.uiGroupBox5 = new Sunny.UI.UIGroupBox();
  64. this.txt转矩限制 = new PlcUiControl.PlcUiNumberInput();
  65. this.uiLabel14 = new Sunny.UI.UILabel();
  66. this.txt下压行程 = new PlcUiControl.PlcUiNumberInput();
  67. this.uiLabel13 = new Sunny.UI.UILabel();
  68. this.txt叠料偏差 = new PlcUiControl.PlcUiNumberInput();
  69. this.uiLabel12 = new Sunny.UI.UILabel();
  70. this.txt设置力 = new PlcUiControl.PlcUiNumberInput();
  71. this.uiLabel5 = new Sunny.UI.UILabel();
  72. this.txt跨距对比间距数量 = new PlcUiControl.PlcUiNumberInput();
  73. this.uiLabel4 = new Sunny.UI.UILabel();
  74. this.txt影像重拍次数 = new PlcUiControl.PlcUiNumberInput();
  75. this.uiLabel3 = new Sunny.UI.UILabel();
  76. this.txt3D连续良品数量 = new PlcUiControl.PlcUiNumberInput();
  77. this.uiLabel2 = new Sunny.UI.UILabel();
  78. this.txt3D连续不良数量 = new PlcUiControl.PlcUiNumberInput();
  79. this.uiLabel1 = new Sunny.UI.UILabel();
  80. this.tabPage4 = new System.Windows.Forms.TabPage();
  81. this.uiGroupBox2 = new Sunny.UI.UIGroupBox();
  82. this.txt防压检测终点 = new PlcUiControl.PlcUiNumberInput();
  83. this.uiLabel47 = new Sunny.UI.UILabel();
  84. this.txt防撞检测起点 = new PlcUiControl.PlcUiNumberInput();
  85. this.txt防撞检测终点 = new PlcUiControl.PlcUiNumberInput();
  86. this.uiLabel48 = new Sunny.UI.UILabel();
  87. this.uiLabel49 = new Sunny.UI.UILabel();
  88. this.uiLabel50 = new Sunny.UI.UILabel();
  89. this.txt防压检测起点 = new PlcUiControl.PlcUiNumberInput();
  90. this.txt上下马达速度 = new PlcUiControl.PlcUiNumberInput();
  91. this.uiLabel6 = new Sunny.UI.UILabel();
  92. this.txt上下马达偏移量 = new PlcUiControl.PlcUiNumberInput();
  93. this.uiLabel7 = new Sunny.UI.UILabel();
  94. this.txt上下马达减速时间 = new PlcUiControl.PlcUiNumberInput();
  95. this.uiLabel8 = new Sunny.UI.UILabel();
  96. this.txt上下马达加速时间 = new PlcUiControl.PlcUiNumberInput();
  97. this.uiLabel9 = new Sunny.UI.UILabel();
  98. this.txt上下马达伺服输出转矩限制 = new PlcUiControl.PlcUiNumberInput();
  99. this.uiLabel10 = new Sunny.UI.UILabel();
  100. this.plcUiNumberDisplay2 = new PlcUiControl.PlcUiNumberDisplay();
  101. this.uiLabel11 = new Sunny.UI.UILabel();
  102. this.txt上下马达防撞报警阈值 = new PlcUiControl.PlcUiNumberInput();
  103. this.uiLabel17 = new Sunny.UI.UILabel();
  104. this.txt上下马达防压报警阈值 = new PlcUiControl.PlcUiNumberInput();
  105. this.uiLabel18 = new Sunny.UI.UILabel();
  106. this.txt上下马达最高速 = new PlcUiControl.PlcUiNumberInput();
  107. this.uiLabel19 = new Sunny.UI.UILabel();
  108. this.tabPage5 = new System.Windows.Forms.TabPage();
  109. this.plcUiLight47 = new PlcUiControl.PlcUiLight();
  110. this.plcUiLight2 = new PlcUiControl.PlcUiLight();
  111. this.plcUiLight1 = new PlcUiControl.PlcUiLight();
  112. this.uiPanel1.SuspendLayout();
  113. this.uiGroupBox10.SuspendLayout();
  114. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  115. this.uiTabControl1.SuspendLayout();
  116. this.tabPage1.SuspendLayout();
  117. this.uiGroupBox4.SuspendLayout();
  118. this.tabPage3.SuspendLayout();
  119. this.uiGroupBox1.SuspendLayout();
  120. this.uiGroupBox5.SuspendLayout();
  121. this.tabPage4.SuspendLayout();
  122. this.uiGroupBox2.SuspendLayout();
  123. this.tabPage5.SuspendLayout();
  124. this.SuspendLayout();
  125. //
  126. // uiPanel1
  127. //
  128. this.uiPanel1.Controls.Add(this.uiGroupBox10);
  129. this.uiPanel1.Controls.Add(this.pictureBox1);
  130. this.uiPanel1.Controls.Add(this.btn工站启用);
  131. this.uiPanel1.Dock = System.Windows.Forms.DockStyle.Left;
  132. this.uiPanel1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  133. this.uiPanel1.Location = new System.Drawing.Point(0, 35);
  134. this.uiPanel1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  135. this.uiPanel1.MinimumSize = new System.Drawing.Size(1, 1);
  136. this.uiPanel1.Name = "uiPanel1";
  137. this.uiPanel1.Padding = new System.Windows.Forms.Padding(2);
  138. this.uiPanel1.Size = new System.Drawing.Size(233, 733);
  139. this.uiPanel1.TabIndex = 11;
  140. this.uiPanel1.Text = null;
  141. this.uiPanel1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  142. //
  143. // uiGroupBox10
  144. //
  145. this.uiGroupBox10.Controls.Add(this.plcUiLight34);
  146. this.uiGroupBox10.Controls.Add(this.plcUiLight30);
  147. this.uiGroupBox10.Controls.Add(this.btn影像触发);
  148. this.uiGroupBox10.Dock = System.Windows.Forms.DockStyle.Top;
  149. this.uiGroupBox10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  150. this.uiGroupBox10.Location = new System.Drawing.Point(2, 241);
  151. this.uiGroupBox10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  152. this.uiGroupBox10.MinimumSize = new System.Drawing.Size(1, 1);
  153. this.uiGroupBox10.Name = "uiGroupBox10";
  154. this.uiGroupBox10.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  155. this.uiGroupBox10.Size = new System.Drawing.Size(229, 130);
  156. this.uiGroupBox10.TabIndex = 165;
  157. this.uiGroupBox10.Text = "3D检测";
  158. this.uiGroupBox10.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  159. //
  160. // plcUiLight34
  161. //
  162. this.plcUiLight34.DisabilityTriggerNode = null;
  163. this.plcUiLight34.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  164. this.plcUiLight34.InvisibilityTriggerNode = null;
  165. this.plcUiLight34.Location = new System.Drawing.Point(3, 78);
  166. this.plcUiLight34.MinimumSize = new System.Drawing.Size(1, 1);
  167. this.plcUiLight34.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  168. this.plcUiLight34.Name = "plcUiLight34";
  169. this.plcUiLight34.NodeName = "OK/NG";
  170. this.plcUiLight34.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  171. this.plcUiLight34.OffText = "OK/NG";
  172. this.plcUiLight34.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  173. this.plcUiLight34.OnText = "OK/NG";
  174. this.plcUiLight34.Radius = 39;
  175. this.plcUiLight34.ReadNode = new Node("Application.InOutPut.A27_3D画像.bOK_NG", NodeType.BOOL, null);
  176. this.plcUiLight34.ShowText = true;
  177. this.plcUiLight34.Size = new System.Drawing.Size(95, 39);
  178. this.plcUiLight34.State = Sunny.UI.UILightState.Off;
  179. this.plcUiLight34.TabIndex = 159;
  180. this.plcUiLight34.Text = "OK/NG";
  181. this.plcUiLight34.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  182. this.plcUiLight34.WriteNode = null;
  183. //
  184. // plcUiLight30
  185. //
  186. this.plcUiLight30.DisabilityTriggerNode = null;
  187. this.plcUiLight30.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  188. this.plcUiLight30.InvisibilityTriggerNode = null;
  189. this.plcUiLight30.Location = new System.Drawing.Point(3, 34);
  190. this.plcUiLight30.MinimumSize = new System.Drawing.Size(1, 1);
  191. this.plcUiLight30.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  192. this.plcUiLight30.Name = "plcUiLight30";
  193. this.plcUiLight30.NodeName = "画像EOT";
  194. this.plcUiLight30.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  195. this.plcUiLight30.OffText = "画像EOT";
  196. this.plcUiLight30.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  197. this.plcUiLight30.OnText = "画像EOT";
  198. this.plcUiLight30.Radius = 39;
  199. this.plcUiLight30.ReadNode = new Node("Application.InOutPut.A27_3D画像.bEOT", NodeType.BOOL, null);
  200. this.plcUiLight30.ShowText = true;
  201. this.plcUiLight30.Size = new System.Drawing.Size(109, 39);
  202. this.plcUiLight30.State = Sunny.UI.UILightState.Off;
  203. this.plcUiLight30.TabIndex = 158;
  204. this.plcUiLight30.Text = "画像EOT";
  205. this.plcUiLight30.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  206. this.plcUiLight30.WriteNode = null;
  207. //
  208. // btn影像触发
  209. //
  210. this.btn影像触发.ButtonType = PlcUiControl.ButtonType.交替型;
  211. this.btn影像触发.Cursor = System.Windows.Forms.Cursors.Hand;
  212. this.btn影像触发.DisabilityTriggerNode = null;
  213. this.btn影像触发.FillColor = System.Drawing.Color.LightSeaGreen;
  214. this.btn影像触发.FillHoverColor = System.Drawing.Color.LightSeaGreen;
  215. this.btn影像触发.FillSelectedColor = System.Drawing.Color.LightSeaGreen;
  216. this.btn影像触发.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  217. this.btn影像触发.InvisibilityTriggerNode = null;
  218. this.btn影像触发.Location = new System.Drawing.Point(113, 78);
  219. this.btn影像触发.Maximum = 0D;
  220. this.btn影像触发.Minimum = 0D;
  221. this.btn影像触发.MinimumSize = new System.Drawing.Size(1, 1);
  222. this.btn影像触发.Name = "btn影像触发";
  223. this.btn影像触发.NeedUserEnsure = false;
  224. this.btn影像触发.OffColor = System.Drawing.Color.LightSeaGreen;
  225. this.btn影像触发.OffSymbol = 0;
  226. this.btn影像触发.OffText = "影像触发";
  227. this.btn影像触发.OnColor = System.Drawing.Color.Green;
  228. this.btn影像触发.OnSymbol = 0;
  229. this.btn影像触发.OnText = "影像触发";
  230. this.btn影像触发.ReadNode = new Node("Application.A27_3DTestStation_Manual.b手动拍照_HMI", NodeType.BOOL, "手动拍照——HMIset");
  231. this.btn影像触发.Size = new System.Drawing.Size(92, 39);
  232. this.btn影像触发.Symbol = 0;
  233. this.btn影像触发.TabIndex = 157;
  234. this.btn影像触发.Text = "影像触发";
  235. this.btn影像触发.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  236. this.btn影像触发.WriteNode = new Node("Application.A27_3DTestStation_Manual.b手动拍照_HMI", NodeType.BOOL, "手动拍照——HMIset");
  237. //
  238. // pictureBox1
  239. //
  240. this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  241. this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Top;
  242. this.pictureBox1.Location = new System.Drawing.Point(2, 56);
  243. this.pictureBox1.Name = "pictureBox1";
  244. this.pictureBox1.Padding = new System.Windows.Forms.Padding(2);
  245. this.pictureBox1.Size = new System.Drawing.Size(229, 185);
  246. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  247. this.pictureBox1.TabIndex = 164;
  248. this.pictureBox1.TabStop = false;
  249. //
  250. // btn工站启用
  251. //
  252. this.btn工站启用.ButtonType = PlcUiControl.ButtonType.交替型;
  253. this.btn工站启用.Cursor = System.Windows.Forms.Cursors.Hand;
  254. this.btn工站启用.DisabilityTriggerNode = null;
  255. this.btn工站启用.Dock = System.Windows.Forms.DockStyle.Top;
  256. this.btn工站启用.FillColor = System.Drawing.Color.Gray;
  257. this.btn工站启用.FillHoverColor = System.Drawing.Color.Gray;
  258. this.btn工站启用.FillSelectedColor = System.Drawing.Color.Gray;
  259. this.btn工站启用.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  260. this.btn工站启用.InvisibilityTriggerNode = null;
  261. this.btn工站启用.Location = new System.Drawing.Point(2, 2);
  262. this.btn工站启用.Maximum = 0D;
  263. this.btn工站启用.Minimum = 0D;
  264. this.btn工站启用.MinimumSize = new System.Drawing.Size(1, 1);
  265. this.btn工站启用.Name = "btn工站启用";
  266. this.btn工站启用.NeedUserEnsure = false;
  267. this.btn工站启用.OffColor = System.Drawing.Color.Gray;
  268. this.btn工站启用.OffSymbol = 0;
  269. this.btn工站启用.OffText = "工站不启用";
  270. this.btn工站启用.OnColor = System.Drawing.Color.Green;
  271. this.btn工站启用.OnSymbol = 0;
  272. this.btn工站启用.OnText = "工站启用";
  273. this.btn工站启用.ReadNode = new Node("Application.Var_state.站位启用[27]", NodeType.BOOL, null);
  274. this.btn工站启用.Size = new System.Drawing.Size(229, 54);
  275. this.btn工站启用.Symbol = 0;
  276. this.btn工站启用.TabIndex = 163;
  277. this.btn工站启用.Text = "工站不启用";
  278. this.btn工站启用.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  279. this.btn工站启用.WriteNode = new Node("Application.Var_state.站位启用[27]", NodeType.BOOL, null);
  280. //
  281. // uiTabControl1
  282. //
  283. this.uiTabControl1.Controls.Add(this.tabPage1);
  284. this.uiTabControl1.Controls.Add(this.tabPage2);
  285. this.uiTabControl1.Controls.Add(this.tabPage3);
  286. this.uiTabControl1.Controls.Add(this.tabPage4);
  287. this.uiTabControl1.Controls.Add(this.tabPage5);
  288. this.uiTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  289. this.uiTabControl1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  290. this.uiTabControl1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  291. this.uiTabControl1.ItemSize = new System.Drawing.Size(150, 40);
  292. this.uiTabControl1.Location = new System.Drawing.Point(233, 35);
  293. this.uiTabControl1.MainPage = "";
  294. this.uiTabControl1.Name = "uiTabControl1";
  295. this.uiTabControl1.SelectedIndex = 0;
  296. this.uiTabControl1.Size = new System.Drawing.Size(1133, 733);
  297. this.uiTabControl1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  298. this.uiTabControl1.TabIndex = 12;
  299. this.uiTabControl1.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  300. //
  301. // tabPage1
  302. //
  303. this.tabPage1.Controls.Add(this.uiGroupBox4);
  304. this.tabPage1.Location = new System.Drawing.Point(0, 40);
  305. this.tabPage1.Name = "tabPage1";
  306. this.tabPage1.Size = new System.Drawing.Size(1133, 693);
  307. this.tabPage1.TabIndex = 0;
  308. this.tabPage1.Text = "常规操作";
  309. this.tabPage1.UseVisualStyleBackColor = true;
  310. //
  311. // uiGroupBox4
  312. //
  313. this.uiGroupBox4.Controls.Add(this.plcUiLight40);
  314. this.uiGroupBox4.Controls.Add(this.plcUiLight41);
  315. this.uiGroupBox4.Controls.Add(this.plcUiLight42);
  316. this.uiGroupBox4.Controls.Add(this.btn马达上电);
  317. this.uiGroupBox4.Controls.Add(this.txt马达下位置);
  318. this.uiGroupBox4.Controls.Add(this.uiLabel22);
  319. this.uiGroupBox4.Controls.Add(this.txt马达上位置);
  320. this.uiGroupBox4.Controls.Add(this.uiLabel23);
  321. this.uiGroupBox4.Controls.Add(this.btn马达上下);
  322. this.uiGroupBox4.Controls.Add(this.btn马达回原);
  323. this.uiGroupBox4.Controls.Add(this.btn上升);
  324. this.uiGroupBox4.Controls.Add(this.btn下降);
  325. this.uiGroupBox4.Controls.Add(this.plcUiNumberDisplay5);
  326. this.uiGroupBox4.Controls.Add(this.uiLabel24);
  327. this.uiGroupBox4.Controls.Add(this.plcUiNumberDisplay6);
  328. this.uiGroupBox4.Controls.Add(this.uiLabel25);
  329. this.uiGroupBox4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  330. this.uiGroupBox4.Location = new System.Drawing.Point(8, 5);
  331. this.uiGroupBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  332. this.uiGroupBox4.MinimumSize = new System.Drawing.Size(1, 1);
  333. this.uiGroupBox4.Name = "uiGroupBox4";
  334. this.uiGroupBox4.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  335. this.uiGroupBox4.Size = new System.Drawing.Size(1042, 194);
  336. this.uiGroupBox4.TabIndex = 22;
  337. this.uiGroupBox4.Text = "上下";
  338. this.uiGroupBox4.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  339. //
  340. // plcUiLight40
  341. //
  342. this.plcUiLight40.DisabilityTriggerNode = null;
  343. this.plcUiLight40.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  344. this.plcUiLight40.InvisibilityTriggerNode = null;
  345. this.plcUiLight40.Location = new System.Drawing.Point(491, 121);
  346. this.plcUiLight40.MinimumSize = new System.Drawing.Size(1, 1);
  347. this.plcUiLight40.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  348. this.plcUiLight40.Name = "plcUiLight40";
  349. this.plcUiLight40.NodeName = "回原完成";
  350. this.plcUiLight40.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  351. this.plcUiLight40.OffText = null;
  352. this.plcUiLight40.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  353. this.plcUiLight40.OnText = null;
  354. this.plcUiLight40.Radius = 39;
  355. this.plcUiLight40.ReadNode = new Node("Application.A27_3DTestStation_Auto.b下压轴回原完成", NodeType.BOOL, null);
  356. this.plcUiLight40.ShowText = true;
  357. this.plcUiLight40.Size = new System.Drawing.Size(111, 39);
  358. this.plcUiLight40.State = Sunny.UI.UILightState.Off;
  359. this.plcUiLight40.TabIndex = 206;
  360. this.plcUiLight40.Text = "回原完成";
  361. this.plcUiLight40.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  362. this.plcUiLight40.WriteNode = null;
  363. //
  364. // plcUiLight41
  365. //
  366. this.plcUiLight41.DisabilityTriggerNode = null;
  367. this.plcUiLight41.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  368. this.plcUiLight41.InvisibilityTriggerNode = null;
  369. this.plcUiLight41.Location = new System.Drawing.Point(379, 121);
  370. this.plcUiLight41.MinimumSize = new System.Drawing.Size(1, 1);
  371. this.plcUiLight41.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  372. this.plcUiLight41.Name = "plcUiLight41";
  373. this.plcUiLight41.NodeName = "Error";
  374. this.plcUiLight41.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  375. this.plcUiLight41.OffText = null;
  376. this.plcUiLight41.On_Color = System.Drawing.Color.Red;
  377. this.plcUiLight41.OnColor = System.Drawing.Color.Red;
  378. this.plcUiLight41.OnText = null;
  379. this.plcUiLight41.Radius = 39;
  380. this.plcUiLight41.ReadNode = new Node("Application.A27_3DTestStation_Auto.b下压轴Error", NodeType.BOOL, "轴状态");
  381. this.plcUiLight41.ShowText = true;
  382. this.plcUiLight41.Size = new System.Drawing.Size(92, 39);
  383. this.plcUiLight41.State = Sunny.UI.UILightState.Off;
  384. this.plcUiLight41.TabIndex = 205;
  385. this.plcUiLight41.Text = "Error";
  386. this.plcUiLight41.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  387. this.plcUiLight41.WriteNode = null;
  388. //
  389. // plcUiLight42
  390. //
  391. this.plcUiLight42.DisabilityTriggerNode = null;
  392. this.plcUiLight42.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  393. this.plcUiLight42.InvisibilityTriggerNode = null;
  394. this.plcUiLight42.Location = new System.Drawing.Point(267, 121);
  395. this.plcUiLight42.MinimumSize = new System.Drawing.Size(1, 1);
  396. this.plcUiLight42.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  397. this.plcUiLight42.Name = "plcUiLight42";
  398. this.plcUiLight42.NodeName = "使能状态";
  399. this.plcUiLight42.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  400. this.plcUiLight42.OffText = null;
  401. this.plcUiLight42.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  402. this.plcUiLight42.OnText = null;
  403. this.plcUiLight42.Radius = 39;
  404. this.plcUiLight42.ReadNode = new Node("Application.A27_3DTestStation_Auto.b下压轴使能状态", NodeType.BOOL, null);
  405. this.plcUiLight42.ShowText = true;
  406. this.plcUiLight42.Size = new System.Drawing.Size(112, 39);
  407. this.plcUiLight42.State = Sunny.UI.UILightState.Off;
  408. this.plcUiLight42.TabIndex = 204;
  409. this.plcUiLight42.Text = "使能状态";
  410. this.plcUiLight42.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  411. this.plcUiLight42.WriteNode = null;
  412. //
  413. // btn马达上电
  414. //
  415. this.btn马达上电.ButtonType = PlcUiControl.ButtonType.交替型;
  416. this.btn马达上电.Cursor = System.Windows.Forms.Cursors.Hand;
  417. this.btn马达上电.DisabilityTriggerNode = null;
  418. this.btn马达上电.FillColor = System.Drawing.Color.Green;
  419. this.btn马达上电.FillHoverColor = System.Drawing.Color.Green;
  420. this.btn马达上电.FillSelectedColor = System.Drawing.Color.Green;
  421. this.btn马达上电.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  422. this.btn马达上电.InvisibilityTriggerNode = null;
  423. this.btn马达上电.Location = new System.Drawing.Point(611, 40);
  424. this.btn马达上电.Maximum = 0D;
  425. this.btn马达上电.Minimum = 0D;
  426. this.btn马达上电.MinimumSize = new System.Drawing.Size(1, 1);
  427. this.btn马达上电.Name = "btn马达上电";
  428. this.btn马达上电.NeedUserEnsure = false;
  429. this.btn马达上电.OffColor = System.Drawing.Color.Green;
  430. this.btn马达上电.OffSymbol = 0;
  431. this.btn马达上电.OffText = "马达上电";
  432. this.btn马达上电.OnColor = System.Drawing.Color.Gray;
  433. this.btn马达上电.OnSymbol = 0;
  434. this.btn马达上电.OnText = "马达断电";
  435. this.btn马达上电.ReadNode = new Node("Application.A27_3DTestStation_Manual.b下压马达断使能", NodeType.BOOL, null);
  436. this.btn马达上电.Size = new System.Drawing.Size(80, 66);
  437. this.btn马达上电.Symbol = 0;
  438. this.btn马达上电.TabIndex = 13;
  439. this.btn马达上电.Text = "马达上电";
  440. this.btn马达上电.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  441. this.btn马达上电.WriteNode = new Node("Application.A27_3DTestStation_Manual.b下压马达断使能", NodeType.BOOL, null);
  442. //
  443. // txt马达下位置
  444. //
  445. this.txt马达下位置.Cursor = System.Windows.Forms.Cursors.IBeam;
  446. this.txt马达下位置.DisabilityTriggerNode = null;
  447. this.txt马达下位置.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  448. this.txt马达下位置.Gain = 1D;
  449. this.txt马达下位置.IntegerDigits = 0;
  450. this.txt马达下位置.InvisibilityTriggerNode = null;
  451. this.txt马达下位置.Location = new System.Drawing.Point(128, 158);
  452. this.txt马达下位置.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  453. this.txt马达下位置.MinimumSize = new System.Drawing.Size(1, 16);
  454. this.txt马达下位置.Name = "txt马达下位置";
  455. this.txt马达下位置.Padding = new System.Windows.Forms.Padding(5);
  456. this.txt马达下位置.ReadNode = new Node("Application.A27_3DTestStation_Manual.lr下压马达下位置设定", NodeType.LREAL, "下压伺服下位置设定——HMIset");
  457. this.txt马达下位置.ShowText = false;
  458. this.txt马达下位置.Size = new System.Drawing.Size(125, 27);
  459. this.txt马达下位置.TabIndex = 12;
  460. this.txt马达下位置.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  461. this.txt马达下位置.Type = Sunny.UI.UITextBox.UIEditType.Double;
  462. this.txt马达下位置.Watermark = "";
  463. this.txt马达下位置.WriteNode = new Node("Application.A27_3DTestStation_Manual.lr下压马达下位置设定", NodeType.LREAL, "下压伺服下位置设定——HMIset");
  464. //
  465. // uiLabel22
  466. //
  467. this.uiLabel22.AutoSize = true;
  468. this.uiLabel22.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  469. this.uiLabel22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  470. this.uiLabel22.Location = new System.Drawing.Point(27, 160);
  471. this.uiLabel22.Name = "uiLabel22";
  472. this.uiLabel22.Size = new System.Drawing.Size(87, 16);
  473. this.uiLabel22.TabIndex = 11;
  474. this.uiLabel22.Text = "马达下位置";
  475. //
  476. // txt马达上位置
  477. //
  478. this.txt马达上位置.Cursor = System.Windows.Forms.Cursors.IBeam;
  479. this.txt马达上位置.DisabilityTriggerNode = null;
  480. this.txt马达上位置.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  481. this.txt马达上位置.Gain = 1D;
  482. this.txt马达上位置.IntegerDigits = 0;
  483. this.txt马达上位置.InvisibilityTriggerNode = null;
  484. this.txt马达上位置.Location = new System.Drawing.Point(128, 121);
  485. this.txt马达上位置.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  486. this.txt马达上位置.MinimumSize = new System.Drawing.Size(1, 16);
  487. this.txt马达上位置.Name = "txt马达上位置";
  488. this.txt马达上位置.Padding = new System.Windows.Forms.Padding(5);
  489. this.txt马达上位置.ReadNode = new Node("Application.A27_3DTestStation_Manual.lr下压马达上位置设定", NodeType.LREAL, "下压伺服上位置设定——HMIset");
  490. this.txt马达上位置.ShowText = false;
  491. this.txt马达上位置.Size = new System.Drawing.Size(125, 27);
  492. this.txt马达上位置.TabIndex = 10;
  493. this.txt马达上位置.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  494. this.txt马达上位置.Type = Sunny.UI.UITextBox.UIEditType.Double;
  495. this.txt马达上位置.Watermark = "";
  496. this.txt马达上位置.WriteNode = new Node("Application.A27_3DTestStation_Manual.lr下压马达上位置设定", NodeType.LREAL, "下压伺服上位置设定——HMIset");
  497. //
  498. // uiLabel23
  499. //
  500. this.uiLabel23.AutoSize = true;
  501. this.uiLabel23.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  502. this.uiLabel23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  503. this.uiLabel23.Location = new System.Drawing.Point(27, 123);
  504. this.uiLabel23.Name = "uiLabel23";
  505. this.uiLabel23.Size = new System.Drawing.Size(87, 16);
  506. this.uiLabel23.TabIndex = 9;
  507. this.uiLabel23.Text = "马达上位置";
  508. //
  509. // btn马达上下
  510. //
  511. this.btn马达上下.ButtonType = PlcUiControl.ButtonType.保持型;
  512. this.btn马达上下.Cursor = System.Windows.Forms.Cursors.Hand;
  513. this.btn马达上下.DisabilityTriggerNode = null;
  514. this.btn马达上下.FillColor = System.Drawing.Color.LightSeaGreen;
  515. this.btn马达上下.FillHoverColor = System.Drawing.Color.LightSeaGreen;
  516. this.btn马达上下.FillSelectedColor = System.Drawing.Color.LightSeaGreen;
  517. this.btn马达上下.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  518. this.btn马达上下.InvisibilityTriggerNode = null;
  519. this.btn马达上下.IsReadWriteNodeSame = false;
  520. this.btn马达上下.Location = new System.Drawing.Point(828, 40);
  521. this.btn马达上下.Maximum = 0D;
  522. this.btn马达上下.Minimum = 0D;
  523. this.btn马达上下.MinimumSize = new System.Drawing.Size(1, 1);
  524. this.btn马达上下.Name = "btn马达上下";
  525. this.btn马达上下.NeedUserEnsure = false;
  526. this.btn马达上下.OffColor = System.Drawing.Color.LightSeaGreen;
  527. this.btn马达上下.OffSymbol = 361660;
  528. this.btn马达上下.OffText = "下位";
  529. this.btn马达上下.OnColor = System.Drawing.Color.Green;
  530. this.btn马达上下.OnSymbol = 361660;
  531. this.btn马达上下.OnText = "上位";
  532. this.btn马达上下.ReadNode = new Node("Application.Var_state.AxisPosCheck[16]", NodeType.BOOL, null);
  533. this.btn马达上下.Size = new System.Drawing.Size(99, 66);
  534. this.btn马达上下.Symbol = 361660;
  535. this.btn马达上下.SymbolSize = 48;
  536. this.btn马达上下.TabIndex = 8;
  537. this.btn马达上下.Text = "下位";
  538. this.btn马达上下.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  539. this.btn马达上下.WriteNode = new Node("Application.A27_3DTestStation_Manual.b下压马达上下", NodeType.BOOL, null);
  540. //
  541. // btn马达回原
  542. //
  543. this.btn马达回原.ButtonType = PlcUiControl.ButtonType.保持型;
  544. this.btn马达回原.Cursor = System.Windows.Forms.Cursors.Hand;
  545. this.btn马达回原.DisabilityTriggerNode = null;
  546. this.btn马达回原.FillColor = System.Drawing.Color.LightSeaGreen;
  547. this.btn马达回原.FillHoverColor = System.Drawing.Color.LightSeaGreen;
  548. this.btn马达回原.FillSelectedColor = System.Drawing.Color.LightSeaGreen;
  549. this.btn马达回原.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  550. this.btn马达回原.InvisibilityTriggerNode = null;
  551. this.btn马达回原.Location = new System.Drawing.Point(717, 40);
  552. this.btn马达回原.Maximum = 0D;
  553. this.btn马达回原.Minimum = 0D;
  554. this.btn马达回原.MinimumSize = new System.Drawing.Size(1, 1);
  555. this.btn马达回原.Name = "btn马达回原";
  556. this.btn马达回原.NeedUserEnsure = false;
  557. this.btn马达回原.OffColor = System.Drawing.Color.LightSeaGreen;
  558. this.btn马达回原.OffSymbol = 0;
  559. this.btn马达回原.OffText = "回原";
  560. this.btn马达回原.OnColor = System.Drawing.Color.Green;
  561. this.btn马达回原.OnSymbol = 0;
  562. this.btn马达回原.OnText = "回原";
  563. this.btn马达回原.ReadNode = new Node("Application.A27_3DTestStation_Manual.b下压马达回原点", NodeType.BOOL, null);
  564. this.btn马达回原.Size = new System.Drawing.Size(80, 66);
  565. this.btn马达回原.Symbol = 0;
  566. this.btn马达回原.TabIndex = 7;
  567. this.btn马达回原.Text = "回原";
  568. this.btn马达回原.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  569. this.btn马达回原.WriteNode = new Node("Application.A27_3DTestStation_Manual.b下压马达回原点", NodeType.BOOL, null);
  570. //
  571. // btn上升
  572. //
  573. this.btn上升.ButtonType = PlcUiControl.ButtonType.保持型;
  574. this.btn上升.Cursor = System.Windows.Forms.Cursors.Hand;
  575. this.btn上升.DisabilityTriggerNode = null;
  576. this.btn上升.FillColor = System.Drawing.Color.LightSeaGreen;
  577. this.btn上升.FillHoverColor = System.Drawing.Color.LightSeaGreen;
  578. this.btn上升.FillSelectedColor = System.Drawing.Color.LightSeaGreen;
  579. this.btn上升.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  580. this.btn上升.InvisibilityTriggerNode = null;
  581. this.btn上升.Location = new System.Drawing.Point(445, 40);
  582. this.btn上升.Maximum = 0D;
  583. this.btn上升.Minimum = 0D;
  584. this.btn上升.MinimumSize = new System.Drawing.Size(1, 1);
  585. this.btn上升.Name = "btn上升";
  586. this.btn上升.NeedUserEnsure = false;
  587. this.btn上升.OffColor = System.Drawing.Color.LightSeaGreen;
  588. this.btn上升.OffSymbol = 361610;
  589. this.btn上升.OffText = "上升";
  590. this.btn上升.OnColor = System.Drawing.Color.Green;
  591. this.btn上升.OnSymbol = 361610;
  592. this.btn上升.OnText = "上升";
  593. this.btn上升.ReadNode = new Node("Application.A27_3DTestStation_Manual.b下压马达上升", NodeType.BOOL, null);
  594. this.btn上升.Size = new System.Drawing.Size(147, 66);
  595. this.btn上升.Symbol = 361610;
  596. this.btn上升.SymbolSize = 72;
  597. this.btn上升.TabIndex = 5;
  598. this.btn上升.Text = "上升";
  599. this.btn上升.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  600. this.btn上升.WriteNode = new Node("Application.A27_3DTestStation_Manual.b下压马达上升", NodeType.BOOL, null);
  601. //
  602. // btn下降
  603. //
  604. this.btn下降.ButtonType = PlcUiControl.ButtonType.保持型;
  605. this.btn下降.Cursor = System.Windows.Forms.Cursors.Hand;
  606. this.btn下降.DisabilityTriggerNode = null;
  607. this.btn下降.FillColor = System.Drawing.Color.LightSeaGreen;
  608. this.btn下降.FillHoverColor = System.Drawing.Color.LightSeaGreen;
  609. this.btn下降.FillSelectedColor = System.Drawing.Color.LightSeaGreen;
  610. this.btn下降.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  611. this.btn下降.InvisibilityTriggerNode = null;
  612. this.btn下降.Location = new System.Drawing.Point(267, 40);
  613. this.btn下降.Maximum = 0D;
  614. this.btn下降.Minimum = 0D;
  615. this.btn下降.MinimumSize = new System.Drawing.Size(1, 1);
  616. this.btn下降.Name = "btn下降";
  617. this.btn下降.NeedUserEnsure = false;
  618. this.btn下降.OffColor = System.Drawing.Color.LightSeaGreen;
  619. this.btn下降.OffSymbol = 361611;
  620. this.btn下降.OffText = "下降";
  621. this.btn下降.OnColor = System.Drawing.Color.Green;
  622. this.btn下降.OnSymbol = 361611;
  623. this.btn下降.OnText = "下降";
  624. this.btn下降.ReadNode = new Node("Application.A27_3DTestStation_Manual.b下压马达下降", NodeType.BOOL, null);
  625. this.btn下降.Size = new System.Drawing.Size(147, 66);
  626. this.btn下降.Symbol = 361611;
  627. this.btn下降.SymbolSize = 72;
  628. this.btn下降.TabIndex = 4;
  629. this.btn下降.Text = "下降";
  630. this.btn下降.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  631. this.btn下降.WriteNode = new Node("Application.A27_3DTestStation_Manual.b下压马达下降", NodeType.BOOL, null);
  632. //
  633. // plcUiNumberDisplay5
  634. //
  635. this.plcUiNumberDisplay5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  636. this.plcUiNumberDisplay5.DecimalPlaces = 2;
  637. this.plcUiNumberDisplay5.DisabilityTriggerNode = null;
  638. this.plcUiNumberDisplay5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  639. this.plcUiNumberDisplay5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  640. this.plcUiNumberDisplay5.Gain = 1D;
  641. this.plcUiNumberDisplay5.IntegerDigits = 0;
  642. this.plcUiNumberDisplay5.InvisibilityTriggerNode = null;
  643. this.plcUiNumberDisplay5.Location = new System.Drawing.Point(128, 78);
  644. this.plcUiNumberDisplay5.Name = "plcUiNumberDisplay5";
  645. this.plcUiNumberDisplay5.Preffix = null;
  646. this.plcUiNumberDisplay5.ReadNode = new Node("Application.A27_3DTestStation_Manual.b下压马达当前扭矩", NodeType.LREAL, "下压伺服扭矩显示——HMIscreen");
  647. this.plcUiNumberDisplay5.Size = new System.Drawing.Size(125, 27);
  648. this.plcUiNumberDisplay5.Suffix = null;
  649. this.plcUiNumberDisplay5.TabIndex = 3;
  650. this.plcUiNumberDisplay5.Text = "0";
  651. this.plcUiNumberDisplay5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  652. this.plcUiNumberDisplay5.WriteNode = null;
  653. //
  654. // uiLabel24
  655. //
  656. this.uiLabel24.AutoSize = true;
  657. this.uiLabel24.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  658. this.uiLabel24.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  659. this.uiLabel24.Location = new System.Drawing.Point(27, 83);
  660. this.uiLabel24.Name = "uiLabel24";
  661. this.uiLabel24.Size = new System.Drawing.Size(71, 16);
  662. this.uiLabel24.TabIndex = 2;
  663. this.uiLabel24.Text = "当前扭矩";
  664. //
  665. // plcUiNumberDisplay6
  666. //
  667. this.plcUiNumberDisplay6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  668. this.plcUiNumberDisplay6.DecimalPlaces = 2;
  669. this.plcUiNumberDisplay6.DisabilityTriggerNode = null;
  670. this.plcUiNumberDisplay6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  671. this.plcUiNumberDisplay6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  672. this.plcUiNumberDisplay6.Gain = 1D;
  673. this.plcUiNumberDisplay6.IntegerDigits = 0;
  674. this.plcUiNumberDisplay6.InvisibilityTriggerNode = null;
  675. this.plcUiNumberDisplay6.Location = new System.Drawing.Point(128, 39);
  676. this.plcUiNumberDisplay6.Name = "plcUiNumberDisplay6";
  677. this.plcUiNumberDisplay6.Preffix = null;
  678. this.plcUiNumberDisplay6.ReadNode = new Node("Application.A27_3DTestStation_Manual.b下压马达当前位置", NodeType.LREAL, "下压伺服位置显示——HMIscreen");
  679. this.plcUiNumberDisplay6.Size = new System.Drawing.Size(125, 27);
  680. this.plcUiNumberDisplay6.Suffix = null;
  681. this.plcUiNumberDisplay6.TabIndex = 1;
  682. this.plcUiNumberDisplay6.Text = "0";
  683. this.plcUiNumberDisplay6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  684. this.plcUiNumberDisplay6.WriteNode = null;
  685. //
  686. // uiLabel25
  687. //
  688. this.uiLabel25.AutoSize = true;
  689. this.uiLabel25.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  690. this.uiLabel25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  691. this.uiLabel25.Location = new System.Drawing.Point(27, 44);
  692. this.uiLabel25.Name = "uiLabel25";
  693. this.uiLabel25.Size = new System.Drawing.Size(71, 16);
  694. this.uiLabel25.TabIndex = 0;
  695. this.uiLabel25.Text = "当前位置";
  696. //
  697. // tabPage2
  698. //
  699. this.tabPage2.Location = new System.Drawing.Point(0, 40);
  700. this.tabPage2.Name = "tabPage2";
  701. this.tabPage2.Size = new System.Drawing.Size(200, 60);
  702. this.tabPage2.TabIndex = 1;
  703. this.tabPage2.Text = "功能设置";
  704. this.tabPage2.UseVisualStyleBackColor = true;
  705. //
  706. // tabPage3
  707. //
  708. this.tabPage3.Controls.Add(this.uiGroupBox1);
  709. this.tabPage3.Controls.Add(this.uiGroupBox5);
  710. this.tabPage3.Location = new System.Drawing.Point(0, 40);
  711. this.tabPage3.Name = "tabPage3";
  712. this.tabPage3.Size = new System.Drawing.Size(200, 60);
  713. this.tabPage3.TabIndex = 2;
  714. this.tabPage3.Text = "参数设置";
  715. this.tabPage3.UseVisualStyleBackColor = true;
  716. //
  717. // uiGroupBox1
  718. //
  719. this.uiGroupBox1.Controls.Add(this.uiLabel15);
  720. this.uiGroupBox1.Controls.Add(this.txt结果读取延时);
  721. this.uiGroupBox1.Controls.Add(this.uiLabel16);
  722. this.uiGroupBox1.Controls.Add(this.txt完成超时时长);
  723. this.uiGroupBox1.Controls.Add(this.txt影像触发时长);
  724. this.uiGroupBox1.Controls.Add(this.uiLabel29);
  725. this.uiGroupBox1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  726. this.uiGroupBox1.Location = new System.Drawing.Point(408, 5);
  727. this.uiGroupBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  728. this.uiGroupBox1.MinimumSize = new System.Drawing.Size(1, 1);
  729. this.uiGroupBox1.Name = "uiGroupBox1";
  730. this.uiGroupBox1.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  731. this.uiGroupBox1.Size = new System.Drawing.Size(352, 332);
  732. this.uiGroupBox1.TabIndex = 39;
  733. this.uiGroupBox1.Text = "时间参数";
  734. this.uiGroupBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  735. //
  736. // uiLabel15
  737. //
  738. this.uiLabel15.AutoSize = true;
  739. this.uiLabel15.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  740. this.uiLabel15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  741. this.uiLabel15.Location = new System.Drawing.Point(50, 121);
  742. this.uiLabel15.Name = "uiLabel15";
  743. this.uiLabel15.Size = new System.Drawing.Size(103, 16);
  744. this.uiLabel15.TabIndex = 40;
  745. this.uiLabel15.Text = "结果读取延时";
  746. //
  747. // txt结果读取延时
  748. //
  749. this.txt结果读取延时.Cursor = System.Windows.Forms.Cursors.IBeam;
  750. this.txt结果读取延时.DisabilityTriggerNode = null;
  751. this.txt结果读取延时.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  752. this.txt结果读取延时.Gain = 1D;
  753. this.txt结果读取延时.IntegerDigits = 0;
  754. this.txt结果读取延时.InvisibilityTriggerNode = null;
  755. this.txt结果读取延时.Location = new System.Drawing.Point(160, 115);
  756. this.txt结果读取延时.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  757. this.txt结果读取延时.Minimum = 0D;
  758. this.txt结果读取延时.MinimumSize = new System.Drawing.Size(1, 16);
  759. this.txt结果读取延时.Name = "txt结果读取延时";
  760. this.txt结果读取延时.Padding = new System.Windows.Forms.Padding(5);
  761. this.txt结果读取延时.ReadNode = new Node("Application.A27_3DTestStation_Auto.u影像读取结果延时", NodeType.UDINT, "影像读取结果延时");
  762. this.txt结果读取延时.ShowText = false;
  763. this.txt结果读取延时.Size = new System.Drawing.Size(125, 27);
  764. this.txt结果读取延时.TabIndex = 41;
  765. this.txt结果读取延时.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  766. this.txt结果读取延时.Type = Sunny.UI.UITextBox.UIEditType.Integer;
  767. this.txt结果读取延时.Watermark = "";
  768. this.txt结果读取延时.WriteNode = new Node("Application.A27_3DTestStation_Auto.u影像读取结果延时", NodeType.UDINT, "影像读取结果延时");
  769. //
  770. // uiLabel16
  771. //
  772. this.uiLabel16.AutoSize = true;
  773. this.uiLabel16.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  774. this.uiLabel16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  775. this.uiLabel16.Location = new System.Drawing.Point(50, 79);
  776. this.uiLabel16.Name = "uiLabel16";
  777. this.uiLabel16.Size = new System.Drawing.Size(103, 16);
  778. this.uiLabel16.TabIndex = 38;
  779. this.uiLabel16.Text = "完成超时时长";
  780. //
  781. // txt完成超时时长
  782. //
  783. this.txt完成超时时长.Cursor = System.Windows.Forms.Cursors.IBeam;
  784. this.txt完成超时时长.DisabilityTriggerNode = null;
  785. this.txt完成超时时长.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  786. this.txt完成超时时长.Gain = 1D;
  787. this.txt完成超时时长.IntegerDigits = 0;
  788. this.txt完成超时时长.InvisibilityTriggerNode = null;
  789. this.txt完成超时时长.Location = new System.Drawing.Point(160, 73);
  790. this.txt完成超时时长.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  791. this.txt完成超时时长.Minimum = 0D;
  792. this.txt完成超时时长.MinimumSize = new System.Drawing.Size(1, 16);
  793. this.txt完成超时时长.Name = "txt完成超时时长";
  794. this.txt完成超时时长.Padding = new System.Windows.Forms.Padding(5);
  795. this.txt完成超时时长.ReadNode = new Node("Application.A27_3DTestStation_Auto.u影像报警时间", NodeType.UDINT, "影像报警时间(未完成报警)");
  796. this.txt完成超时时长.ShowText = false;
  797. this.txt完成超时时长.Size = new System.Drawing.Size(125, 27);
  798. this.txt完成超时时长.TabIndex = 39;
  799. this.txt完成超时时长.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  800. this.txt完成超时时长.Type = Sunny.UI.UITextBox.UIEditType.Integer;
  801. this.txt完成超时时长.Watermark = "";
  802. this.txt完成超时时长.WriteNode = new Node("Application.A27_3DTestStation_Auto.u影像报警时间", NodeType.UDINT, "影像报警时间(未完成报警)");
  803. //
  804. // txt影像触发时长
  805. //
  806. this.txt影像触发时长.Cursor = System.Windows.Forms.Cursors.IBeam;
  807. this.txt影像触发时长.DisabilityTriggerNode = null;
  808. this.txt影像触发时长.DoubleValue = 1D;
  809. this.txt影像触发时长.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  810. this.txt影像触发时长.Gain = 1D;
  811. this.txt影像触发时长.IntegerDigits = 0;
  812. this.txt影像触发时长.IntValue = 1;
  813. this.txt影像触发时长.InvisibilityTriggerNode = null;
  814. this.txt影像触发时长.Location = new System.Drawing.Point(160, 37);
  815. this.txt影像触发时长.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  816. this.txt影像触发时长.Maximum = 999999D;
  817. this.txt影像触发时长.Minimum = 1D;
  818. this.txt影像触发时长.MinimumSize = new System.Drawing.Size(1, 16);
  819. this.txt影像触发时长.Name = "txt影像触发时长";
  820. this.txt影像触发时长.Padding = new System.Windows.Forms.Padding(5);
  821. this.txt影像触发时长.ReadNode = new Node("Application.A27_3DTestStation_Auto.u影像触发时间", NodeType.UDINT, "影像触发时间(拍照时间——HMIset");
  822. this.txt影像触发时长.ShowText = false;
  823. this.txt影像触发时长.Size = new System.Drawing.Size(125, 27);
  824. this.txt影像触发时长.TabIndex = 35;
  825. this.txt影像触发时长.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  826. this.txt影像触发时长.Type = Sunny.UI.UITextBox.UIEditType.Integer;
  827. this.txt影像触发时长.Watermark = "";
  828. this.txt影像触发时长.WriteNode = new Node("Application.A27_3DTestStation_Auto.u影像触发时间", NodeType.UDINT, "影像触发时间(拍照时间——HMIset");
  829. //
  830. // uiLabel29
  831. //
  832. this.uiLabel29.AutoSize = true;
  833. this.uiLabel29.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  834. this.uiLabel29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  835. this.uiLabel29.Location = new System.Drawing.Point(23, 42);
  836. this.uiLabel29.Name = "uiLabel29";
  837. this.uiLabel29.Size = new System.Drawing.Size(135, 16);
  838. this.uiLabel29.TabIndex = 34;
  839. this.uiLabel29.Text = "影像触发时长(ms)";
  840. //
  841. // uiGroupBox5
  842. //
  843. this.uiGroupBox5.Controls.Add(this.txt转矩限制);
  844. this.uiGroupBox5.Controls.Add(this.uiLabel14);
  845. this.uiGroupBox5.Controls.Add(this.txt下压行程);
  846. this.uiGroupBox5.Controls.Add(this.uiLabel13);
  847. this.uiGroupBox5.Controls.Add(this.txt叠料偏差);
  848. this.uiGroupBox5.Controls.Add(this.uiLabel12);
  849. this.uiGroupBox5.Controls.Add(this.txt设置力);
  850. this.uiGroupBox5.Controls.Add(this.uiLabel5);
  851. this.uiGroupBox5.Controls.Add(this.txt跨距对比间距数量);
  852. this.uiGroupBox5.Controls.Add(this.uiLabel4);
  853. this.uiGroupBox5.Controls.Add(this.txt影像重拍次数);
  854. this.uiGroupBox5.Controls.Add(this.uiLabel3);
  855. this.uiGroupBox5.Controls.Add(this.txt3D连续良品数量);
  856. this.uiGroupBox5.Controls.Add(this.uiLabel2);
  857. this.uiGroupBox5.Controls.Add(this.txt3D连续不良数量);
  858. this.uiGroupBox5.Controls.Add(this.uiLabel1);
  859. this.uiGroupBox5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  860. this.uiGroupBox5.Location = new System.Drawing.Point(8, 5);
  861. this.uiGroupBox5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  862. this.uiGroupBox5.MinimumSize = new System.Drawing.Size(1, 1);
  863. this.uiGroupBox5.Name = "uiGroupBox5";
  864. this.uiGroupBox5.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  865. this.uiGroupBox5.Size = new System.Drawing.Size(352, 332);
  866. this.uiGroupBox5.TabIndex = 38;
  867. this.uiGroupBox5.Text = "参数";
  868. this.uiGroupBox5.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  869. //
  870. // txt转矩限制
  871. //
  872. this.txt转矩限制.Cursor = System.Windows.Forms.Cursors.IBeam;
  873. this.txt转矩限制.DisabilityTriggerNode = null;
  874. this.txt转矩限制.DoubleValue = 1D;
  875. this.txt转矩限制.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  876. this.txt转矩限制.Gain = 1D;
  877. this.txt转矩限制.IntegerDigits = 0;
  878. this.txt转矩限制.IntValue = 1;
  879. this.txt转矩限制.InvisibilityTriggerNode = null;
  880. this.txt转矩限制.Location = new System.Drawing.Point(160, 290);
  881. this.txt转矩限制.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  882. this.txt转矩限制.Maximum = 999999D;
  883. this.txt转矩限制.Minimum = 1D;
  884. this.txt转矩限制.MinimumSize = new System.Drawing.Size(1, 16);
  885. this.txt转矩限制.Name = "txt转矩限制";
  886. this.txt转矩限制.Padding = new System.Windows.Forms.Padding(5);
  887. this.txt转矩限制.ReadNode = new Node("Application.A27_3DTestStation_Auto.u转矩限制", NodeType.UDINT, "转矩限制(%)——HMIset");
  888. this.txt转矩限制.ShowText = false;
  889. this.txt转矩限制.Size = new System.Drawing.Size(125, 27);
  890. this.txt转矩限制.TabIndex = 49;
  891. this.txt转矩限制.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  892. this.txt转矩限制.Type = Sunny.UI.UITextBox.UIEditType.Integer;
  893. this.txt转矩限制.Watermark = "";
  894. this.txt转矩限制.WriteNode = new Node("Application.A27_3DTestStation_Auto.u转矩限制", NodeType.UDINT, "转矩限制(%)——HMIset");
  895. //
  896. // uiLabel14
  897. //
  898. this.uiLabel14.AutoSize = true;
  899. this.uiLabel14.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  900. this.uiLabel14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  901. this.uiLabel14.Location = new System.Drawing.Point(23, 295);
  902. this.uiLabel14.Name = "uiLabel14";
  903. this.uiLabel14.Size = new System.Drawing.Size(95, 16);
  904. this.uiLabel14.TabIndex = 48;
  905. this.uiLabel14.Text = "转矩限制(%)";
  906. //
  907. // txt下压行程
  908. //
  909. this.txt下压行程.Cursor = System.Windows.Forms.Cursors.IBeam;
  910. this.txt下压行程.DisabilityTriggerNode = null;
  911. this.txt下压行程.DoubleValue = 1D;
  912. this.txt下压行程.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  913. this.txt下压行程.Gain = 1D;
  914. this.txt下压行程.IntegerDigits = 0;
  915. this.txt下压行程.InvisibilityTriggerNode = null;
  916. this.txt下压行程.Location = new System.Drawing.Point(160, 253);
  917. this.txt下压行程.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  918. this.txt下压行程.Maximum = 999999D;
  919. this.txt下压行程.Minimum = 1D;
  920. this.txt下压行程.MinimumSize = new System.Drawing.Size(1, 16);
  921. this.txt下压行程.Name = "txt下压行程";
  922. this.txt下压行程.Padding = new System.Windows.Forms.Padding(5);
  923. this.txt下压行程.ReadNode = new Node("Application.A27_3DTestStation_Auto.lr下压行程", NodeType.LREAL, "下压行程(mm)——HMIset");
  924. this.txt下压行程.ShowText = false;
  925. this.txt下压行程.Size = new System.Drawing.Size(125, 27);
  926. this.txt下压行程.TabIndex = 47;
  927. this.txt下压行程.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  928. this.txt下压行程.Type = Sunny.UI.UITextBox.UIEditType.Double;
  929. this.txt下压行程.Watermark = "";
  930. this.txt下压行程.WriteNode = new Node("Application.A27_3DTestStation_Auto.lr下压行程", NodeType.LREAL, "下压行程(mm)——HMIset");
  931. //
  932. // uiLabel13
  933. //
  934. this.uiLabel13.AutoSize = true;
  935. this.uiLabel13.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  936. this.uiLabel13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  937. this.uiLabel13.Location = new System.Drawing.Point(23, 258);
  938. this.uiLabel13.Name = "uiLabel13";
  939. this.uiLabel13.Size = new System.Drawing.Size(103, 16);
  940. this.uiLabel13.TabIndex = 46;
  941. this.uiLabel13.Text = "下压行程(mm)";
  942. //
  943. // txt叠料偏差
  944. //
  945. this.txt叠料偏差.Cursor = System.Windows.Forms.Cursors.IBeam;
  946. this.txt叠料偏差.DisabilityTriggerNode = null;
  947. this.txt叠料偏差.DoubleValue = 1D;
  948. this.txt叠料偏差.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  949. this.txt叠料偏差.Gain = 1D;
  950. this.txt叠料偏差.IntegerDigits = 0;
  951. this.txt叠料偏差.IntValue = 1;
  952. this.txt叠料偏差.InvisibilityTriggerNode = null;
  953. this.txt叠料偏差.Location = new System.Drawing.Point(160, 216);
  954. this.txt叠料偏差.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  955. this.txt叠料偏差.Maximum = 999999D;
  956. this.txt叠料偏差.Minimum = 1D;
  957. this.txt叠料偏差.MinimumSize = new System.Drawing.Size(1, 16);
  958. this.txt叠料偏差.Name = "txt叠料偏差";
  959. this.txt叠料偏差.Padding = new System.Windows.Forms.Padding(5);
  960. this.txt叠料偏差.ReadNode = new Node("Application.A27_3DTestStation_Auto.u叠料偏差", NodeType.UDINT, "叠料偏差(0.01deg)——HMIset");
  961. this.txt叠料偏差.ShowText = false;
  962. this.txt叠料偏差.Size = new System.Drawing.Size(125, 27);
  963. this.txt叠料偏差.TabIndex = 45;
  964. this.txt叠料偏差.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  965. this.txt叠料偏差.Type = Sunny.UI.UITextBox.UIEditType.Integer;
  966. this.txt叠料偏差.Watermark = "";
  967. this.txt叠料偏差.WriteNode = new Node("Application.A27_3DTestStation_Auto.u叠料偏差", NodeType.UDINT, "叠料偏差(0.01deg)——HMIset");
  968. //
  969. // uiLabel12
  970. //
  971. this.uiLabel12.AutoSize = true;
  972. this.uiLabel12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  973. this.uiLabel12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  974. this.uiLabel12.Location = new System.Drawing.Point(23, 221);
  975. this.uiLabel12.Name = "uiLabel12";
  976. this.uiLabel12.Size = new System.Drawing.Size(143, 16);
  977. this.uiLabel12.TabIndex = 44;
  978. this.uiLabel12.Text = "叠料偏差(0.01deg)";
  979. //
  980. // txt设置力
  981. //
  982. this.txt设置力.Cursor = System.Windows.Forms.Cursors.IBeam;
  983. this.txt设置力.DisabilityTriggerNode = null;
  984. this.txt设置力.DoubleValue = 1D;
  985. this.txt设置力.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  986. this.txt设置力.Gain = 1D;
  987. this.txt设置力.IntegerDigits = 0;
  988. this.txt设置力.IntValue = 1;
  989. this.txt设置力.InvisibilityTriggerNode = null;
  990. this.txt设置力.Location = new System.Drawing.Point(160, 179);
  991. this.txt设置力.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  992. this.txt设置力.Maximum = 999999D;
  993. this.txt设置力.Minimum = 1D;
  994. this.txt设置力.MinimumSize = new System.Drawing.Size(1, 16);
  995. this.txt设置力.Name = "txt设置力";
  996. this.txt设置力.Padding = new System.Windows.Forms.Padding(5);
  997. this.txt设置力.ReadNode = new Node("Application.A27_3DTestStation_Auto.u设置力", NodeType.UDINT, "设置力(N )——HMIset");
  998. this.txt设置力.ShowText = false;
  999. this.txt设置力.Size = new System.Drawing.Size(125, 27);
  1000. this.txt设置力.TabIndex = 43;
  1001. this.txt设置力.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1002. this.txt设置力.Type = Sunny.UI.UITextBox.UIEditType.Integer;
  1003. this.txt设置力.Watermark = "";
  1004. this.txt设置力.WriteNode = new Node("Application.A27_3DTestStation_Auto.u设置力", NodeType.UDINT, "设置力(N )——HMIset");
  1005. //
  1006. // uiLabel5
  1007. //
  1008. this.uiLabel5.AutoSize = true;
  1009. this.uiLabel5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1010. this.uiLabel5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1011. this.uiLabel5.Location = new System.Drawing.Point(23, 184);
  1012. this.uiLabel5.Name = "uiLabel5";
  1013. this.uiLabel5.Size = new System.Drawing.Size(95, 16);
  1014. this.uiLabel5.TabIndex = 42;
  1015. this.uiLabel5.Text = "设置力(N)";
  1016. //
  1017. // txt跨距对比间距数量
  1018. //
  1019. this.txt跨距对比间距数量.Cursor = System.Windows.Forms.Cursors.IBeam;
  1020. this.txt跨距对比间距数量.DisabilityTriggerNode = null;
  1021. this.txt跨距对比间距数量.DoubleValue = 1D;
  1022. this.txt跨距对比间距数量.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1023. this.txt跨距对比间距数量.Gain = 1D;
  1024. this.txt跨距对比间距数量.IntegerDigits = 0;
  1025. this.txt跨距对比间距数量.IntValue = 1;
  1026. this.txt跨距对比间距数量.InvisibilityTriggerNode = null;
  1027. this.txt跨距对比间距数量.Location = new System.Drawing.Point(160, 145);
  1028. this.txt跨距对比间距数量.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1029. this.txt跨距对比间距数量.Maximum = 999999D;
  1030. this.txt跨距对比间距数量.Minimum = 1D;
  1031. this.txt跨距对比间距数量.MinimumSize = new System.Drawing.Size(1, 16);
  1032. this.txt跨距对比间距数量.Name = "txt跨距对比间距数量";
  1033. this.txt跨距对比间距数量.Padding = new System.Windows.Forms.Padding(5);
  1034. this.txt跨距对比间距数量.ReadNode = new Node("Application.A27_3DTestStation_Auto.u跨距对比间距数量", NodeType.UDINT, "跨距对比间距数量——HMIset");
  1035. this.txt跨距对比间距数量.ShowText = false;
  1036. this.txt跨距对比间距数量.Size = new System.Drawing.Size(125, 27);
  1037. this.txt跨距对比间距数量.TabIndex = 41;
  1038. this.txt跨距对比间距数量.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1039. this.txt跨距对比间距数量.Type = Sunny.UI.UITextBox.UIEditType.Integer;
  1040. this.txt跨距对比间距数量.Watermark = "";
  1041. this.txt跨距对比间距数量.WriteNode = new Node("Application.A27_3DTestStation_Auto.u跨距对比间距数量", NodeType.UDINT, "跨距对比间距数量——HMIset");
  1042. //
  1043. // uiLabel4
  1044. //
  1045. this.uiLabel4.AutoSize = true;
  1046. this.uiLabel4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1047. this.uiLabel4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1048. this.uiLabel4.Location = new System.Drawing.Point(23, 150);
  1049. this.uiLabel4.Name = "uiLabel4";
  1050. this.uiLabel4.Size = new System.Drawing.Size(135, 16);
  1051. this.uiLabel4.TabIndex = 40;
  1052. this.uiLabel4.Text = "跨距对比间距数量";
  1053. //
  1054. // txt影像重拍次数
  1055. //
  1056. this.txt影像重拍次数.Cursor = System.Windows.Forms.Cursors.IBeam;
  1057. this.txt影像重拍次数.DisabilityTriggerNode = null;
  1058. this.txt影像重拍次数.DoubleValue = 1D;
  1059. this.txt影像重拍次数.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1060. this.txt影像重拍次数.Gain = 1D;
  1061. this.txt影像重拍次数.IntegerDigits = 0;
  1062. this.txt影像重拍次数.IntValue = 1;
  1063. this.txt影像重拍次数.InvisibilityTriggerNode = null;
  1064. this.txt影像重拍次数.Location = new System.Drawing.Point(160, 111);
  1065. this.txt影像重拍次数.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1066. this.txt影像重拍次数.Maximum = 999999D;
  1067. this.txt影像重拍次数.Minimum = 1D;
  1068. this.txt影像重拍次数.MinimumSize = new System.Drawing.Size(1, 16);
  1069. this.txt影像重拍次数.Name = "txt影像重拍次数";
  1070. this.txt影像重拍次数.Padding = new System.Windows.Forms.Padding(5);
  1071. this.txt影像重拍次数.ReadNode = new Node("Application.A27_3DTestStation_Auto.u影像重拍次数", NodeType.UDINT, "影像重拍次数——HMIset");
  1072. this.txt影像重拍次数.ShowText = false;
  1073. this.txt影像重拍次数.Size = new System.Drawing.Size(125, 27);
  1074. this.txt影像重拍次数.TabIndex = 39;
  1075. this.txt影像重拍次数.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1076. this.txt影像重拍次数.Type = Sunny.UI.UITextBox.UIEditType.Integer;
  1077. this.txt影像重拍次数.Watermark = "";
  1078. this.txt影像重拍次数.WriteNode = new Node("Application.A27_3DTestStation_Auto.u影像重拍次数", NodeType.UDINT, "影像重拍次数——HMIset");
  1079. //
  1080. // uiLabel3
  1081. //
  1082. this.uiLabel3.AutoSize = true;
  1083. this.uiLabel3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1084. this.uiLabel3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1085. this.uiLabel3.Location = new System.Drawing.Point(23, 116);
  1086. this.uiLabel3.Name = "uiLabel3";
  1087. this.uiLabel3.Size = new System.Drawing.Size(103, 16);
  1088. this.uiLabel3.TabIndex = 38;
  1089. this.uiLabel3.Text = "影像重拍次数";
  1090. //
  1091. // txt3D连续良品数量
  1092. //
  1093. this.txt3D连续良品数量.Cursor = System.Windows.Forms.Cursors.IBeam;
  1094. this.txt3D连续良品数量.DisabilityTriggerNode = null;
  1095. this.txt3D连续良品数量.DoubleValue = 1D;
  1096. this.txt3D连续良品数量.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1097. this.txt3D连续良品数量.Gain = 1D;
  1098. this.txt3D连续良品数量.IntegerDigits = 0;
  1099. this.txt3D连续良品数量.IntValue = 1;
  1100. this.txt3D连续良品数量.InvisibilityTriggerNode = null;
  1101. this.txt3D连续良品数量.Location = new System.Drawing.Point(160, 73);
  1102. this.txt3D连续良品数量.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1103. this.txt3D连续良品数量.Maximum = 999999D;
  1104. this.txt3D连续良品数量.Minimum = 1D;
  1105. this.txt3D连续良品数量.MinimumSize = new System.Drawing.Size(1, 16);
  1106. this.txt3D连续良品数量.Name = "txt3D连续良品数量";
  1107. this.txt3D连续良品数量.Padding = new System.Windows.Forms.Padding(5);
  1108. this.txt3D连续良品数量.ReadNode = new Node("Application.A27_3DTestStation_Auto.u方向连续良品数量", NodeType.UDINT, "方向连续良数量——HMIset");
  1109. this.txt3D连续良品数量.ShowText = false;
  1110. this.txt3D连续良品数量.Size = new System.Drawing.Size(125, 27);
  1111. this.txt3D连续良品数量.TabIndex = 37;
  1112. this.txt3D连续良品数量.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1113. this.txt3D连续良品数量.Type = Sunny.UI.UITextBox.UIEditType.Integer;
  1114. this.txt3D连续良品数量.Watermark = "";
  1115. this.txt3D连续良品数量.WriteNode = new Node("Application.A27_3DTestStation_Auto.u方向连续良品数量", NodeType.UDINT, "方向连续良数量——HMIset");
  1116. //
  1117. // uiLabel2
  1118. //
  1119. this.uiLabel2.AutoSize = true;
  1120. this.uiLabel2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1121. this.uiLabel2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1122. this.uiLabel2.Location = new System.Drawing.Point(23, 78);
  1123. this.uiLabel2.Name = "uiLabel2";
  1124. this.uiLabel2.Size = new System.Drawing.Size(119, 16);
  1125. this.uiLabel2.TabIndex = 36;
  1126. this.uiLabel2.Text = "3D连续良品数量";
  1127. //
  1128. // txt3D连续不良数量
  1129. //
  1130. this.txt3D连续不良数量.Cursor = System.Windows.Forms.Cursors.IBeam;
  1131. this.txt3D连续不良数量.DisabilityTriggerNode = null;
  1132. this.txt3D连续不良数量.DoubleValue = 1D;
  1133. this.txt3D连续不良数量.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1134. this.txt3D连续不良数量.Gain = 1D;
  1135. this.txt3D连续不良数量.IntegerDigits = 0;
  1136. this.txt3D连续不良数量.IntValue = 1;
  1137. this.txt3D连续不良数量.InvisibilityTriggerNode = null;
  1138. this.txt3D连续不良数量.Location = new System.Drawing.Point(160, 37);
  1139. this.txt3D连续不良数量.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1140. this.txt3D连续不良数量.Maximum = 999999D;
  1141. this.txt3D连续不良数量.Minimum = 1D;
  1142. this.txt3D连续不良数量.MinimumSize = new System.Drawing.Size(1, 16);
  1143. this.txt3D连续不良数量.Name = "txt3D连续不良数量";
  1144. this.txt3D连续不良数量.Padding = new System.Windows.Forms.Padding(5);
  1145. this.txt3D连续不良数量.ReadNode = new Node("Application.A27_3DTestStation_Auto.u方向连续不良数量", NodeType.UDINT, "上位界面有的参数\r\n方向连续不良数量——HMIset");
  1146. this.txt3D连续不良数量.ShowText = false;
  1147. this.txt3D连续不良数量.Size = new System.Drawing.Size(125, 27);
  1148. this.txt3D连续不良数量.TabIndex = 35;
  1149. this.txt3D连续不良数量.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1150. this.txt3D连续不良数量.Type = Sunny.UI.UITextBox.UIEditType.Integer;
  1151. this.txt3D连续不良数量.Watermark = "";
  1152. this.txt3D连续不良数量.WriteNode = new Node("Application.A27_3DTestStation_Auto.u方向连续不良数量", NodeType.UDINT, "上位界面有的参数\r\n方向连续不良数量——HMIset");
  1153. //
  1154. // uiLabel1
  1155. //
  1156. this.uiLabel1.AutoSize = true;
  1157. this.uiLabel1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1158. this.uiLabel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1159. this.uiLabel1.Location = new System.Drawing.Point(23, 42);
  1160. this.uiLabel1.Name = "uiLabel1";
  1161. this.uiLabel1.Size = new System.Drawing.Size(119, 16);
  1162. this.uiLabel1.TabIndex = 34;
  1163. this.uiLabel1.Text = "3D连续不良数量";
  1164. //
  1165. // tabPage4
  1166. //
  1167. this.tabPage4.Controls.Add(this.uiGroupBox2);
  1168. this.tabPage4.Location = new System.Drawing.Point(0, 40);
  1169. this.tabPage4.Name = "tabPage4";
  1170. this.tabPage4.Size = new System.Drawing.Size(200, 60);
  1171. this.tabPage4.TabIndex = 3;
  1172. this.tabPage4.Text = "马达参数设置";
  1173. this.tabPage4.UseVisualStyleBackColor = true;
  1174. //
  1175. // uiGroupBox2
  1176. //
  1177. this.uiGroupBox2.Controls.Add(this.txt防压检测终点);
  1178. this.uiGroupBox2.Controls.Add(this.uiLabel47);
  1179. this.uiGroupBox2.Controls.Add(this.txt防撞检测起点);
  1180. this.uiGroupBox2.Controls.Add(this.txt防撞检测终点);
  1181. this.uiGroupBox2.Controls.Add(this.uiLabel48);
  1182. this.uiGroupBox2.Controls.Add(this.uiLabel49);
  1183. this.uiGroupBox2.Controls.Add(this.uiLabel50);
  1184. this.uiGroupBox2.Controls.Add(this.txt防压检测起点);
  1185. this.uiGroupBox2.Controls.Add(this.txt上下马达速度);
  1186. this.uiGroupBox2.Controls.Add(this.uiLabel6);
  1187. this.uiGroupBox2.Controls.Add(this.txt上下马达偏移量);
  1188. this.uiGroupBox2.Controls.Add(this.uiLabel7);
  1189. this.uiGroupBox2.Controls.Add(this.txt上下马达减速时间);
  1190. this.uiGroupBox2.Controls.Add(this.uiLabel8);
  1191. this.uiGroupBox2.Controls.Add(this.txt上下马达加速时间);
  1192. this.uiGroupBox2.Controls.Add(this.uiLabel9);
  1193. this.uiGroupBox2.Controls.Add(this.txt上下马达伺服输出转矩限制);
  1194. this.uiGroupBox2.Controls.Add(this.uiLabel10);
  1195. this.uiGroupBox2.Controls.Add(this.plcUiNumberDisplay2);
  1196. this.uiGroupBox2.Controls.Add(this.uiLabel11);
  1197. this.uiGroupBox2.Controls.Add(this.txt上下马达防撞报警阈值);
  1198. this.uiGroupBox2.Controls.Add(this.uiLabel17);
  1199. this.uiGroupBox2.Controls.Add(this.txt上下马达防压报警阈值);
  1200. this.uiGroupBox2.Controls.Add(this.uiLabel18);
  1201. this.uiGroupBox2.Controls.Add(this.txt上下马达最高速);
  1202. this.uiGroupBox2.Controls.Add(this.uiLabel19);
  1203. this.uiGroupBox2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1204. this.uiGroupBox2.Location = new System.Drawing.Point(8, 5);
  1205. this.uiGroupBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1206. this.uiGroupBox2.MinimumSize = new System.Drawing.Size(1, 1);
  1207. this.uiGroupBox2.Name = "uiGroupBox2";
  1208. this.uiGroupBox2.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1209. this.uiGroupBox2.Size = new System.Drawing.Size(1097, 341);
  1210. this.uiGroupBox2.TabIndex = 8;
  1211. this.uiGroupBox2.Text = "上下马达";
  1212. this.uiGroupBox2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1213. //
  1214. // txt防压检测终点
  1215. //
  1216. this.txt防压检测终点.Cursor = System.Windows.Forms.Cursors.IBeam;
  1217. this.txt防压检测终点.DisabilityTriggerNode = null;
  1218. this.txt防压检测终点.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1219. this.txt防压检测终点.Gain = 1D;
  1220. this.txt防压检测终点.IntegerDigits = 0;
  1221. this.txt防压检测终点.InvisibilityTriggerNode = null;
  1222. this.txt防压检测终点.Location = new System.Drawing.Point(932, 76);
  1223. this.txt防压检测终点.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1224. this.txt防压检测终点.Maximum = 100D;
  1225. this.txt防压检测终点.Minimum = 0D;
  1226. this.txt防压检测终点.MinimumSize = new System.Drawing.Size(1, 16);
  1227. this.txt防压检测终点.Name = "txt防压检测终点";
  1228. this.txt防压检测终点.Padding = new System.Windows.Forms.Padding(5);
  1229. this.txt防压检测终点.ReadNode = new Node("Application.Var_state.lr防压位置终点[16]", NodeType.LREAL, null);
  1230. this.txt防压检测终点.ShowText = false;
  1231. this.txt防压检测终点.Size = new System.Drawing.Size(125, 27);
  1232. this.txt防压检测终点.TabIndex = 117;
  1233. this.txt防压检测终点.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1234. this.txt防压检测终点.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1235. this.txt防压检测终点.Watermark = "";
  1236. this.txt防压检测终点.WriteNode = new Node("Application.Var_state.lr防压位置终点[16]", NodeType.LREAL, null);
  1237. //
  1238. // uiLabel47
  1239. //
  1240. this.uiLabel47.AutoSize = true;
  1241. this.uiLabel47.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1242. this.uiLabel47.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1243. this.uiLabel47.Location = new System.Drawing.Point(580, 41);
  1244. this.uiLabel47.Name = "uiLabel47";
  1245. this.uiLabel47.Size = new System.Drawing.Size(103, 16);
  1246. this.uiLabel47.TabIndex = 110;
  1247. this.uiLabel47.Text = "防撞检测起点";
  1248. //
  1249. // txt防撞检测起点
  1250. //
  1251. this.txt防撞检测起点.Cursor = System.Windows.Forms.Cursors.IBeam;
  1252. this.txt防撞检测起点.DisabilityTriggerNode = null;
  1253. this.txt防撞检测起点.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1254. this.txt防撞检测起点.Gain = 1D;
  1255. this.txt防撞检测起点.IntegerDigits = 0;
  1256. this.txt防撞检测起点.InvisibilityTriggerNode = null;
  1257. this.txt防撞检测起点.Location = new System.Drawing.Point(690, 36);
  1258. this.txt防撞检测起点.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1259. this.txt防撞检测起点.Maximum = 100D;
  1260. this.txt防撞检测起点.Minimum = 0D;
  1261. this.txt防撞检测起点.MinimumSize = new System.Drawing.Size(1, 16);
  1262. this.txt防撞检测起点.Name = "txt防撞检测起点";
  1263. this.txt防撞检测起点.Padding = new System.Windows.Forms.Padding(5);
  1264. this.txt防撞检测起点.ReadNode = new Node("Application.Var_state.lr防撞位置起点[16]", NodeType.LREAL, null);
  1265. this.txt防撞检测起点.ShowText = false;
  1266. this.txt防撞检测起点.Size = new System.Drawing.Size(125, 27);
  1267. this.txt防撞检测起点.TabIndex = 111;
  1268. this.txt防撞检测起点.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1269. this.txt防撞检测起点.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1270. this.txt防撞检测起点.Watermark = "";
  1271. this.txt防撞检测起点.WriteNode = new Node("Application.Var_state.lr防撞位置起点[16]", NodeType.LREAL, null);
  1272. //
  1273. // txt防撞检测终点
  1274. //
  1275. this.txt防撞检测终点.Cursor = System.Windows.Forms.Cursors.IBeam;
  1276. this.txt防撞检测终点.DisabilityTriggerNode = null;
  1277. this.txt防撞检测终点.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1278. this.txt防撞检测终点.Gain = 1D;
  1279. this.txt防撞检测终点.IntegerDigits = 0;
  1280. this.txt防撞检测终点.InvisibilityTriggerNode = null;
  1281. this.txt防撞检测终点.Location = new System.Drawing.Point(932, 37);
  1282. this.txt防撞检测终点.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1283. this.txt防撞检测终点.Maximum = 100D;
  1284. this.txt防撞检测终点.Minimum = 0D;
  1285. this.txt防撞检测终点.MinimumSize = new System.Drawing.Size(1, 16);
  1286. this.txt防撞检测终点.Name = "txt防撞检测终点";
  1287. this.txt防撞检测终点.Padding = new System.Windows.Forms.Padding(5);
  1288. this.txt防撞检测终点.ReadNode = new Node("Application.Var_state.lr防撞位置终点[16]", NodeType.LREAL, null);
  1289. this.txt防撞检测终点.ShowText = false;
  1290. this.txt防撞检测终点.Size = new System.Drawing.Size(125, 27);
  1291. this.txt防撞检测终点.TabIndex = 113;
  1292. this.txt防撞检测终点.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1293. this.txt防撞检测终点.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1294. this.txt防撞检测终点.Watermark = "";
  1295. this.txt防撞检测终点.WriteNode = new Node("Application.Var_state.lr防撞位置终点[16]", NodeType.LREAL, null);
  1296. //
  1297. // uiLabel48
  1298. //
  1299. this.uiLabel48.AutoSize = true;
  1300. this.uiLabel48.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1301. this.uiLabel48.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1302. this.uiLabel48.Location = new System.Drawing.Point(822, 80);
  1303. this.uiLabel48.Name = "uiLabel48";
  1304. this.uiLabel48.Size = new System.Drawing.Size(103, 16);
  1305. this.uiLabel48.TabIndex = 116;
  1306. this.uiLabel48.Text = "防压检测终点";
  1307. //
  1308. // uiLabel49
  1309. //
  1310. this.uiLabel49.AutoSize = true;
  1311. this.uiLabel49.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1312. this.uiLabel49.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1313. this.uiLabel49.Location = new System.Drawing.Point(822, 41);
  1314. this.uiLabel49.Name = "uiLabel49";
  1315. this.uiLabel49.Size = new System.Drawing.Size(103, 16);
  1316. this.uiLabel49.TabIndex = 112;
  1317. this.uiLabel49.Text = "防撞检测终点";
  1318. //
  1319. // uiLabel50
  1320. //
  1321. this.uiLabel50.AutoSize = true;
  1322. this.uiLabel50.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1323. this.uiLabel50.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1324. this.uiLabel50.Location = new System.Drawing.Point(580, 81);
  1325. this.uiLabel50.Name = "uiLabel50";
  1326. this.uiLabel50.Size = new System.Drawing.Size(103, 16);
  1327. this.uiLabel50.TabIndex = 114;
  1328. this.uiLabel50.Text = "防压检测起点";
  1329. //
  1330. // txt防压检测起点
  1331. //
  1332. this.txt防压检测起点.Cursor = System.Windows.Forms.Cursors.IBeam;
  1333. this.txt防压检测起点.DisabilityTriggerNode = null;
  1334. this.txt防压检测起点.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1335. this.txt防压检测起点.Gain = 1D;
  1336. this.txt防压检测起点.IntegerDigits = 0;
  1337. this.txt防压检测起点.InvisibilityTriggerNode = null;
  1338. this.txt防压检测起点.Location = new System.Drawing.Point(690, 76);
  1339. this.txt防压检测起点.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1340. this.txt防压检测起点.Maximum = 100D;
  1341. this.txt防压检测起点.Minimum = 0D;
  1342. this.txt防压检测起点.MinimumSize = new System.Drawing.Size(1, 16);
  1343. this.txt防压检测起点.Name = "txt防压检测起点";
  1344. this.txt防压检测起点.Padding = new System.Windows.Forms.Padding(5);
  1345. this.txt防压检测起点.ReadNode = new Node("Application.Var_state.lr防压位置起点[16]", NodeType.LREAL, null);
  1346. this.txt防压检测起点.ShowText = false;
  1347. this.txt防压检测起点.Size = new System.Drawing.Size(125, 27);
  1348. this.txt防压检测起点.TabIndex = 115;
  1349. this.txt防压检测起点.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1350. this.txt防压检测起点.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1351. this.txt防压检测起点.Watermark = "";
  1352. this.txt防压检测起点.WriteNode = new Node("Application.Var_state.lr防压位置起点[16]", NodeType.LREAL, null);
  1353. //
  1354. // txt上下马达速度
  1355. //
  1356. this.txt上下马达速度.Cursor = System.Windows.Forms.Cursors.IBeam;
  1357. this.txt上下马达速度.DisabilityTriggerNode = null;
  1358. this.txt上下马达速度.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1359. this.txt上下马达速度.Gain = 1D;
  1360. this.txt上下马达速度.IntegerDigits = 0;
  1361. this.txt上下马达速度.InvisibilityTriggerNode = null;
  1362. this.txt上下马达速度.Location = new System.Drawing.Point(150, 231);
  1363. this.txt上下马达速度.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1364. this.txt上下马达速度.Maximum = 350D;
  1365. this.txt上下马达速度.Minimum = 0D;
  1366. this.txt上下马达速度.MinimumSize = new System.Drawing.Size(1, 16);
  1367. this.txt上下马达速度.Name = "txt上下马达速度";
  1368. this.txt上下马达速度.Padding = new System.Windows.Forms.Padding(5);
  1369. this.txt上下马达速度.ReadNode = new Node("Application.A27_3DTestStation_Auto.lr_UpDownAxis_Speed", NodeType.LREAL, "lr上下伺服速度 %——HMIset");
  1370. this.txt上下马达速度.ShowText = false;
  1371. this.txt上下马达速度.Size = new System.Drawing.Size(125, 27);
  1372. this.txt上下马达速度.TabIndex = 25;
  1373. this.txt上下马达速度.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1374. this.txt上下马达速度.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1375. this.txt上下马达速度.Watermark = "";
  1376. this.txt上下马达速度.WriteNode = new Node("Application.A27_3DTestStation_Auto.lr_UpDownAxis_Speed", NodeType.LREAL, "lr上下伺服速度 %——HMIset");
  1377. //
  1378. // uiLabel6
  1379. //
  1380. this.uiLabel6.AutoSize = true;
  1381. this.uiLabel6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1382. this.uiLabel6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1383. this.uiLabel6.Location = new System.Drawing.Point(80, 234);
  1384. this.uiLabel6.Name = "uiLabel6";
  1385. this.uiLabel6.Size = new System.Drawing.Size(63, 16);
  1386. this.uiLabel6.TabIndex = 24;
  1387. this.uiLabel6.Text = "速度(%)";
  1388. //
  1389. // txt上下马达偏移量
  1390. //
  1391. this.txt上下马达偏移量.Cursor = System.Windows.Forms.Cursors.IBeam;
  1392. this.txt上下马达偏移量.DisabilityTriggerNode = null;
  1393. this.txt上下马达偏移量.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1394. this.txt上下马达偏移量.Gain = 1D;
  1395. this.txt上下马达偏移量.IntegerDigits = 0;
  1396. this.txt上下马达偏移量.InvisibilityTriggerNode = null;
  1397. this.txt上下马达偏移量.Location = new System.Drawing.Point(150, 194);
  1398. this.txt上下马达偏移量.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1399. this.txt上下马达偏移量.Maximum = 350D;
  1400. this.txt上下马达偏移量.Minimum = 0D;
  1401. this.txt上下马达偏移量.MinimumSize = new System.Drawing.Size(1, 16);
  1402. this.txt上下马达偏移量.Name = "txt上下马达偏移量";
  1403. this.txt上下马达偏移量.Padding = new System.Windows.Forms.Padding(5);
  1404. this.txt上下马达偏移量.ReadNode = new Node("Application.A27_3DTestStation_Auto.lr_UpDownAxis_Offset", NodeType.LREAL, "lr上下伺服偏移量——HMIset");
  1405. this.txt上下马达偏移量.ShowText = false;
  1406. this.txt上下马达偏移量.Size = new System.Drawing.Size(125, 27);
  1407. this.txt上下马达偏移量.TabIndex = 23;
  1408. this.txt上下马达偏移量.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1409. this.txt上下马达偏移量.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1410. this.txt上下马达偏移量.Watermark = "";
  1411. this.txt上下马达偏移量.WriteNode = new Node("Application.A27_3DTestStation_Auto.lr_UpDownAxis_Offset", NodeType.LREAL, "lr上下伺服偏移量——HMIset");
  1412. //
  1413. // uiLabel7
  1414. //
  1415. this.uiLabel7.AutoSize = true;
  1416. this.uiLabel7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1417. this.uiLabel7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1418. this.uiLabel7.Location = new System.Drawing.Point(88, 200);
  1419. this.uiLabel7.Name = "uiLabel7";
  1420. this.uiLabel7.Size = new System.Drawing.Size(55, 16);
  1421. this.uiLabel7.TabIndex = 22;
  1422. this.uiLabel7.Text = "偏移量";
  1423. //
  1424. // txt上下马达减速时间
  1425. //
  1426. this.txt上下马达减速时间.Cursor = System.Windows.Forms.Cursors.IBeam;
  1427. this.txt上下马达减速时间.DisabilityTriggerNode = null;
  1428. this.txt上下马达减速时间.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1429. this.txt上下马达减速时间.Gain = 1D;
  1430. this.txt上下马达减速时间.IntegerDigits = 0;
  1431. this.txt上下马达减速时间.InvisibilityTriggerNode = null;
  1432. this.txt上下马达减速时间.Location = new System.Drawing.Point(150, 151);
  1433. this.txt上下马达减速时间.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1434. this.txt上下马达减速时间.Maximum = 350D;
  1435. this.txt上下马达减速时间.Minimum = 0D;
  1436. this.txt上下马达减速时间.MinimumSize = new System.Drawing.Size(1, 16);
  1437. this.txt上下马达减速时间.Name = "txt上下马达减速时间";
  1438. this.txt上下马达减速时间.Padding = new System.Windows.Forms.Padding(5);
  1439. this.txt上下马达减速时间.ReadNode = new Node("Application.A27_3DTestStation_Auto.lr_UpDownAxis_DedTime", NodeType.LREAL, "lr上下伺服减速时间 ms——HMIset");
  1440. this.txt上下马达减速时间.ShowText = false;
  1441. this.txt上下马达减速时间.Size = new System.Drawing.Size(125, 27);
  1442. this.txt上下马达减速时间.TabIndex = 21;
  1443. this.txt上下马达减速时间.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1444. this.txt上下马达减速时间.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1445. this.txt上下马达减速时间.Watermark = "";
  1446. this.txt上下马达减速时间.WriteNode = new Node("Application.A27_3DTestStation_Auto.lr_UpDownAxis_DedTime", NodeType.LREAL, "lr上下伺服减速时间 ms——HMIset");
  1447. //
  1448. // uiLabel8
  1449. //
  1450. this.uiLabel8.AutoSize = true;
  1451. this.uiLabel8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1452. this.uiLabel8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1453. this.uiLabel8.Location = new System.Drawing.Point(8, 159);
  1454. this.uiLabel8.Name = "uiLabel8";
  1455. this.uiLabel8.Size = new System.Drawing.Size(135, 16);
  1456. this.uiLabel8.TabIndex = 20;
  1457. this.uiLabel8.Text = "马达减速时间(ms)";
  1458. //
  1459. // txt上下马达加速时间
  1460. //
  1461. this.txt上下马达加速时间.Cursor = System.Windows.Forms.Cursors.IBeam;
  1462. this.txt上下马达加速时间.DisabilityTriggerNode = null;
  1463. this.txt上下马达加速时间.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1464. this.txt上下马达加速时间.Gain = 1D;
  1465. this.txt上下马达加速时间.IntegerDigits = 0;
  1466. this.txt上下马达加速时间.InvisibilityTriggerNode = null;
  1467. this.txt上下马达加速时间.Location = new System.Drawing.Point(150, 111);
  1468. this.txt上下马达加速时间.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1469. this.txt上下马达加速时间.Maximum = 350D;
  1470. this.txt上下马达加速时间.Minimum = 0D;
  1471. this.txt上下马达加速时间.MinimumSize = new System.Drawing.Size(1, 16);
  1472. this.txt上下马达加速时间.Name = "txt上下马达加速时间";
  1473. this.txt上下马达加速时间.Padding = new System.Windows.Forms.Padding(5);
  1474. this.txt上下马达加速时间.ReadNode = new Node("Application.A27_3DTestStation_Auto.lr_UpDownAxis_AccTime", NodeType.LREAL, "lr上下伺服加速时间 ms——HMIset");
  1475. this.txt上下马达加速时间.ShowText = false;
  1476. this.txt上下马达加速时间.Size = new System.Drawing.Size(125, 27);
  1477. this.txt上下马达加速时间.TabIndex = 19;
  1478. this.txt上下马达加速时间.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1479. this.txt上下马达加速时间.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1480. this.txt上下马达加速时间.Watermark = "";
  1481. this.txt上下马达加速时间.WriteNode = new Node("Application.A27_3DTestStation_Auto.lr_UpDownAxis_AccTime", NodeType.LREAL, "lr上下伺服加速时间 ms——HMIset");
  1482. //
  1483. // uiLabel9
  1484. //
  1485. this.uiLabel9.AutoSize = true;
  1486. this.uiLabel9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1487. this.uiLabel9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1488. this.uiLabel9.Location = new System.Drawing.Point(8, 116);
  1489. this.uiLabel9.Name = "uiLabel9";
  1490. this.uiLabel9.Size = new System.Drawing.Size(135, 16);
  1491. this.uiLabel9.TabIndex = 18;
  1492. this.uiLabel9.Text = "马达加速时间(ms)";
  1493. //
  1494. // txt上下马达伺服输出转矩限制
  1495. //
  1496. this.txt上下马达伺服输出转矩限制.Cursor = System.Windows.Forms.Cursors.IBeam;
  1497. this.txt上下马达伺服输出转矩限制.DisabilityTriggerNode = null;
  1498. this.txt上下马达伺服输出转矩限制.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1499. this.txt上下马达伺服输出转矩限制.Gain = 1D;
  1500. this.txt上下马达伺服输出转矩限制.IntegerDigits = 0;
  1501. this.txt上下马达伺服输出转矩限制.InvisibilityTriggerNode = null;
  1502. this.txt上下马达伺服输出转矩限制.Location = new System.Drawing.Point(437, 112);
  1503. this.txt上下马达伺服输出转矩限制.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1504. this.txt上下马达伺服输出转矩限制.Maximum = 350D;
  1505. this.txt上下马达伺服输出转矩限制.Minimum = 0D;
  1506. this.txt上下马达伺服输出转矩限制.MinimumSize = new System.Drawing.Size(1, 16);
  1507. this.txt上下马达伺服输出转矩限制.Name = "txt上下马达伺服输出转矩限制";
  1508. this.txt上下马达伺服输出转矩限制.Padding = new System.Windows.Forms.Padding(5);
  1509. this.txt上下马达伺服输出转矩限制.ReadNode = new Node("Application.A27_3DTestStation_Auto.lr_UpDownAxis_TorqueLimit", NodeType.LREAL, "lr上下伺服转矩限制 %——HMIset");
  1510. this.txt上下马达伺服输出转矩限制.ShowText = false;
  1511. this.txt上下马达伺服输出转矩限制.Size = new System.Drawing.Size(125, 27);
  1512. this.txt上下马达伺服输出转矩限制.TabIndex = 17;
  1513. this.txt上下马达伺服输出转矩限制.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1514. this.txt上下马达伺服输出转矩限制.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1515. this.txt上下马达伺服输出转矩限制.Watermark = "";
  1516. this.txt上下马达伺服输出转矩限制.WriteNode = new Node("Application.A27_3DTestStation_Auto.lr_UpDownAxis_TorqueLimit", NodeType.LREAL, "lr上下伺服转矩限制 %——HMIset");
  1517. //
  1518. // uiLabel10
  1519. //
  1520. this.uiLabel10.AutoSize = true;
  1521. this.uiLabel10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1522. this.uiLabel10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1523. this.uiLabel10.Location = new System.Drawing.Point(289, 118);
  1524. this.uiLabel10.Name = "uiLabel10";
  1525. this.uiLabel10.Size = new System.Drawing.Size(143, 16);
  1526. this.uiLabel10.TabIndex = 16;
  1527. this.uiLabel10.Text = "伺服输出转矩限制%";
  1528. //
  1529. // plcUiNumberDisplay2
  1530. //
  1531. this.plcUiNumberDisplay2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1532. this.plcUiNumberDisplay2.DecimalPlaces = 2;
  1533. this.plcUiNumberDisplay2.DisabilityTriggerNode = null;
  1534. this.plcUiNumberDisplay2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1535. this.plcUiNumberDisplay2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1536. this.plcUiNumberDisplay2.Gain = 1D;
  1537. this.plcUiNumberDisplay2.IntegerDigits = 0;
  1538. this.plcUiNumberDisplay2.InvisibilityTriggerNode = null;
  1539. this.plcUiNumberDisplay2.Location = new System.Drawing.Point(150, 36);
  1540. this.plcUiNumberDisplay2.Name = "plcUiNumberDisplay2";
  1541. this.plcUiNumberDisplay2.Preffix = null;
  1542. this.plcUiNumberDisplay2.ReadNode = new Node("Application.A27_3DTestStation_Manual.b下压马达当前扭矩", NodeType.LREAL, "下压伺服扭矩显示——HMIscreen");
  1543. this.plcUiNumberDisplay2.Size = new System.Drawing.Size(125, 27);
  1544. this.plcUiNumberDisplay2.Suffix = null;
  1545. this.plcUiNumberDisplay2.TabIndex = 4;
  1546. this.plcUiNumberDisplay2.Text = "0";
  1547. this.plcUiNumberDisplay2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1548. this.plcUiNumberDisplay2.WriteNode = null;
  1549. //
  1550. // uiLabel11
  1551. //
  1552. this.uiLabel11.AutoSize = true;
  1553. this.uiLabel11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1554. this.uiLabel11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1555. this.uiLabel11.Location = new System.Drawing.Point(72, 41);
  1556. this.uiLabel11.Name = "uiLabel11";
  1557. this.uiLabel11.Size = new System.Drawing.Size(71, 16);
  1558. this.uiLabel11.TabIndex = 15;
  1559. this.uiLabel11.Text = "当前扭矩";
  1560. //
  1561. // txt上下马达防撞报警阈值
  1562. //
  1563. this.txt上下马达防撞报警阈值.Cursor = System.Windows.Forms.Cursors.IBeam;
  1564. this.txt上下马达防撞报警阈值.DisabilityTriggerNode = null;
  1565. this.txt上下马达防撞报警阈值.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1566. this.txt上下马达防撞报警阈值.Gain = 1D;
  1567. this.txt上下马达防撞报警阈值.IntegerDigits = 0;
  1568. this.txt上下马达防撞报警阈值.InvisibilityTriggerNode = null;
  1569. this.txt上下马达防撞报警阈值.Location = new System.Drawing.Point(437, 36);
  1570. this.txt上下马达防撞报警阈值.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1571. this.txt上下马达防撞报警阈值.Maximum = 350D;
  1572. this.txt上下马达防撞报警阈值.Minimum = 0D;
  1573. this.txt上下马达防撞报警阈值.MinimumSize = new System.Drawing.Size(1, 16);
  1574. this.txt上下马达防撞报警阈值.Name = "txt上下马达防撞报警阈值";
  1575. this.txt上下马达防撞报警阈值.Padding = new System.Windows.Forms.Padding(5);
  1576. this.txt上下马达防撞报警阈值.ReadNode = new Node("Application.A27_3DTestStation_Auto.lr_UpDownAxis_ImpactAlarm", NodeType.LREAL, "lr上下伺服撞击报警设置 %——HMIset");
  1577. this.txt上下马达防撞报警阈值.ShowText = false;
  1578. this.txt上下马达防撞报警阈值.Size = new System.Drawing.Size(125, 27);
  1579. this.txt上下马达防撞报警阈值.TabIndex = 14;
  1580. this.txt上下马达防撞报警阈值.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1581. this.txt上下马达防撞报警阈值.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1582. this.txt上下马达防撞报警阈值.Watermark = "";
  1583. this.txt上下马达防撞报警阈值.WriteNode = new Node("Application.A27_3DTestStation_Auto.lr_UpDownAxis_ImpactAlarm", NodeType.LREAL, "lr上下伺服撞击报警设置 %——HMIset");
  1584. //
  1585. // uiLabel17
  1586. //
  1587. this.uiLabel17.AutoSize = true;
  1588. this.uiLabel17.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1589. this.uiLabel17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1590. this.uiLabel17.Location = new System.Drawing.Point(321, 42);
  1591. this.uiLabel17.Name = "uiLabel17";
  1592. this.uiLabel17.Size = new System.Drawing.Size(111, 16);
  1593. this.uiLabel17.TabIndex = 13;
  1594. this.uiLabel17.Text = "防撞报警阈值%";
  1595. //
  1596. // txt上下马达防压报警阈值
  1597. //
  1598. this.txt上下马达防压报警阈值.Cursor = System.Windows.Forms.Cursors.IBeam;
  1599. this.txt上下马达防压报警阈值.DisabilityTriggerNode = null;
  1600. this.txt上下马达防压报警阈值.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1601. this.txt上下马达防压报警阈值.Gain = 1D;
  1602. this.txt上下马达防压报警阈值.IntegerDigits = 0;
  1603. this.txt上下马达防压报警阈值.InvisibilityTriggerNode = null;
  1604. this.txt上下马达防压报警阈值.Location = new System.Drawing.Point(437, 73);
  1605. this.txt上下马达防压报警阈值.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1606. this.txt上下马达防压报警阈值.Maximum = 350D;
  1607. this.txt上下马达防压报警阈值.Minimum = 0D;
  1608. this.txt上下马达防压报警阈值.MinimumSize = new System.Drawing.Size(1, 16);
  1609. this.txt上下马达防压报警阈值.Name = "txt上下马达防压报警阈值";
  1610. this.txt上下马达防压报警阈值.Padding = new System.Windows.Forms.Padding(5);
  1611. this.txt上下马达防压报警阈值.ReadNode = new Node("Application.A27_3DTestStation_Auto.lr_UpDownAxis_AlarmTorque", NodeType.LREAL, "lr上下伺服力矩报警阀值 %——HMIset");
  1612. this.txt上下马达防压报警阈值.ShowText = false;
  1613. this.txt上下马达防压报警阈值.Size = new System.Drawing.Size(125, 27);
  1614. this.txt上下马达防压报警阈值.TabIndex = 12;
  1615. this.txt上下马达防压报警阈值.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1616. this.txt上下马达防压报警阈值.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1617. this.txt上下马达防压报警阈值.Watermark = "";
  1618. this.txt上下马达防压报警阈值.WriteNode = new Node("Application.A27_3DTestStation_Auto.lr_UpDownAxis_AlarmTorque", NodeType.LREAL, "lr上下伺服力矩报警阀值 %——HMIset");
  1619. //
  1620. // uiLabel18
  1621. //
  1622. this.uiLabel18.AutoSize = true;
  1623. this.uiLabel18.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1624. this.uiLabel18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1625. this.uiLabel18.Location = new System.Drawing.Point(321, 78);
  1626. this.uiLabel18.Name = "uiLabel18";
  1627. this.uiLabel18.Size = new System.Drawing.Size(111, 16);
  1628. this.uiLabel18.TabIndex = 11;
  1629. this.uiLabel18.Text = "防压报警阈值%";
  1630. //
  1631. // txt上下马达最高速
  1632. //
  1633. this.txt上下马达最高速.Cursor = System.Windows.Forms.Cursors.IBeam;
  1634. this.txt上下马达最高速.DisabilityTriggerNode = null;
  1635. this.txt上下马达最高速.DoubleValue = 1D;
  1636. this.txt上下马达最高速.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1637. this.txt上下马达最高速.Gain = 1D;
  1638. this.txt上下马达最高速.IntegerDigits = 0;
  1639. this.txt上下马达最高速.InvisibilityTriggerNode = null;
  1640. this.txt上下马达最高速.Location = new System.Drawing.Point(150, 74);
  1641. this.txt上下马达最高速.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1642. this.txt上下马达最高速.Maximum = 999999D;
  1643. this.txt上下马达最高速.Minimum = 1D;
  1644. this.txt上下马达最高速.MinimumSize = new System.Drawing.Size(1, 16);
  1645. this.txt上下马达最高速.Name = "txt上下马达最高速";
  1646. this.txt上下马达最高速.Padding = new System.Windows.Forms.Padding(5);
  1647. this.txt上下马达最高速.ReadNode = new Node("Application.A27_3DTestStation_Auto.lr_UpDownAxis_MaxSpeed", NodeType.LREAL, "lr上下伺服最高速度 %——HMIset");
  1648. this.txt上下马达最高速.ShowText = false;
  1649. this.txt上下马达最高速.Size = new System.Drawing.Size(125, 27);
  1650. this.txt上下马达最高速.TabIndex = 10;
  1651. this.txt上下马达最高速.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1652. this.txt上下马达最高速.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1653. this.txt上下马达最高速.Watermark = "";
  1654. this.txt上下马达最高速.WriteNode = new Node("Application.A27_3DTestStation_Auto.lr_UpDownAxis_MaxSpeed", NodeType.LREAL, "lr上下伺服最高速度 %——HMIset");
  1655. //
  1656. // uiLabel19
  1657. //
  1658. this.uiLabel19.AutoSize = true;
  1659. this.uiLabel19.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1660. this.uiLabel19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1661. this.uiLabel19.Location = new System.Drawing.Point(88, 79);
  1662. this.uiLabel19.Name = "uiLabel19";
  1663. this.uiLabel19.Size = new System.Drawing.Size(55, 16);
  1664. this.uiLabel19.TabIndex = 9;
  1665. this.uiLabel19.Text = "最高速";
  1666. //
  1667. // tabPage5
  1668. //
  1669. this.tabPage5.Controls.Add(this.plcUiLight47);
  1670. this.tabPage5.Controls.Add(this.plcUiLight2);
  1671. this.tabPage5.Controls.Add(this.plcUiLight1);
  1672. this.tabPage5.Location = new System.Drawing.Point(0, 40);
  1673. this.tabPage5.Name = "tabPage5";
  1674. this.tabPage5.Size = new System.Drawing.Size(200, 60);
  1675. this.tabPage5.TabIndex = 4;
  1676. this.tabPage5.Text = "IO";
  1677. this.tabPage5.UseVisualStyleBackColor = true;
  1678. //
  1679. // plcUiLight47
  1680. //
  1681. this.plcUiLight47.DisabilityTriggerNode = null;
  1682. this.plcUiLight47.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1683. this.plcUiLight47.InvisibilityTriggerNode = null;
  1684. this.plcUiLight47.Location = new System.Drawing.Point(424, 3);
  1685. this.plcUiLight47.MinimumSize = new System.Drawing.Size(1, 1);
  1686. this.plcUiLight47.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1687. this.plcUiLight47.Name = "plcUiLight47";
  1688. this.plcUiLight47.NodeName = "bSOT";
  1689. this.plcUiLight47.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1690. this.plcUiLight47.OffText = null;
  1691. this.plcUiLight47.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1692. this.plcUiLight47.OnText = null;
  1693. this.plcUiLight47.Radius = 0;
  1694. this.plcUiLight47.ReadNode = new Node("Application.InOutPut.A27_3D画像.bSOT", NodeType.BOOL, null);
  1695. this.plcUiLight47.Shape = Sunny.UI.UIShape.Square;
  1696. this.plcUiLight47.ShowText = true;
  1697. this.plcUiLight47.Size = new System.Drawing.Size(278, 58);
  1698. this.plcUiLight47.State = Sunny.UI.UILightState.Off;
  1699. this.plcUiLight47.TabIndex = 169;
  1700. this.plcUiLight47.Text = "bSOT";
  1701. this.plcUiLight47.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1702. this.plcUiLight47.WriteNode = null;
  1703. //
  1704. // plcUiLight2
  1705. //
  1706. this.plcUiLight2.DisabilityTriggerNode = null;
  1707. this.plcUiLight2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1708. this.plcUiLight2.InvisibilityTriggerNode = null;
  1709. this.plcUiLight2.Location = new System.Drawing.Point(7, 67);
  1710. this.plcUiLight2.MinimumSize = new System.Drawing.Size(1, 1);
  1711. this.plcUiLight2.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1712. this.plcUiLight2.Name = "plcUiLight2";
  1713. this.plcUiLight2.NodeName = "bOK_NG";
  1714. this.plcUiLight2.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1715. this.plcUiLight2.OffText = null;
  1716. this.plcUiLight2.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1717. this.plcUiLight2.OnText = null;
  1718. this.plcUiLight2.Radius = 58;
  1719. this.plcUiLight2.ReadNode = new Node("Application.InOutPut.A27_3D画像.bOK_NG", NodeType.BOOL, null);
  1720. this.plcUiLight2.ShowText = true;
  1721. this.plcUiLight2.Size = new System.Drawing.Size(261, 58);
  1722. this.plcUiLight2.State = Sunny.UI.UILightState.Off;
  1723. this.plcUiLight2.TabIndex = 30;
  1724. this.plcUiLight2.Text = "bOK_NG";
  1725. this.plcUiLight2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1726. this.plcUiLight2.WriteNode = null;
  1727. //
  1728. // plcUiLight1
  1729. //
  1730. this.plcUiLight1.DisabilityTriggerNode = null;
  1731. this.plcUiLight1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1732. this.plcUiLight1.InvisibilityTriggerNode = null;
  1733. this.plcUiLight1.Location = new System.Drawing.Point(7, 3);
  1734. this.plcUiLight1.MinimumSize = new System.Drawing.Size(1, 1);
  1735. this.plcUiLight1.MyTextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1736. this.plcUiLight1.Name = "plcUiLight1";
  1737. this.plcUiLight1.NodeName = "bEOT";
  1738. this.plcUiLight1.Off_Color = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(140)))), ((int)(((byte)(140)))));
  1739. this.plcUiLight1.OffText = null;
  1740. this.plcUiLight1.On_Color = System.Drawing.Color.FromArgb(((int)(((byte)(110)))), ((int)(((byte)(190)))), ((int)(((byte)(40)))));
  1741. this.plcUiLight1.OnText = null;
  1742. this.plcUiLight1.Radius = 58;
  1743. this.plcUiLight1.ReadNode = new Node("Application.InOutPut.A27_3D画像.bEOT", NodeType.BOOL, null);
  1744. this.plcUiLight1.ShowText = true;
  1745. this.plcUiLight1.Size = new System.Drawing.Size(261, 58);
  1746. this.plcUiLight1.State = Sunny.UI.UILightState.Off;
  1747. this.plcUiLight1.TabIndex = 29;
  1748. this.plcUiLight1.Text = "bEOT";
  1749. this.plcUiLight1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1750. this.plcUiLight1.WriteNode = null;
  1751. //
  1752. // Form27_3D检测站
  1753. //
  1754. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  1755. this.ClientSize = new System.Drawing.Size(1366, 768);
  1756. this.Controls.Add(this.uiTabControl1);
  1757. this.Controls.Add(this.uiPanel1);
  1758. this.Name = "Form27_3D检测站";
  1759. this.Text = "Form27_3D检测站 ";
  1760. this.uiPanel1.ResumeLayout(false);
  1761. this.uiGroupBox10.ResumeLayout(false);
  1762. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  1763. this.uiTabControl1.ResumeLayout(false);
  1764. this.tabPage1.ResumeLayout(false);
  1765. this.uiGroupBox4.ResumeLayout(false);
  1766. this.uiGroupBox4.PerformLayout();
  1767. this.tabPage3.ResumeLayout(false);
  1768. this.uiGroupBox1.ResumeLayout(false);
  1769. this.uiGroupBox1.PerformLayout();
  1770. this.uiGroupBox5.ResumeLayout(false);
  1771. this.uiGroupBox5.PerformLayout();
  1772. this.tabPage4.ResumeLayout(false);
  1773. this.uiGroupBox2.ResumeLayout(false);
  1774. this.uiGroupBox2.PerformLayout();
  1775. this.tabPage5.ResumeLayout(false);
  1776. this.ResumeLayout(false);
  1777. }
  1778. #endregion
  1779. private Sunny.UI.UIPanel uiPanel1;
  1780. public Sunny.UI.UITabControl uiTabControl1;
  1781. private System.Windows.Forms.TabPage tabPage1;
  1782. private System.Windows.Forms.TabPage tabPage2;
  1783. private System.Windows.Forms.TabPage tabPage3;
  1784. private System.Windows.Forms.TabPage tabPage4;
  1785. private System.Windows.Forms.TabPage tabPage5;
  1786. private PlcUiControl.PlcUiLight plcUiLight1;
  1787. private Sunny.UI.UIGroupBox uiGroupBox2;
  1788. private PlcUiControl.PlcUiNumberInput txt上下马达速度;
  1789. private Sunny.UI.UILabel uiLabel6;
  1790. private PlcUiControl.PlcUiNumberInput txt上下马达偏移量;
  1791. private Sunny.UI.UILabel uiLabel7;
  1792. private PlcUiControl.PlcUiNumberInput txt上下马达减速时间;
  1793. private Sunny.UI.UILabel uiLabel8;
  1794. private PlcUiControl.PlcUiNumberInput txt上下马达加速时间;
  1795. private Sunny.UI.UILabel uiLabel9;
  1796. private PlcUiControl.PlcUiNumberInput txt上下马达伺服输出转矩限制;
  1797. private Sunny.UI.UILabel uiLabel10;
  1798. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay2;
  1799. private Sunny.UI.UILabel uiLabel11;
  1800. private PlcUiControl.PlcUiNumberInput txt上下马达防撞报警阈值;
  1801. private Sunny.UI.UILabel uiLabel17;
  1802. private PlcUiControl.PlcUiNumberInput txt上下马达防压报警阈值;
  1803. private Sunny.UI.UILabel uiLabel18;
  1804. private PlcUiControl.PlcUiNumberInput txt上下马达最高速;
  1805. private Sunny.UI.UILabel uiLabel19;
  1806. private Sunny.UI.UIGroupBox uiGroupBox4;
  1807. private PlcUiControl.PlcUiButton btn马达上电;
  1808. private PlcUiControl.PlcUiNumberInput txt马达下位置;
  1809. private Sunny.UI.UILabel uiLabel22;
  1810. private PlcUiControl.PlcUiNumberInput txt马达上位置;
  1811. private Sunny.UI.UILabel uiLabel23;
  1812. private PlcUiControl.PlcUiButton btn马达上下;
  1813. private PlcUiControl.PlcUiButton btn马达回原;
  1814. private PlcUiControl.PlcUiButton btn上升;
  1815. private PlcUiControl.PlcUiButton btn下降;
  1816. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay5;
  1817. private Sunny.UI.UILabel uiLabel24;
  1818. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay6;
  1819. private Sunny.UI.UILabel uiLabel25;
  1820. private Sunny.UI.UIGroupBox uiGroupBox5;
  1821. private PlcUiControl.PlcUiLight plcUiLight2;
  1822. private PlcUiControl.PlcUiNumberInput txt叠料偏差;
  1823. private Sunny.UI.UILabel uiLabel12;
  1824. private PlcUiControl.PlcUiNumberInput txt设置力;
  1825. private Sunny.UI.UILabel uiLabel5;
  1826. private PlcUiControl.PlcUiNumberInput txt跨距对比间距数量;
  1827. private Sunny.UI.UILabel uiLabel4;
  1828. private PlcUiControl.PlcUiNumberInput txt影像重拍次数;
  1829. private Sunny.UI.UILabel uiLabel3;
  1830. private PlcUiControl.PlcUiNumberInput txt3D连续良品数量;
  1831. private Sunny.UI.UILabel uiLabel2;
  1832. private PlcUiControl.PlcUiNumberInput txt3D连续不良数量;
  1833. private Sunny.UI.UILabel uiLabel1;
  1834. private Sunny.UI.UIGroupBox uiGroupBox1;
  1835. private PlcUiControl.PlcUiNumberInput txt影像触发时长;
  1836. private Sunny.UI.UILabel uiLabel29;
  1837. private PlcUiControl.PlcUiNumberInput txt转矩限制;
  1838. private Sunny.UI.UILabel uiLabel14;
  1839. private PlcUiControl.PlcUiNumberInput txt下压行程;
  1840. private Sunny.UI.UILabel uiLabel13;
  1841. private PlcUiControl.PlcUiButton btn工站启用;
  1842. private PlcUiControl.PlcUiLight plcUiLight40;
  1843. private PlcUiControl.PlcUiLight plcUiLight41;
  1844. private PlcUiControl.PlcUiLight plcUiLight42;
  1845. private Sunny.UI.UILabel uiLabel15;
  1846. private PlcUiControl.PlcUiNumberInput txt结果读取延时;
  1847. private Sunny.UI.UILabel uiLabel16;
  1848. private PlcUiControl.PlcUiNumberInput txt完成超时时长;
  1849. private Sunny.UI.UIGroupBox uiGroupBox10;
  1850. private PlcUiControl.PlcUiLight plcUiLight34;
  1851. private PlcUiControl.PlcUiLight plcUiLight30;
  1852. private PlcUiControl.PlcUiButton btn影像触发;
  1853. private System.Windows.Forms.PictureBox pictureBox1;
  1854. private PlcUiControl.PlcUiNumberInput txt防压检测终点;
  1855. private Sunny.UI.UILabel uiLabel47;
  1856. private PlcUiControl.PlcUiNumberInput txt防撞检测起点;
  1857. private PlcUiControl.PlcUiNumberInput txt防撞检测终点;
  1858. private Sunny.UI.UILabel uiLabel48;
  1859. private Sunny.UI.UILabel uiLabel49;
  1860. private Sunny.UI.UILabel uiLabel50;
  1861. private PlcUiControl.PlcUiNumberInput txt防压检测起点;
  1862. private PlcUiControl.PlcUiLight plcUiLight47;
  1863. }
  1864. }