Form26_转向站2.Designer.cs 147 KB

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